Searched refs:IsFP (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 973 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedUnaryOpcode() local 975 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedUnaryOpcode() 982 return IsFP ? Instruction::FNeg : -1; in getDecodedUnaryOpcode() 987 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local 989 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode() 1002 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode() 1006 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode() 1010 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode() 1016 return IsFP ? -1 : Instruction::And; in getDecodedBinaryOpcode() 1018 return IsFP ? -1 : Instruction::Or; in getDecodedBinaryOpcode() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsSEISelLowering.h | 111 bool IsFP) const;
|
| H A D | MipsSEISelLowering.cpp | 3287 bool IsFP) const { in emitINSERT_DF_VIDX() 3334 if (IsFP) { in emitINSERT_DF_VIDX() 3360 if (IsFP) { in emitINSERT_DF_VIDX()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | ISDOpcodes.h | 943 NodeType getExtForLoadExtType(bool IsFP, LoadExtType);
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 2390 static unsigned getVectorComparison(ISD::CondCode CC, bool IsFP) { in getVectorComparison() argument 2394 return IsFP ? SystemZISD::VFCMPE : SystemZISD::VICMPE; in getVectorComparison() 2402 return IsFP ? SystemZISD::VFCMPH : SystemZISD::VICMPH; in getVectorComparison() 2416 static unsigned getVectorComparisonOrInvert(ISD::CondCode CC, bool IsFP, in getVectorComparisonOrInvert() argument 2418 if (unsigned Opcode = getVectorComparison(CC, IsFP)) { in getVectorComparisonOrInvert() 2423 CC = ISD::getSetCCInverse(CC, !IsFP); in getVectorComparisonOrInvert() 2424 if (unsigned Opcode = getVectorComparison(CC, IsFP)) { in getVectorComparisonOrInvert() 2470 bool IsFP = CmpOp0.getValueType().isFloatingPoint(); in lowerVectorSETCC() local 2479 assert(IsFP && "Unexpected integer comparison"); in lowerVectorSETCC() 2491 assert(IsFP && "Unexpected integer comparison"); in lowerVectorSETCC() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/Disassembler/ |
| H A D | AArch64Disassembler.cpp | 1276 bool IsFP = fieldFromInstruction(insn, 26, 1); in DecodeSignedLdStInstruction() local 1279 if (IsLoad && IsIndexed && !IsFP && Rn != 31 && Rt == Rn) in DecodeSignedLdStInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 335 ISD::NodeType ISD::getExtForLoadExtType(bool IsFP, ISD::LoadExtType ExtType) { in getExtForLoadExtType() argument 338 return IsFP ? ISD::FP_EXTEND : ISD::ANY_EXTEND; in getExtForLoadExtType()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 18519 bool IsFP = Op.getSimpleValueType().isFloatingPoint(); in lowerAddSubToHorizontalOp() local 18520 if (IsFP && !Subtarget.hasSSE3()) in lowerAddSubToHorizontalOp() 18522 if (!IsFP && !Subtarget.hasSSSE3()) in lowerAddSubToHorizontalOp() 19766 bool IsFP = Op1.getSimpleValueType().isFloatingPoint(); in emitFlagsForSetcc() local 19767 X86::CondCode CondCode = TranslateX86CC(CC, dl, IsFP, Op0, Op1, DAG); in emitFlagsForSetcc()
|