Home
last modified time | relevance | path

Searched refs:FCMP_UGT (Results 1 – 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeDecoders.cpp165 case naclbitc::FCMP_UGT: in DecodeFcmpPredicate()
166 LLVMPredicate = CmpInst::FCMP_UGT; in DecodeFcmpPredicate()
/third_party/ltp/tools/sparse/sparse-src/
Dopcode.def48 OPCODE(FCMP_OLE, FCMP_UGT, FCMP_OGE, BADOP, BADOP, 2, OPF_TARGET)
51 OPCODE(FCMP_ULT, FCMP_OGE, FCMP_UGT, BADOP, BADOP, 2, OPF_TARGET)
54 OPCODE(FCMP_UGT, FCMP_OLE, FCMP_ULT, BADOP, BADOP, 2, OPF_TARGET)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp269 FCmp32Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F32, CmpInst::ICMP_EQ}}; in setFCmpLibcallsAEABI()
295 FCmp64Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F64, CmpInst::ICMP_EQ}}; in setFCmpLibcallsAEABI()
320 FCmp32Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F32, CmpInst::ICMP_SGT}}; in setFCmpLibcallsGNU()
338 FCmp64Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F64, CmpInst::ICMP_SGT}}; in setFCmpLibcallsGNU()
DARMInstructionSelector.cpp416 case CmpInst::FCMP_UGT: in getComparePreds()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClLLVMBitCodes.h283 FCMP_UGT = 10, ///< 1 0 1 0 True if unordered or greater than enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp140 .Case("ugt", FCmpInst::FCMP_UGT) in getPredicate()
DInstructions.cpp3549 case FCMP_OLE: return FCMP_UGT; in getInversePredicate()
3552 case FCMP_UGT: return FCMP_OLE; in getInversePredicate()
3576 case FCmpInst::FCMP_UGT: return "ugt"; in getPredicateName()
3637 case FCMP_UGT: return FCMP_UGE; in getFlippedStrictnessPredicate()
3639 case FCMP_UGE: return FCMP_UGT; in getFlippedStrictnessPredicate()
3667 case FCMP_UGT: return FCMP_ULT; in getSwappedPredicate()
3668 case FCMP_ULT: return FCMP_UGT; in getSwappedPredicate()
3682 case FCMP_UGT: return FCMP_UGE; in getNonStrictPredicate()
3733 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT: in isUnordered()
DConstantFold.cpp1929 case FCmpInst::FCMP_UGT: in ConstantFoldCompareInstruction()
1974 case FCmpInst::FCMP_UGT: in ConstantFoldCompareInstruction()
1993 pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT || in ConstantFoldCompareInstruction()
1998 if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT) in ConstantFoldCompareInstruction()
2007 else if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT) in ConstantFoldCompareInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp91 case CmpInst::FCMP_UGT: in mapFCmpPred()
DIndVarSimplify.cpp378 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break; in handleFloatingPointIV()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DOperations.cpp62 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_UGT)); in describeFuzzerFloatOps()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAnalysis.cpp213 case FCmpInst::FCMP_UGT: return ISD::SETUGT; in getFCmpCondCode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsInstructionSelector.cpp753 case CmpInst::FCMP_UGT: // Unordered or Greater Than (UGT) in select()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceConverter.cpp487 case CmpInst::FCMP_UGT: in convertFCmpInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp687 case FCmpInst::FCMP_UGT: R = executeFCMP_UGT(Src1, Src2, Ty); break; in visitFCmpInst()
721 case FCmpInst::FCMP_UGT: return executeFCMP_UGT(Src1, Src2, Ty); in executeCmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp1093 case FCmpInst::FCMP_UGT: in selectFCmp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp2484 (Pred == FCmpInst::FCMP_OGT || Pred == FCmpInst::FCMP_UGT)) { in visitSelectInst()
2509 Pred == FCmpInst::FCMP_UGT || Pred == FCmpInst::FCMP_UGE)) { in visitSelectInst()
DInstCombineCompares.cpp5760 case FCmpInst::FCMP_UGT: in foldFCmpIntToFPConst()
5993 case FCmpInst::FCMP_UGT: in foldFabsWithFcmpZero()
6058 case FCmpInst::FCMP_UGT: // True if unordered or greater than in visitFCmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstrTypes.h744 FCMP_UGT = 10, ///< 1 0 1 0 True if unordered or greater than
DPatternMatch.h1543 return Pred == CmpInst::FCMP_UGT || Pred == CmpInst::FCMP_UGE; in match()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueTracking.cpp4697 case CmpInst::FCMP_UGT: in matchFastFloatClamp()
5047 case FCmpInst::FCMP_UGT: in matchSelectPattern()
5294 return Ordered ? FCmpInst::FCMP_OGT : FCmpInst::FCMP_UGT; in getMinMaxPred()
DInstructionSimplify.cpp3604 case FCmpInst::FCMP_UGT: in SimplifyFCmpInst()
3642 case FCmpInst::FCMP_OGT: case FCmpInst::FCMP_UGT: in SimplifyFCmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCFastISel.cpp227 case CmpInst::FCMP_UGT: in getComparePred()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp2458 case CmpInst::FCMP_UGT: Predicate = CmpInst::FCMP_UNO; break; in optimizeCmpPredicate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp2381 .Case("ugt", CmpInst::FCMP_UGT) in parsePredicateOperand()

12