summaryrefslogtreecommitdiffstats
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2014-03-13 10:33:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-03-13 10:33:36 +0000
commitb9d50a9829b795932eac4cc50a99b4ce80b0ecb4 (patch)
treedc8d2af41f15d7701a19ae1b950a6c35fd0ad70f /compiler/driver/compiler_driver.h
parentc1db36ce74d74deb068bf0a9bb683af17baa8b9d (diff)
parente3e0260c23d8999b9433715ac7ee5296ee2fd633 (diff)
downloadart-b9d50a9829b795932eac4cc50a99b4ce80b0ecb4.zip
art-b9d50a9829b795932eac4cc50a99b4ce80b0ecb4.tar.gz
art-b9d50a9829b795932eac4cc50a99b4ce80b0ecb4.tar.bz2
Merge "Move inline method detection to runtime."
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 771e359..71c431d 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)