diff options
author | Matthew Gharrity <gharrma@google.com> | 2016-06-14 11:31:04 -0700 |
---|---|---|
committer | Matthew Gharrity <gharrma@google.com> | 2016-06-15 09:08:35 -0700 |
commit | 50706437d8216e41f0fea1e413cda7891324d397 (patch) | |
tree | 23c7c5d1198b8cdde6261198626cfe443eab59ba /compiler/optimizing/instruction_builder.cc | |
parent | badee9820fcf5dca5f8c46c3215ae1779ee7736e (diff) |
Refactor GetIMTIndex
This allows us to more easily maintain and experiment with
interface method table indexing and hashing.
Change-Id: I719920fae7490dcedcda7c1c36db225c2b8b16df
Diffstat (limited to 'compiler/optimizing/instruction_builder.cc')
-rw-r--r-- | compiler/optimizing/instruction_builder.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/instruction_builder.cc b/compiler/optimizing/instruction_builder.cc index f2286e46e6..1c67bcc878 100644 --- a/compiler/optimizing/instruction_builder.cc +++ b/compiler/optimizing/instruction_builder.cc @@ -16,6 +16,7 @@ #include "instruction_builder.h" +#include "art_method-inl.h" #include "bytecode_utils.h" #include "class_linker.h" #include "driver/compiler_options.h" @@ -890,7 +891,7 @@ bool HInstructionBuilder::BuildInvoke(const Instruction& instruction, return_type, dex_pc, method_idx, - resolved_method->GetDexMethodIndex()); + resolved_method->GetImtIndex()); } return HandleInvoke(invoke, |