Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.td396 let AllocationPriority = 0;
415 let AllocationPriority = 0;
599 let AllocationPriority = 0;
607 let AllocationPriority = 0;
617 let AllocationPriority = 0;
626 let AllocationPriority = 0;
684 let AllocationPriority = 0;
765 let AllocationPriority = 0;
777 let AllocationPriority = 0;
783 let AllocationPriority = 0;
[all …]
/openbsd-src/gnu/llvm/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.h334 uint8_t AllocationPriority; variable
H A DRegisterInfoEmitter.cpp1434 OS << ",\n " << (unsigned)RC.AllocationPriority << ",\n " in runTargetDesc()
1866 OS << "\tAllocationPriority: " << unsigned(RC.AllocationPriority) << '\n'; in debugDump()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h58 const uint8_t AllocationPriority; variable
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp361 assert(isUInt<5>(RC.AllocationPriority) && "allocation priority overflow"); in getPriority()
364 Prio |= RC.AllocationPriority << 25 | GlobalBit << 24; in getPriority()
366 Prio |= GlobalBit << 29 | RC.AllocationPriority << 24; in getPriority()
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/
H A DTarget.td286 int AllocationPriority = 0;