summaryrefslogtreecommitdiffstats
path: root/runtime/interpreter/interpreter.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2013-08-13 22:10:30 -0700
committerIan Rogers <irogers@google.com>2013-08-13 22:30:39 -0700
commit0f40ac31134d9ae0f059d4c448165599dc8459c1 (patch)
tree2f908f5d7a51d4e7b028b307e5d43a9e794abc10 /runtime/interpreter/interpreter.h
parent97a03e3cc86002b10889562a6b5b164cd2b99e7e (diff)
downloadart-0f40ac31134d9ae0f059d4c448165599dc8459c1.zip
art-0f40ac31134d9ae0f059d4c448165599dc8459c1.tar.gz
art-0f40ac31134d9ae0f059d4c448165599dc8459c1.tar.bz2
Fix races in small mode compiler filters setup
Fixes host tests in small art mode. Change-Id: I2579f872583f425607f91c1e58df68b05b5098bb
Diffstat (limited to 'runtime/interpreter/interpreter.h')
-rw-r--r--runtime/interpreter/interpreter.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/interpreter/interpreter.h b/runtime/interpreter/interpreter.h
index 49e8de0..efe11fc 100644
--- a/runtime/interpreter/interpreter.h
+++ b/runtime/interpreter/interpreter.h
@@ -53,6 +53,12 @@ extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
} // namespace interpreter
+
+extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
+ const DexFile::CodeItem* code_item,
+ ShadowFrame* shadow_frame, JValue* result)
+ SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
+
} // namespace art
#endif // ART_RUNTIME_INTERPRETER_INTERPRETER_H_