summaryrefslogtreecommitdiffstats
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2014-03-12 15:42:41 +0000
committerVladimir Marko <vmarko@google.com>2014-03-12 17:59:23 +0000
commite3e0260c23d8999b9433715ac7ee5296ee2fd633 (patch)
tree8f13f12f929e36d9366583934ebb4a20b4ce09b7 /compiler/driver/compiler_driver.h
parentca46e2003360b44f4c043f6da87092592bc3d6d6 (diff)
downloadart-e3e0260c23d8999b9433715ac7ee5296ee2fd633.zip
art-e3e0260c23d8999b9433715ac7ee5296ee2fd633.tar.gz
art-e3e0260c23d8999b9433715ac7ee5296ee2fd633.tar.bz2
Move inline method detection to runtime.
The debugger needs this for selective deoptimization. Change-Id: I8100000449b56e619288fb05d41ea6f02b53b334
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index 26210c9..171be7d 100644
--- a/compiler/driver/compiler_driver.h
+++ b/compiler/driver/compiler_driver.h
@@ -287,13 +287,6 @@ class CompilerDriver {
void ProcessedStaticField(bool resolved, bool local);
void ProcessedInvoke(InvokeType invoke_type, int flags);
- // 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,
MemberOffset* field_offset, bool* is_volatile)