Lines Matching refs:reg_number
503 HInstruction* HInstructionBuilder::LoadLocal(uint32_t reg_number, DataType::Type type) const { in LoadLocal() argument
504 HInstruction* value = (*current_locals_)[reg_number]; in LoadLocal()
520 void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) { in UpdateLocal() argument
533 if (reg_number != 0) { in UpdateLocal()
534 HInstruction* local_low = (*current_locals_)[reg_number - 1]; in UpdateLocal()
538 DCHECK((*current_locals_)[reg_number] == nullptr); in UpdateLocal()
539 (*current_locals_)[reg_number - 1] = nullptr; in UpdateLocal()
543 (*current_locals_)[reg_number] = stored_value; in UpdateLocal()
546 (*current_locals_)[reg_number + 1] = nullptr; in UpdateLocal()
2221 uint32_t reg_number = instruction.VRegB(); in ProcessDexInstruction() local
2222 HInstruction* value = (*current_locals_)[reg_number]; in ProcessDexInstruction()
2229 value = LoadLocal(reg_number, DataType::Type::kReference); in ProcessDexInstruction()