Home
last modified time | relevance | path

Searched refs:MaxReg (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNNSAReassign.cpp154 unsigned MaxReg = MaxNumVGPRs - NumRegs + AMDGPU::VGPR0; in scavengeRegs() local
156 for (unsigned Reg = AMDGPU::VGPR0; Reg <= MaxReg; ++Reg) { in scavengeRegs()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp932 int MaxReg = 0x1F; in opcode_save_any_reg() local
934 --MaxReg; in opcode_save_any_reg()
936 --MaxReg; in opcode_save_any_reg()
937 if ((OC[Offset + 1] & 0x80) == 0x80 || RegKind == 3 || Reg > MaxReg) { in opcode_save_any_reg()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp360 MCRegister MaxReg; in getLibCallID() local
365 MaxReg = std::max(MaxReg.id(), CS.getReg().id()); in getLibCallID()
367 if (!MaxReg) in getLibCallID()
370 switch (MaxReg.id()) { in getLibCallID()
H A DRISCVISelLowering.cpp21843 Register MaxReg = MI.getOperand(2).getReg(); in emitFROUND() local
21855 BuildMI(MBB, DL, TII.get(CmpOpc), CmpReg).addReg(FabsReg).addReg(MaxReg); in emitFROUND()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1178 static const char *getSpillFunctionFor(Register MaxReg, SpillKind SpillType, in getSpillFunctionFor() argument
1230 switch (MaxReg) { in getSpillFunctionFor()
1361 Register MaxReg = getMaxCalleeSavedReg(CSI, HRI); in insertCSRSpillsInBlock() local
1363 const char *SpillFun = getSpillFunctionFor(MaxReg, SK_ToMem, in insertCSRSpillsInBlock()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1823 unsigned MaxReg = PermitsD32(Inst, Decoder) ? 32 : 16; in DecodeDPRRegListOperand() local
1824 if (regs == 0 || (Vd + regs) > MaxReg) { in DecodeDPRRegListOperand()
1825 regs = Vd + regs > MaxReg ? MaxReg - Vd : regs; in DecodeDPRRegListOperand()
1827 regs = std::min(MaxReg, regs); in DecodeDPRRegListOperand()