Home
last modified time | relevance | path

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

/freebsd-14.2/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;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.td390 let AllocationPriority = 0;
409 let AllocationPriority = 0;
595 let AllocationPriority = 2;
621 let AllocationPriority = 0;
630 let AllocationPriority = 0;
688 let AllocationPriority = 0;
769 let AllocationPriority = 0;
787 let AllocationPriority = 0;
792 let AllocationPriority = 0;
827 let AllocationPriority = SGPR_64.AllocationPriority;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp805 int AllocationPriority = R->getValueAsInt("AllocationPriority"); in CodeGenRegisterClass() local
806 if (!isUInt<5>(AllocationPriority)) in CodeGenRegisterClass()
808 this->AllocationPriority = AllocationPriority; in CodeGenRegisterClass()
826 CopyCost(0), Allocatable(true), AllocationPriority(0), in CodeGenRegisterClass()
854 AllocationPriority = Super.AllocationPriority; in inheritProperties()
H A DCodeGenRegisters.h338 uint8_t AllocationPriority; variable
H A DRegisterInfoEmitter.cpp1412 OS << ",\n " << (unsigned)RC.AllocationPriority << ",\n " in runTargetDesc()
1848 OS << "\tAllocationPriority: " << unsigned(RC.AllocationPriority) << '\n'; in debugDump()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h58 const uint8_t AllocationPriority; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp366 assert(isUInt<5>(RC.AllocationPriority) && "allocation priority overflow"); in getPriority()
369 Prio |= RC.AllocationPriority << 25 | GlobalBit << 24; in getPriority()
371 Prio |= GlobalBit << 29 | RC.AllocationPriority << 24; in getPriority()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/
H A DTarget.td305 int AllocationPriority = 0;