summaryrefslogtreecommitdiffstats
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-02-08 07:37:24 +0000
committerIan Rogers <irogers@google.com>2014-02-08 07:37:24 +0000
commit632e458dc267fadfb8120be3ab02701e09e64875 (patch)
treed5af74460066ce7ef7e6f7bf212552ba086867f2 /compiler/driver/compiler_driver.h
parent5dc5727261e87ba8a418e2d0e970c75f67e4ab79 (diff)
downloadart-632e458dc267fadfb8120be3ab02701e09e64875.zip
art-632e458dc267fadfb8120be3ab02701e09e64875.tar.gz
art-632e458dc267fadfb8120be3ab02701e09e64875.tar.bz2
Revert "Check FastInstance() early for special getters and setters."
This reverts commit 5dc5727261e87ba8a418e2d0e970c75f67e4ab79. Change-Id: I3299c8ca5c3ce3f2de994bab61ea16a734f1de33
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index ea43e4f..4307212 100644
--- a/compiler/driver/compiler_driver.h
+++ b/compiler/driver/compiler_driver.h
@@ -38,15 +38,10 @@
namespace art {
-namespace verifier {
-class MethodVerifier;
-} // namespace verifier
-
class AOTCompilationStats;
class ParallelCompilationManager;
class DexCompilationUnit;
class DexFileToMethodInlinerMap;
-class InlineIGetIPutData;
class OatWriter;
class TimingLogger;
class VerificationResults;
@@ -199,13 +194,6 @@ class CompilerDriver {
bool* is_type_initialized, bool* use_direct_type_ptr,
uintptr_t* direct_type_ptr);
- // Can we fast path instance field access in a verified accessor?
- // If yes, computes field's offset and volatility and whether the method is static or not.
- static bool ComputeSpecialAccessorInfo(uint32_t field_idx, bool is_put,
- verifier::MethodVerifier* verifier,
- InlineIGetIPutData* result)
- SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
-
// Can we fast path instance field access? Computes field's offset and volatility.
bool ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit, bool is_put,
int* field_offset, bool* is_volatile)