Home
last modified time | relevance | path

Searched refs:SImm (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp414 int32_t SImm = static_cast<int32_t>(Imm); in printImmediateInt16() local
415 if (isInlinableIntLiteral(SImm)) { in printImmediateInt16()
416 O << SImm; in printImmediateInt16()
481 int16_t SImm = static_cast<int16_t>(Imm); in printImmediateBF16() local
482 if (isInlinableIntLiteral(SImm)) { in printImmediateBF16()
483 O << SImm; in printImmediateBF16()
496 int16_t SImm = static_cast<int16_t>(Imm); in printImmediateF16() local
497 if (isInlinableIntLiteral(SImm)) { in printImmediateF16()
498 O << SImm; in printImmediateF16()
513 int32_t SImm = static_cast<int32_t>(Imm); in printImmediateV216() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp596 int32_t SImm = MO1.getImm(); in EncodeAddrModeOpValues() local
600 if (SImm == INT32_MIN) { in EncodeAddrModeOpValues()
601 SImm = 0; in EncodeAddrModeOpValues()
606 if (SImm < 0) { in EncodeAddrModeOpValues()
607 SImm = -SImm; in EncodeAddrModeOpValues()
611 Imm = SImm; in EncodeAddrModeOpValues()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZOperands.td402 auto SImm = N->getAPIntValue().trySExtValue();
403 return SImm.has_value() && isInt<32>(-*SImm);
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstrInfo.td576 let DiagnosticType = "SImm" # Bits # "_" # Offset;
585 let DiagnosticType = "SImm" # Bits # "_Lsl" # Shift;
609 let Name = "SImm" # Bits;
613 let DiagnosticType = "SImm" # Bits;
688 // Similar to the relaxed classes which take an SImm and render it as
689 // an UImm, this takes a UImm and renders it as an SImm.
1069 let ParserMatchClass = !cast<AsmOperandClass>("SImm" # I # "AsmOperandClass");
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1843 if (auto SImm = Int.trySExtValue(); Int.isSigned() && SImm.has_value()) in parseImmediateOperand() local
1844 Dest = MachineOperand::CreateImm(*SImm); in parseImmediateOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp4161 int16_t SImm; in SelectCC() local
4162 if (isIntS16Immediate(RHS, SImm)) in SelectCC()
4164 getI32Imm((int)SImm & 0xFFFF, in SelectCC()
4208 int16_t SImm; in SelectCC() local
4209 if (isIntS16Immediate(RHS, SImm)) in SelectCC()
4211 getI64Imm(SImm & 0xFFFF, dl)), in SelectCC()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td318 let Name = "SImm" # Width # "s" # Scale;
319 let DiagnosticType = "InvalidMemoryIndexed" # Scale # "SImm" # Width;
354 let Name = "SImm" # width;