diff options
author | Sebastien Hertz <shertz@google.com> | 2013-09-06 16:43:43 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-09-06 16:43:43 +0000 |
commit | 866709c85da0c0d2c76968713e4dc4a35dce27fd (patch) | |
tree | b2fb26bfe6c7ef9ae340d2ebb3d7c0060a8f1582 /compiler/driver/compiler_driver.h | |
parent | 936bf024b26f84f9332d195a581912e95d9cbe4b (diff) | |
parent | 1e54d68ce8e77dfe63340275d11a072c5184c89a (diff) | |
download | android_art-866709c85da0c0d2c76968713e4dc4a35dce27fd.tar.gz android_art-866709c85da0c0d2c76968713e4dc4a35dce27fd.tar.bz2 android_art-866709c85da0c0d2c76968713e4dc4a35dce27fd.zip |
Merge "Disable devirtualization detection in DEX-to-DEX compiler." into dalvik-dev
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 92c9d9fe99..87be9d7415 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -184,7 +184,8 @@ class CompilerDriver { // index. bool ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc, InvokeType& type, MethodReference& target_method, int& vtable_idx, - uintptr_t& direct_code, uintptr_t& direct_method, bool update_stats) + uintptr_t& direct_code, uintptr_t& direct_method, bool update_stats, + bool enable_devirtualization) LOCKS_EXCLUDED(Locks::mutator_lock_); bool IsSafeCast(const MethodReference& mr, uint32_t dex_pc); |