Home
last modified time | relevance | path

Searched refs:FCMP_ONE (Results 1 – 25 of 46) sorted by relevance

12

/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeDecoders.cpp154 case naclbitc::FCMP_ONE: in DecodeFcmpPredicate()
155 LLVMPredicate = CmpInst::FCMP_ONE; in DecodeFcmpPredicate()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClLLVMBitCodes.h284 FCMP_ONE = 6, ///< 0 1 1 0 True if ordered and operands are unequal enumerator
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DAnalysis.cpp160 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; in getFCmpCondCode()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp249 if ((Predicate == CmpInst::ICMP_NE) || (Predicate == CmpInst::FCMP_ONE)) { in FlattenParallelAndOr()
/external/llvm/lib/IR/
DConstantFold.cpp1783 case FCmpInst::FCMP_ONE: in ConstantFoldCompareInstruction()
1850 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
1855 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
1873 case FCmpInst::FCMP_ONE: // We know that C1 != C2 in ConstantFoldCompareInstruction()
1877 else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE) in ConstantFoldCompareInstruction()
DInstructions.cpp3450 case FCMP_ONE: return FCMP_UEQ; in getInversePredicate()
3455 case FCMP_UEQ: return FCMP_ONE; in getInversePredicate()
3574 case FCMP_OEQ: case FCMP_ONE: in getSwappedPredicate()
3625 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT: in isOrdered()
3651 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; in isFalseWhenEqual()
/external/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp99 case CmpInst::FCMP_ONE: in mapFCmpPred()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DConstantFold.cpp1940 case FCmpInst::FCMP_ONE: in ConstantFoldCompareInstruction()
2003 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
2008 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
2026 case FCmpInst::FCMP_ONE: // We know that C1 != C2 in ConstantFoldCompareInstruction()
2030 else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE) in ConstantFoldCompareInstruction()
DInstructions.cpp2906 case FCMP_ONE: return FCMP_UEQ; in getInversePredicate()
2911 case FCMP_UEQ: return FCMP_ONE; in getInversePredicate()
3028 case FCMP_OEQ: case FCMP_ONE: in getSwappedPredicate()
3062 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT: in isOrdered()
3088 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; in isFalseWhenEqual()
/external/llvm/lib/CodeGen/
DAnalysis.cpp170 case FCmpInst::FCMP_ONE: return ISD::SETONE; in getFCmpCondCode()
/external/swiftshader/third_party/LLVM/include/llvm/
DInstrTypes.h654 FCMP_ONE = 6, ///< 0 1 1 0 True if ordered and operands are unequal
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
DExecution.cpp460 case FCmpInst::FCMP_ONE: R = executeFCMP_ONE(Src1, Src2, Ty); break; in visitFCmpInst()
495 case FCmpInst::FCMP_ONE: return executeFCMP_ONE(Src1, Src2, Ty); in executeCmpInst()
/external/spirv-llvm/lib/SPIRV/
DSPIRVInternal.h136 _SPIRV_OP(FCMP_ONE, FOrdNotEqual) in init()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dblend_jit.cpp491 case ZFUNC_NE: pTest = FCMP_ONE(pAlpha, pRef); break; in AlphaTest()
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
DCPPBackend.cpp843 case FCmpInst::FCMP_ONE: Out << "ONE"; break; in printConstant()
1182 case FCmpInst::FCMP_ONE : Out << "FCmpInst::FCMP_ONE"; break; in printInstruction()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86FastISel.cpp931 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; in X86SelectCmp()
1031 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE_4; break; in X86SelectBranch()
/external/swiftshader/third_party/subzero/src/
DIceConverter.cpp478 case CmpInst::FCMP_ONE: in convertFCmpInstruction()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp4328 assert(P == FCmpInst::FCMP_ONE || P == FCmpInst::FCMP_UNE); in FoldFCmp_IntToFP_Cst()
4391 case FCmpInst::FCMP_ONE: in FoldFCmp_IntToFP_Cst()
4683 return new FCmpInst(FCmpInst::FCMP_ONE, CI->getArgOperand(0), RHSC); in visitFCmpInst()
4694 case FCmpInst::FCMP_ONE: in visitFCmpInst()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp125 case FCmpInst::FCMP_ONE: isOrdered = true; return 5; // 101 in getFCmpCode()
174 case 5: Pred = isordered ? FCmpInst::FCMP_ONE : FCmpInst::FCMP_UNE; break; in getFCmpValue()
/external/llvm/include/llvm/IR/
DInstrTypes.h874 FCMP_ONE = 6, ///< 0 1 1 0 True if ordered and operands are unequal
/external/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp2124 case CmpInst::FCMP_ONE: in getCompareCC()
2340 case CmpInst::FCMP_ONE: in selectBranch()
2485 case CmpInst::FCMP_ONE: in selectCmp()
2666 case CmpInst::FCMP_ONE: in selectSelect()
/external/llvm/lib/Target/X86/
DX86FastISel.cpp193 case CmpInst::FCMP_ONE: CC = X86::COND_NE; break; in getX86ConditionCode()
244 case CmpInst::FCMP_ONE: CC = 8; break; in getX86SSEConditionCode()
1609 Predicate = CmpInst::FCMP_ONE; in X86SelectBranch()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp631 case FCmpInst::FCMP_ONE: R = executeFCMP_ONE(Src1, Src2, Ty); break; in visitFCmpInst()
663 case FCmpInst::FCMP_ONE: return executeFCMP_ONE(Src1, Src2, Ty); in executeCmpInst()
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
DCBackend.cpp885 case FCmpInst::FCMP_ONE: op = "one"; break; in printConstant()
2653 case FCmpInst::FCMP_ONE: op = "one"; break; in visitFCmpInst()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DIndVarSimplify.cpp323 case CmpInst::FCMP_ONE: in HandleFloatingPointIV()

12