Searched refs:FCmp (Results 26 - 50 of 57) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp1232 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
1335 case Instruction::FCmp:
2162 "Invalid FCmp Predicate");
2173 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
3095 case Instruction::FCmp:
H A DConstantFold.cpp1221 case Instruction::FCmp:
1907 default: llvm_unreachable("Invalid FCmp Predicate");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp465 case Instruction::FCmp:
H A DCorrelatedValuePropagation.cpp850 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp814 if (Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) {
968 // case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp662 Value *V = CmpInst::Create(fp ? Instruction::FCmp : Instruction::ICmp,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp434 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp466 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3829 if (Op != Instruction::ICmp && Op != Instruction::FCmp)
4281 case Instruction::FCmp: {
4283 bool FCmp = (I.getOpcode() == Instruction::FCmp);
4290 if (FCmp) {
6299 case Instruction::FCmp: {
6882 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp939 llvm::CmpInst::Predicate FCmp; member in struct:CmpInstInfo
958 return Builder.CreateFCmp(InstInfo.FCmp, LHS, RHS,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h1302 assert(isFPPredicate() && "Invalid FCmp predicate value");
1304 "Both operands to FCmp instruction are not of the same type!");
1307 "Invalid operand types for FCmp instruction");
1326 Instruction::FCmp, pred, LHS, RHS, NameStr,
1339 Instruction::FCmp, pred, LHS, RHS, NameStr,
1351 ) : CmpInst(makeCmpResultType(LHS->getType()), Instruction::FCmp, Pred, LHS,
1393 return I->getOpcode() == Instruction::FCmp;
H A DInstrTypes.h968 I->getOpcode() == Instruction::FCmp;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp920 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp1206 case Instruction::FCmp: {
H A DInlineCost.cpp1265 if (I.getOpcode() == Instruction::FCmp)
H A DConstantFolding.cpp1047 case Instruction::FCmp: llvm_unreachable("Invalid for compares");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h1665 CmpOpcode = Instruction::FCmp;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp1288 case Instruction::FCmp:
H A DARMFastISel.cpp2834 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1667 Value *FCmp = B.CreateFCmpOEQ(Base, NegInf, "isinf");
1668 Sqrt = B.CreateSelect(FCmp, PosInf, Sqrt);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp2087 case Instruction::FCmp:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1634 case FCmp: return ISD::SETCC;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3405 if (Opc == Instruction::FCmp) {
5853 if (Opc == Instruction::FCmp) {
6528 if (Opc == Instruction::FCmp) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2510 case Instruction::FCmp:
2697 case Instruction::FCmp: {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp386 dbgs() << "Unhandled type for FCmp EQ instruction: " << *Ty << "\n";
442 dbgs() << "Unhandled type for FCmp NE instruction: " << *Ty << "\n";
462 dbgs() << "Unhandled type for FCmp LE instruction: " << *Ty << "\n";
476 dbgs() << "Unhandled type for FCmp GE instruction: " << *Ty << "\n";
490 dbgs() << "Unhandled type for FCmp LT instruction: " << *Ty << "\n";
504 dbgs() << "Unhandled type for FCmp GT instruction: " << *Ty << "\n";
672 dbgs() << "Don't know how to handle this FCmp predicate!\n-->" << I;
2051 case Instruction::FCmp:

Completed in 353 milliseconds

123