Home
last modified time | relevance | path

Searched refs:GetStackSlot (Results 1 – 7 of 7) sorted by relevance

/art/compiler/optimizing/
Dcode_generator.h167 int32_t GetStackSlot(HLocal* local) const;
Dcode_generator_arm64.cc568 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal()); in Move()
588 return Location::StackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
592 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
2561 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
2566 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
Dcode_generator_mips64.cc821 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal()); in Move()
840 return Location::StackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
844 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
2964 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
2969 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
Dcode_generator_x86_64.cc596 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
601 return Location::StackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
730 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal()))); in Move()
736 Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal()))); in Move()
931 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
936 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
Dcode_generator_arm.cc587 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
592 return Location::StackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
835 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal()); in Move()
1142 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
1147 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
Dcode_generator_x86.cc538 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
543 return Location::StackSlot(GetStackSlot(load->GetLocal())); in GetStackLocation()
759 int slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal()); in Move()
968 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
973 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); in VisitStoreLocal()
Dcode_generator.cc274 int32_t CodeGenerator::GetStackSlot(HLocal* local) const { in GetStackSlot() function in art::CodeGenerator