diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-12-17 14:57:09 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2016-01-28 15:55:46 +0000 |
commit | a42363f79832a6e14f348514664dc6dc3edf9da2 (patch) | |
tree | bcd43acdf9903a704b566af00b5c740786284b7b /compiler/optimizing/code_generator_mips.cc | |
parent | 9cea9139033a4d04437ebc5542e9466fd67137fe (diff) |
Implement first kind of polymorphic inlining.
Add HClassTableGet to fetch an ArtMethod from the vtable or imt,
and compare it to the only method the profiling saw.
Change-Id: I76afd3689178f10e3be048aa3ac9a97c6f63295d
Diffstat (limited to 'compiler/optimizing/code_generator_mips.cc')
-rw-r--r-- | compiler/optimizing/code_generator_mips.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator_mips.cc b/compiler/optimizing/code_generator_mips.cc index 5bd136a3f0..ebfcfe45f9 100644 --- a/compiler/optimizing/code_generator_mips.cc +++ b/compiler/optimizing/code_generator_mips.cc @@ -5236,6 +5236,14 @@ void InstructionCodeGeneratorMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invo codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke); } +void LocationsBuilderMIPS::VisitClassTableGet(HClassTableGet*) { + UNIMPLEMENTED(FATAL) << "ClassTableGet is unimplemented on mips"; +} + +void InstructionCodeGeneratorMIPS::VisitClassTableGet(HClassTableGet*) { + UNIMPLEMENTED(FATAL) << "ClassTableGet is unimplemented on mips"; +} + #undef __ #undef QUICK_ENTRY_POINT |