Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_builder.cc386 HInstruction* HInstructionBuilder::LoadLocal(uint32_t reg_number, Primitive::Type type) const { in LoadLocal() argument
387 HInstruction* value = (*current_locals_)[reg_number]; in LoadLocal()
403 void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) { in UpdateLocal() argument
416 if (reg_number != 0) { in UpdateLocal()
417 HInstruction* local_low = (*current_locals_)[reg_number - 1]; in UpdateLocal()
421 DCHECK((*current_locals_)[reg_number] == nullptr); in UpdateLocal()
422 (*current_locals_)[reg_number - 1] = nullptr; in UpdateLocal()
426 (*current_locals_)[reg_number] = stored_value; in UpdateLocal()
429 (*current_locals_)[reg_number + 1] = nullptr; in UpdateLocal()
1860 uint32_t reg_number = instruction.VRegB(); in ProcessDexInstruction() local
[all …]
Dnodes.h2544 uint32_t reg_number,
2554 reg_number_(reg_number) { in HVariableInputSizeInstruction()