commit | 1cf95287364948689f6a1a320567acd7728e94a3 | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Fri Dec 12 19:22:03 2014 +0000 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Thu Jan 29 10:52:14 2015 +0000 |
tree | 70a8b60c768894d635cf63b0a480baa5073d2bed | |
parent | 4a50662eeaa0b1a26be66e7584fb765151dabc59 [diff] [blame] |
Small optimization for recursive calls: avoid dex cache. Change-Id: I044757a2f06e535cdc1480c4fc8182b89635baf6
diff --git a/compiler/optimizing/code_generator_x86_64.h b/compiler/optimizing/code_generator_x86_64.h index c30f4c2..dbdbf86 100644 --- a/compiler/optimizing/code_generator_x86_64.h +++ b/compiler/optimizing/code_generator_x86_64.h
@@ -248,6 +248,7 @@ private: // Labels for each block that will be compiled. GrowableArray<Label> block_labels_; + Label frame_entry_label_; LocationsBuilderX86_64 location_builder_; InstructionCodeGeneratorX86_64 instruction_visitor_; ParallelMoveResolverX86_64 move_resolver_;