Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_mips64.cc39 static constexpr GpuRegister TMP = T8; variable
456 ScratchRegisterScope ensure_scratch(this, TMP, V0, codegen_->GetNumberOfCoreRegisters()); in Exchange()
464 TMP, in Exchange()
471 __ StoreToOffset(store_type, TMP, SP, index1 + stack_offset); in Exchange()
699 __ LoadConst32(TMP, GetInt32ValueOf(src_cst->AsConstant())); in MoveLocation()
701 __ LoadConst64(TMP, GetInt64ValueOf(src_cst->AsConstant())); in MoveLocation()
703 __ StoreToOffset(store_type, TMP, SP, destination.GetStackIndex()); in MoveLocation()
709 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex()); in MoveLocation()
710 __ StoreToOffset(kStoreWord, TMP, SP, destination.GetStackIndex()); in MoveLocation()
712 __ LoadFromOffset(kLoadDoubleword, TMP, SP, source.GetStackIndex()); in MoveLocation()
[all …]
Dcode_generator_x86_64.cc39 static constexpr Register TMP = R11; variable
489 blocked_core_registers_[TMP] = true; in SetupBlockedRegisters()
659 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); in Move()
660 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); in Move()
679 Load64BitValue(CpuRegister(TMP), value); in Move()
680 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); in Move()
683 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); in Move()
684 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); in Move()
714 Load64BitValue(CpuRegister(TMP), value); in Move()
715 __ movq(Address(CpuRegister(RSP), location.GetStackIndex()), CpuRegister(TMP)); in Move()
[all …]