Searched refs:IsImm (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/ |
H A D | SparcAsmParser.cpp | 654 bool IsImm = Inst.getOperand(1).isImm(); in expandSET() local 655 int64_t RawImmValue = IsImm ? MCValOp.getImm() : 0; in expandSET() 670 IsImm && ((is64Bit() ? 0 : -4096) <= ImmValue && ImmValue < 4096); in expandSET() 672 if (IsImm) in expandSET() 703 if (!IsImm || IsEffectivelyImm13 || (ImmValue & 0x3ff)) { in expandSET() 729 bool IsImm = MCValOp.isImm(); in expandSETX() local 730 int64_t ImmValue = IsImm ? MCValOp.getImm() : 0; in expandSETX() 732 const MCExpr *ValExpr = IsImm ? MCConstantExpr::create(ImmValue, getContext()) in expandSETX() 736 if (IsImm && isInt<13>(ImmValue)) { in expandSETX() 761 if (IsImm && isUInt<32>(ImmValue)) in expandSETX()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcInstrFormats.td | 316 let Inst{13} = 0; // IsImm 331 let Inst{13} = 1; // IsImm
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelDAGToDAG.cpp | 2243 SmallVector<bool, 4> IsImm(NumElts, false); in pickOpcodeForVectorStParam() local 2245 IsImm[i] = (isa<ConstantSDNode>(Ops[i]) || isa<ConstantFPSDNode>(Ops[i])); in pickOpcodeForVectorStParam() 2246 if (IsImm[i]) { in pickOpcodeForVectorStParam() 2264 return getOpcodeForVectorStParam(NumElts, I8, IsImm); in pickOpcodeForVectorStParam() 2266 return getOpcodeForVectorStParam(NumElts, I16, IsImm); in pickOpcodeForVectorStParam() 2268 return getOpcodeForVectorStParam(NumElts, I32, IsImm); in pickOpcodeForVectorStParam() 2271 return getOpcodeForVectorStParamV2(I64, IsImm); in pickOpcodeForVectorStParam() 2273 return getOpcodeForVectorStParam(NumElts, F32, IsImm); in pickOpcodeForVectorStParam() 2276 return getOpcodeForVectorStParamV2(F64, IsImm); in pickOpcodeForVectorStParam()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstCombineIntrinsic.cpp | 125 bool IsImm = false; in simplifyX86immShift() local 139 IsImm = true; in simplifyX86immShift() 162 IsImm = true; in simplifyX86immShift() 185 IsImm = true; in simplifyX86immShift() 213 if (IsImm) { in simplifyX86immShift()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MCCodeEmitter.cpp | 203 void set4V(const MCInst &MI, unsigned OpNum, bool IsImm = false) { in set4V() argument 205 if (IsImm) in set4V()
|