Home
last modified time | relevance | path

Searched refs:FCMP_TRUE (Results 1 – 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeDecoders.cpp180 case naclbitc::FCMP_TRUE: in DecodeFcmpPredicate()
181 LLVMPredicate = CmpInst::FCMP_TRUE; in DecodeFcmpPredicate()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClLLVMBitCodes.h288 FCMP_TRUE = 15, ///< 1 1 1 1 Always true (always folded) enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp2457 case CmpInst::FCMP_UEQ: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2459 case CmpInst::FCMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2461 case CmpInst::FCMP_ULE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2463 case CmpInst::FCMP_TRUE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2465 case CmpInst::ICMP_EQ: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2468 case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2470 case CmpInst::ICMP_ULE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2472 case CmpInst::ICMP_SGE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
2474 case CmpInst::ICMP_SLE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp408 assert((Predicate == CmpInst::FCMP_TRUE || in legalizeCustom()
412 Predicate == CmpInst::FCMP_TRUE ? 1 : 0); in legalizeCustom()
DARMInstructionSelector.cpp539 if (Cond == CmpInst::FCMP_TRUE || Cond == CmpInst::FCMP_FALSE) { in selectCmp()
540 putConstant(I, ResReg, Cond == CmpInst::FCMP_TRUE ? 1 : 0); in selectCmp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DOperations.cpp67 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_TRUE)); in describeFuzzerFloatOps()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstrTypes.h749 FCMP_TRUE = 15, ///< 1 1 1 1 Always true (always folded)
751 LAST_FCMP_PREDICATE = FCMP_TRUE,
752 BAD_FCMP_PREDICATE = FCMP_TRUE + 1,
DIRBuilder.h1201 Predicate != CmpInst::FCMP_TRUE && in getConstrainedFPPredicate()
DInstructions.h1372 getPredicate() == FCMP_TRUE ||
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAnalysis.cpp218 case FCmpInst::FCMP_TRUE: return ISD::SETTRUE; in getFCmpCondCode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantFold.cpp1823 if (pred == FCmpInst::FCMP_TRUE) in ConstantFoldCompareInstruction()
1909 case FCmpInst::FCMP_TRUE: return Constant::getAllOnesValue(ResultTy); in ConstantFoldCompareInstruction()
1977 case FCmpInst::FCMP_TRUE: in ConstantFoldCompareInstruction()
DInstructions.cpp3558 case FCMP_TRUE: return FCMP_FALSE; in getInversePredicate()
3559 case FCMP_FALSE: return FCMP_TRUE; in getInversePredicate()
3581 case FCmpInst::FCMP_TRUE: return "true"; in getPredicateName()
3658 case FCMP_FALSE: case FCMP_TRUE: in getSwappedPredicate()
3743 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true; in isTrueWhenEqual()
DConstants.cpp2047 case CmpInst::FCMP_TRUE: in getCompare()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp28 assert(FCmpInst::FCMP_FALSE <= CC && CC <= FCmpInst::FCMP_TRUE && in getFCmpCode()
47 static_assert(FCmpInst::FCMP_TRUE == 15, ""); // 1 1 1 1 in getFCmpCode()
68 assert(FCmpInst::FCMP_FALSE <= Pred && Pred <= FCmpInst::FCMP_TRUE && in getFCmpValue()
72 if (Pred == FCmpInst::FCMP_TRUE) in getFCmpValue()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceConverter.cpp505 case CmpInst::FCMP_TRUE: in convertFCmpInstruction()
DPNaClTranslator.cpp2070 case naclbitc::FCMP_TRUE: in convertNaClBitcFCompOpToIce()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp677 case FCmpInst::FCMP_TRUE: R = executeFCMP_BOOL(Src1, Src2, Ty, true); in visitFCmpInst()
727 case FCmpInst::FCMP_TRUE: return executeFCMP_BOOL(Src1, Src2, Ty, true); in executeCmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86FastISel.cpp1448 case CmpInst::FCMP_TRUE: { in X86SelectCmp()
1645 case CmpInst::FCMP_TRUE: fastEmitBranch(TrueMBB, DbgLoc); return true; in X86SelectBranch()
2372 case CmpInst::FCMP_TRUE: Opnd = I->getOperand(1); break; in X86SelectSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp2441 case CmpInst::FCMP_TRUE: in selectBranch()
2587 case CmpInst::FCMP_TRUE: in selectCmp()
2767 case CmpInst::FCMP_TRUE: in selectSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCFastISel.cpp209 case CmpInst::FCMP_TRUE: in getComparePred()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp351 else if (Pred == CmpInst::FCMP_TRUE) in translateCompare()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp2386 .Case("true", CmpInst::FCMP_TRUE) in parsePredicateOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DInstructionSimplify.cpp3536 if (Pred == FCmpInst::FCMP_TRUE) in SimplifyFCmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp5870 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break; in ParseCmpPredicate()