diff options
author | Mingyao Yang <mingyao@google.com> | 2014-05-15 17:02:16 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-07-11 17:17:10 -0700 |
commit | 98d1cc8033251c93786e2fa8c59a2e555a9493be (patch) | |
tree | f0a76b8fff060ee484af09028da65a8339d57057 /runtime/quick_exception_handler.cc | |
parent | aebf3cda094f34cf846d19a7724bdc8005267c95 (diff) | |
download | android_art-98d1cc8033251c93786e2fa8c59a2e555a9493be.tar.gz android_art-98d1cc8033251c93786e2fa8c59a2e555a9493be.tar.bz2 android_art-98d1cc8033251c93786e2fa8c59a2e555a9493be.zip |
Improve performance of invokevirtual/invokeinterface with embedded imt/vtable
Add an embedded version of imt/vtable into class object. Both tables start at
fixed offset within class object so method/entry point can be loaded directly
from class object for invokeinterface/invokevirtual.
Bug: 8142917
Change-Id: I4240d58cfbe9250107c95c0708c036854c455968
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r-- | runtime/quick_exception_handler.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 103492334c..49f6fe015e 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -20,6 +20,9 @@ #include "entrypoints/entrypoint_utils.h" #include "handle_scope-inl.h" #include "mirror/art_method-inl.h" +#include "mirror/class-inl.h" +#include "mirror/class_loader.h" +#include "mirror/throwable.h" #include "verifier/method_verifier.h" namespace art { |