Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCRegisterInfoMMA.td50 // The AllocationPriority is in the range [0, 63]. Assigned the ACC registers
56 let AllocationPriority = 63;
73 // The AllocationPriority for the UACC registers is still high and must be at
75 // global ranges. The value must be less than the AllocationPriority of the
77 let AllocationPriority = 36;
95 // Give the VSRp registers a non-zero AllocationPriority. The value is less
97 // ranges and the value should be less than the AllocationPriority - 32 for
100 let AllocationPriority = 2;
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.td352 let AllocationPriority = 0;
371 let AllocationPriority = 0;
531 let AllocationPriority = 0;
538 let AllocationPriority = 0;
547 let AllocationPriority = 0;
591 let AllocationPriority = 0;
656 let AllocationPriority = 0;
666 let AllocationPriority = 0;
671 let AllocationPriority = 0;
677 let AllocationPriority = 0;
[all …]
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp805 int AllocationPriority = R->getValueAsInt("AllocationPriority"); in CodeGenRegisterClass() local
806 if (AllocationPriority < 0 || AllocationPriority > 63) in CodeGenRegisterClass()
808 this->AllocationPriority = AllocationPriority; in CodeGenRegisterClass()
824 CopyCost(0), Allocatable(true), AllocationPriority(0), TSFlags(0) { in CodeGenRegisterClass()
851 AllocationPriority = Super.AllocationPriority; in inheritProperties()
H A DCodeGenRegisters.h333 uint8_t AllocationPriority; variable
H A DRegisterInfoEmitter.cpp1427 OS << ",\n " << (unsigned)RC.AllocationPriority << ",\n " in runTargetDesc()
1745 OS << "\tAllocationPriority: " << unsigned(RC.AllocationPriority) << '\n'; in debugDump()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h60 const uint8_t AllocationPriority; variable
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp333 Prio |= RC.AllocationPriority << 25 | GlobalBit << 24; in enqueue()
335 Prio |= GlobalBit << 29 | RC.AllocationPriority << 24; in enqueue()
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTarget.td284 int AllocationPriority = 0;