summaryrefslogtreecommitdiff
path: root/runtime/entrypoints/entrypoint_utils.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2014-04-28 09:09:06 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-04-28 09:09:07 +0000
commit990d46f3333dce06a640ced697ee069330a73d7c (patch)
tree7caf896723665029823c73e2bec87e6db97ec428 /runtime/entrypoints/entrypoint_utils.h
parentbf25f7e3a007ecfe4b2bcfa0a9abcb784ff54e26 (diff)
parent8a630577ed2d9e9571c3434c505e5de223b23c07 (diff)
Merge "Move mapping table and vmap table offsets to OatMethodHeader."
Diffstat (limited to 'runtime/entrypoints/entrypoint_utils.h')
-rw-r--r--runtime/entrypoints/entrypoint_utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/entrypoints/entrypoint_utils.h b/runtime/entrypoints/entrypoint_utils.h
index 8b48b3647f..05912bfed8 100644
--- a/runtime/entrypoints/entrypoint_utils.h
+++ b/runtime/entrypoints/entrypoint_utils.h
@@ -761,6 +761,10 @@ static inline const void* GetQuickGenericJniTrampoline(ClassLinker* class_linker
return class_linker->GetQuickGenericJniTrampoline();
}
+static inline const void* GetQuickToInterpreterBridgeTrampoline(ClassLinker* class_linker) {
+ return class_linker->GetQuickToInterpreterBridgeTrampoline();
+}
+
extern "C" void art_portable_proxy_invoke_handler();
static inline const void* GetPortableProxyInvokeHandler() {
return reinterpret_cast<void*>(art_portable_proxy_invoke_handler);