Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.td356 let AllocationPriority = 0;
375 let AllocationPriority = 0;
578 let AllocationPriority = 2;
604 let AllocationPriority = 0;
613 let AllocationPriority = 0;
671 let AllocationPriority = 0;
752 let AllocationPriority = 0;
770 let AllocationPriority = 0;
775 let AllocationPriority = 0;
780 let AllocationPriority = 0;
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenRegisters.cpp749 int AllocationPriority = R->getValueAsInt("AllocationPriority"); in CodeGenRegisterClass() local
750 if (!isUInt<5>(AllocationPriority)) in CodeGenRegisterClass()
752 this->AllocationPriority = AllocationPriority; in CodeGenRegisterClass()
768 RSI(Props.RSI), CopyCost(0), Allocatable(true), AllocationPriority(0), in CodeGenRegisterClass()
801 AllocationPriority = Super.AllocationPriority; in inheritProperties()
H A DCodeGenRegisters.h363 uint8_t AllocationPriority; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h57 const uint8_t AllocationPriority; variable
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1445 OS << ",\n " << (unsigned)RC.AllocationPriority << ",\n " in runTargetDesc()
1890 OS << "\tAllocationPriority: " << unsigned(RC.AllocationPriority) << '\n'; in debugDump()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp492 assert(isUInt<5>(RC.AllocationPriority) && "allocation priority overflow"); in getPriority()
495 Prio |= RC.AllocationPriority << 25 | GlobalBit << 24; in getPriority()
497 Prio |= GlobalBit << 29 | RC.AllocationPriority << 24; in getPriority()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVRegisterInfo.td750 let AllocationPriority = !if(!gt(Vlmul, 1), Vlmul, 0);
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTarget.td327 int AllocationPriority = 0;