diff options
author | 2017-08-23 12:12:04 +0000 | |
---|---|---|
committer | 2017-08-23 12:12:04 +0000 | |
commit | 2ee17e69110a9ef98ea8c94219c7da23b918ef3f (patch) | |
tree | 3b7401a6cc2f1e16ef238eccf69573537398de0a /runtime/interpreter/interpreter.h | |
parent | cd63fc8a656a7548e97aac755dc9820d5bc11240 (diff) | |
parent | 2b87ae0073256e909e15f464300912552e58ee48 (diff) |
Merge changes I6407c9b4,I49d9da67
* changes:
Revert "Allow deoptimization when returning from a runtime method."
Revert "Fix some issues for deoptimizing runtime methods."
Diffstat (limited to 'runtime/interpreter/interpreter.h')
-rw-r--r-- | runtime/interpreter/interpreter.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/runtime/interpreter/interpreter.h b/runtime/interpreter/interpreter.h index df8568edcd..65cfade09a 100644 --- a/runtime/interpreter/interpreter.h +++ b/runtime/interpreter/interpreter.h @@ -30,7 +30,6 @@ class ArtMethod; union JValue; class ShadowFrame; class Thread; -enum class DeoptimizationMethodType; namespace interpreter { @@ -45,11 +44,8 @@ extern void EnterInterpreterFromInvoke(Thread* self, ArtMethod* method, REQUIRES_SHARED(Locks::mutator_lock_); // 'from_code' denotes whether the deoptimization was explicitly triggered by compiled code. -extern void EnterInterpreterFromDeoptimize(Thread* self, - ShadowFrame* shadow_frame, - JValue* ret_val, - bool from_code, - DeoptimizationMethodType method_type) +extern void EnterInterpreterFromDeoptimize(Thread* self, ShadowFrame* shadow_frame, bool from_code, + JValue* ret_val) REQUIRES_SHARED(Locks::mutator_lock_); extern JValue EnterInterpreterFromEntryPoint(Thread* self, const DexFile::CodeItem* code_item, |