Home
last modified time | relevance | path

Searched refs:reg_number (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dinstruction_builder.cc569 HInstruction* HInstructionBuilder::LoadLocal(uint32_t reg_number, DataType::Type type) const { in LoadLocal() argument
570 HInstruction* value = (*current_locals_)[reg_number]; in LoadLocal()
586 void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) { in UpdateLocal() argument
599 if (reg_number != 0) { in UpdateLocal()
600 HInstruction* local_low = (*current_locals_)[reg_number - 1]; in UpdateLocal()
604 DCHECK((*current_locals_)[reg_number] == nullptr); in UpdateLocal()
605 (*current_locals_)[reg_number - 1] = nullptr; in UpdateLocal()
609 (*current_locals_)[reg_number] = stored_value; in UpdateLocal()
612 (*current_locals_)[reg_number + 1] = nullptr; in UpdateLocal()
2863 uint32_t reg_number = instruction.VRegB(); in ProcessDexInstruction() local
[all …]
Dnodes.h3113 uint32_t reg_number,
3125 reg_number_(reg_number) {