HomeSort by relevance Sort by last modified time
    Searched refs:HLoadLocal (Results 1 - 12 of 12) sorted by null

  /art/compiler/optimizing/
ssa_builder.h 51 void VisitLoadLocal(HLoadLocal* load);
code_generator.h 164 virtual Location GetStackLocation(HLoadLocal* load) const = 0;
code_generator_arm.h 157 virtual Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
code_generator_x86.h 159 virtual Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
code_generator_x86_64.h 155 virtual Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
ssa_builder.cc 123 // - HLoadLocal: replace them with the current value of the local.
132 void SsaBuilder::VisitLoadLocal(HLoadLocal* load) {
nodes.h 1057 class HLoadLocal : public HExpression<1> {
1059 explicit HLoadLocal(HLocal* local, Primitive::Type type) : HExpression(type) {
1068 DISALLOW_COPY_AND_ASSIGN(HLoadLocal);
    [all...]
code_generator.cc 185 HLoadLocal* load = input->AsLoadLocal();
code_generator_x86_64.cc 248 Location CodeGeneratorX86_64::GetStackLocation(HLoadLocal* load) const {
437 void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) {
441 void InstructionCodeGeneratorX86_64::VisitLoadLocal(HLoadLocal* load) {
    [all...]
code_generator_arm.cc 301 Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
689 void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) {
693 void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load) {
    [all...]
code_generator_x86.cc 276 Location CodeGeneratorX86::GetStackLocation(HLoadLocal* load) const {
558 void LocationsBuilderX86::VisitLoadLocal(HLoadLocal* local) {
562 void InstructionCodeGeneratorX86::VisitLoadLocal(HLoadLocal* load) {
    [all...]
builder.cc 806 current_block_->AddInstruction(new (arena_) HLoadLocal(local, type));

Completed in 135 milliseconds