HomeSort by relevance Sort by last modified time
    Searched refs:FCmpInst (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/CodeGen/
Analysis.cpp 152 ISD::CondCode llvm::getFCmpCondCode(FCmpInst::Predicate Pred) {
154 case FCmpInst::FCMP_FALSE: return ISD::SETFALSE;
155 case FCmpInst::FCMP_OEQ: return ISD::SETOEQ;
156 case FCmpInst::FCMP_OGT: return ISD::SETOGT;
157 case FCmpInst::FCMP_OGE: return ISD::SETOGE;
158 case FCmpInst::FCMP_OLT: return ISD::SETOLT;
159 case FCmpInst::FCMP_OLE: return ISD::SETOLE;
160 case FCmpInst::FCMP_ONE: return ISD::SETONE;
161 case FCmpInst::FCMP_ORD: return ISD::SETO;
162 case FCmpInst::FCMP_UNO: return ISD::SETUO
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]
AsmWriter.cpp 638 case FCmpInst::FCMP_FALSE: pred = "false"; break;
639 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
640 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
641 case FCmpInst::FCMP_OGE: pred = "oge"; break;
642 case FCmpInst::FCMP_OLT: pred = "olt"; break;
643 case FCmpInst::FCMP_OLE: pred = "ole"; break;
644 case FCmpInst::FCMP_ONE: pred = "one"; break;
645 case FCmpInst::FCMP_ORD: pred = "ord"; break;
646 case FCmpInst::FCMP_UNO: pred = "uno"; break;
647 case FCmpInst::FCMP_UEQ: pred = "ueq"; break
    [all...]
Instructions.cpp     [all...]
Verifier.cpp 265 void visitFCmpInst(FCmpInst &FC);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 66 /// getFCmpCode - Similar to getICmpCode but for FCmpInst. This encodes a fcmp
69 static unsigned getFCmpCode(FCmpInst::Predicate CC, bool &isOrdered) {
72 case FCmpInst::FCMP_ORD: isOrdered = true; return 0; // 000
73 case FCmpInst::FCMP_UNO: return 0; // 000
74 case FCmpInst::FCMP_OGT: isOrdered = true; return 1; // 001
75 case FCmpInst::FCMP_UGT: return 1; // 001
76 case FCmpInst::FCMP_OEQ: isOrdered = true; return 2; // 010
77 case FCmpInst::FCMP_UEQ: return 2; // 010
78 case FCmpInst::FCMP_OGE: isOrdered = true; return 3; // 011
79 case FCmpInst::FCMP_UGE: return 3; // 01
    [all...]
InstCombine.h 128 Value *FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
131 Value *FoldOrOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
140 Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
145 Instruction *visitFCmpInst(FCmpInst &I);
InstCombineCompares.cpp     [all...]
InstCombineSelect.cpp 727 if (FCmpInst *FCI = dyn_cast<FCmpInst>(CondVal)) {
730 if (FCI->getPredicate() == FCmpInst::FCMP_OEQ) {
742 if (FCI->getPredicate() == FCmpInst::FCMP_UNE) {
757 if (FCI->getPredicate() == FCmpInst::FCMP_OEQ) {
769 if (FCI->getPredicate() == FCmpInst::FCMP_UNE) {
    [all...]
InstructionCombining.cpp 554 if (FCmpInst *CI = dyn_cast<FCmpInst>(&I))
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 445 void Interpreter::visitFCmpInst(FCmpInst &I) {
453 case FCmpInst::FCMP_FALSE: R.IntVal = APInt(1,false); break;
454 case FCmpInst::FCMP_TRUE: R.IntVal = APInt(1,true); break;
455 case FCmpInst::FCMP_ORD: R = executeFCMP_ORD(Src1, Src2, Ty); break;
456 case FCmpInst::FCMP_UNO: R = executeFCMP_UNO(Src1, Src2, Ty); break;
457 case FCmpInst::FCMP_UEQ: R = executeFCMP_UEQ(Src1, Src2, Ty); break;
458 case FCmpInst::FCMP_OEQ: R = executeFCMP_OEQ(Src1, Src2, Ty); break;
459 case FCmpInst::FCMP_UNE: R = executeFCMP_UNE(Src1, Src2, Ty); break;
460 case FCmpInst::FCMP_ONE: R = executeFCMP_ONE(Src1, Src2, Ty); break;
461 case FCmpInst::FCMP_ULT: R = executeFCMP_ULT(Src1, Src2, Ty); break
    [all...]
Interpreter.h 148 void visitFCmpInst(FCmpInst &I);
  /external/llvm/include/llvm/CodeGen/
Analysis.h 72 ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 877 Out << "getFCmp(FCmpInst::FCMP_";
879 case FCmpInst::FCMP_FALSE: Out << "FALSE"; break;
880 case FCmpInst::FCMP_ORD: Out << "ORD"; break;
881 case FCmpInst::FCMP_UNO: Out << "UNO"; break;
882 case FCmpInst::FCMP_OEQ: Out << "OEQ"; break;
883 case FCmpInst::FCMP_UEQ: Out << "UEQ"; break;
884 case FCmpInst::FCMP_ONE: Out << "ONE"; break;
885 case FCmpInst::FCMP_UNE: Out << "UNE"; break;
886 case FCmpInst::FCMP_OLT: Out << "OLT"; break;
887 case FCmpInst::FCMP_ULT: Out << "ULT"; break
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 351 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
360 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
363 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
InstructionSimplify.cpp     [all...]
  /external/llvm/include/llvm/
IRBuilder.h     [all...]
Instructions.h     [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 517 inline CmpClass_match<LHS, RHS, FCmpInst, FCmpInst::Predicate>
518 m_FCmp(FCmpInst::Predicate &Pred, const LHS &L, const RHS &R) {
520 FCmpInst, FCmpInst::Predicate>(Pred, L, R);
InstVisitor.h 173 RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);}
NoFolder.h 259 return new FCmpInst(P, LHS, RHS);
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 279 FCmpInst *Compare = dyn_cast<FCmpInst>(U1);
281 Compare = dyn_cast<FCmpInst>(U2);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 38 class FCmpInst;
  /external/llvm/include/llvm-c/
Core.h 1035 macro(FCmpInst) \
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 473 llvm::FCmpInst::FP); }
    [all...]

Completed in 802 milliseconds

1 2