Home
last modified time | relevance | path

Searched refs:AllocationPriority (Results 1 – 8 of 8) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCRegisterInfoMMA.td50 // The AllocationPriority is in the range [0, 31]. Assigned the ACC registers
55 let AllocationPriority = 31;
76 // The AllocationPriority for the UACC registers is still high and must be at
78 // global ranges. The value must be less than the AllocationPriority of the
80 let AllocationPriority = 4;
99 // Give the VSRp registers a non-zero AllocationPriority. The value is less
101 // ranges and the value should be less than the AllocationPriority - 32 for
104 let AllocationPriority = 2;
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.td390 let AllocationPriority = 0;
409 let AllocationPriority = 0;
598 let AllocationPriority = 2;
624 let AllocationPriority = 0;
633 let AllocationPriority = 0;
691 let AllocationPriority = 0;
772 let AllocationPriority = 0;
790 let AllocationPriority = 0;
795 let AllocationPriority = 0;
800 let AllocationPriority = 0;
[all …]
/src/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenRegisters.cpp825 int AllocationPriority = R->getValueAsInt("AllocationPriority"); in CodeGenRegisterClass() local
826 if (!isUInt<5>(AllocationPriority)) in CodeGenRegisterClass()
828 this->AllocationPriority = AllocationPriority; in CodeGenRegisterClass()
846 CopyCost(0), Allocatable(true), AllocationPriority(0), in CodeGenRegisterClass()
874 AllocationPriority = Super.AllocationPriority; in inheritProperties()
H A DCodeGenRegisters.h355 uint8_t AllocationPriority; variable
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h58 const uint8_t AllocationPriority; variable
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp364 assert(isUInt<5>(RC.AllocationPriority) && "allocation priority overflow"); in getPriority()
367 Prio |= RC.AllocationPriority << 25 | GlobalBit << 24; in getPriority()
369 Prio |= GlobalBit << 29 | RC.AllocationPriority << 24; in getPriority()
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1410 OS << ",\n " << (unsigned)RC.AllocationPriority << ",\n " in runTargetDesc()
1844 OS << "\tAllocationPriority: " << unsigned(RC.AllocationPriority) << '\n'; in debugDump()
/src/contrib/llvm-project/llvm/include/llvm/Target/
H A DTarget.td322 int AllocationPriority = 0;