Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_builder.cc546 HInstruction* HInstructionBuilder::LoadLocal(uint32_t reg_number, DataType::Type type) const { in LoadLocal() argument
547 HInstruction* value = (*current_locals_)[reg_number]; in LoadLocal()
563 void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) { in UpdateLocal() argument
576 if (reg_number != 0) { in UpdateLocal()
577 HInstruction* local_low = (*current_locals_)[reg_number - 1]; in UpdateLocal()
581 DCHECK((*current_locals_)[reg_number] == nullptr); in UpdateLocal()
582 (*current_locals_)[reg_number - 1] = nullptr; in UpdateLocal()
586 (*current_locals_)[reg_number] = stored_value; in UpdateLocal()
589 (*current_locals_)[reg_number + 1] = nullptr; in UpdateLocal()
2685 uint32_t reg_number = instruction.VRegB(); in ProcessDexInstruction() local
[all …]
Dnodes.h3030 uint32_t reg_number,
3042 reg_number_(reg_number) {