|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/IR/InstrTypes.h 750 FIRST_FCMP_PREDICATE = FCMP_FALSE,
include/llvm/IR/Instructions.h 1365 getPredicate() == FCMP_FALSE ||
lib/Analysis/InstructionSimplify.cpp 3493 if (Pred == FCmpInst::FCMP_FALSE)
lib/AsmParser/LLParser.cpp 5865 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
lib/CodeGen/Analysis.cpp 203 case FCmpInst::FCMP_FALSE: return ISD::SETFALSE;
lib/CodeGen/GlobalISel/IRTranslator.cpp 347 else if (Pred == CmpInst::FCMP_FALSE)
lib/CodeGen/MIRParser/MIParser.cpp 2247 .Case("false", CmpInst::FCMP_FALSE)
lib/CodeGen/SelectionDAG/FastISel.cpp 2445 case CmpInst::FCMP_FALSE: Predicate = CmpInst::FCMP_FALSE; break;
2445 case CmpInst::FCMP_FALSE: Predicate = CmpInst::FCMP_FALSE; break;
2447 case CmpInst::FCMP_OGT: Predicate = CmpInst::FCMP_FALSE; break;
2449 case CmpInst::FCMP_OLT: Predicate = CmpInst::FCMP_FALSE; break;
2451 case CmpInst::FCMP_ONE: Predicate = CmpInst::FCMP_FALSE; break;
2463 case CmpInst::ICMP_NE: Predicate = CmpInst::FCMP_FALSE; break;
2464 case CmpInst::ICMP_UGT: Predicate = CmpInst::FCMP_FALSE; break;
2466 case CmpInst::ICMP_ULT: Predicate = CmpInst::FCMP_FALSE; break;
2468 case CmpInst::ICMP_SGT: Predicate = CmpInst::FCMP_FALSE; break;
2470 case CmpInst::ICMP_SLT: Predicate = CmpInst::FCMP_FALSE; break;
lib/ExecutionEngine/Interpreter/Execution.cpp 675 case FCmpInst::FCMP_FALSE: R = executeFCMP_BOOL(Src1, Src2, Ty, false);
726 case FCmpInst::FCMP_FALSE: return executeFCMP_BOOL(Src1, Src2, Ty, false);
lib/FuzzMutate/Operations.cpp 52 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_FALSE));
lib/IR/ConstantFold.cpp 1795 if (pred == FCmpInst::FCMP_FALSE)
1883 case FCmpInst::FCMP_FALSE: return Constant::getNullValue(ResultTy);
1953 case FCmpInst::FCMP_FALSE:
lib/IR/Constants.cpp 1974 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
lib/IR/Instructions.cpp 3566 case FCMP_TRUE: return FCMP_FALSE;
3567 case FCMP_FALSE: return FCMP_TRUE;
3574 case FCmpInst::FCMP_FALSE: return "false";
3666 case FCMP_FALSE: case FCMP_TRUE:
3758 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
lib/Target/AArch64/AArch64FastISel.cpp 2438 case CmpInst::FCMP_FALSE:
2581 case CmpInst::FCMP_FALSE:
2764 case CmpInst::FCMP_FALSE:
lib/Target/ARM/ARMInstructionSelector.cpp 536 if (Cond == CmpInst::FCMP_TRUE || Cond == CmpInst::FCMP_FALSE) {
lib/Target/ARM/ARMLegalizerInfo.cpp 409 Predicate == CmpInst::FCMP_FALSE) &&
lib/Target/PowerPC/PPCFastISel.cpp 208 case CmpInst::FCMP_FALSE:
lib/Target/X86/X86FastISel.cpp 1437 case CmpInst::FCMP_FALSE: {
1643 case CmpInst::FCMP_FALSE: fastEmitBranch(FalseMBB, DbgLoc); return true;
2370 case CmpInst::FCMP_FALSE: Opnd = I->getOperand(2); break;
lib/Transforms/InstCombine/InstCombineAndOrXor.cpp 28 assert(FCmpInst::FCMP_FALSE <= CC && CC <= FCmpInst::FCMP_TRUE &&
32 static_assert(FCmpInst::FCMP_FALSE == 0, ""); // 0 0 0 0
68 assert(FCmpInst::FCMP_FALSE <= Pred && Pred <= FCmpInst::FCMP_TRUE &&
70 if (Pred == FCmpInst::FCMP_FALSE)
tools/clang/lib/CodeGen/CGBuiltin.cpp12068 case 0x0b: Pred = FCmpInst::FCMP_FALSE; break;
12084 case 0x1b: Pred = FCmpInst::FCMP_FALSE; break;