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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
65 bool decomposeBitTestICmp(const ICmpInst *I, CmpInst::Predicate &Pred,
  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitcodeDecoders.cpp 131 CmpInst::Predicate &LLVMPredicate) {
134 LLVMPredicate = CmpInst::FCMP_FALSE;
137 LLVMPredicate = CmpInst::FCMP_FALSE;
140 LLVMPredicate = CmpInst::FCMP_OEQ;
143 LLVMPredicate = CmpInst::FCMP_OGT;
146 LLVMPredicate = CmpInst::FCMP_OGE;
149 LLVMPredicate = CmpInst::FCMP_OLT;
152 LLVMPredicate = CmpInst::FCMP_OLE;
155 LLVMPredicate = CmpInst::FCMP_ONE;
158 LLVMPredicate = CmpInst::FCMP_ORD
    [all...]
  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 73 CmpInst::Predicate &NewICmpPred) {
77 return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
85 return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 1);
93 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
94 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
95 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitcodeDecoders.h 60 /// CmpInst::FCMP_FALSE and returns false.
62 CmpInst::Predicate &LLVMPredicate);
67 /// CmpInst::ICMP_EQ and returns false.
69 CmpInst::Predicate &LLVMPredicate);
  /external/llvm/lib/Target/SystemZ/
SystemZTDC.cpp 85 void convertFCmp(CmpInst &I);
88 void convertICmp(CmpInst &I);
122 void SystemZTDCPass::convertFCmp(CmpInst &I) {
144 if ((Pred & CmpInst::FCMP_OGE) != CmpInst::FCMP_OGE &&
145 (Pred & CmpInst::FCMP_OGE) != 0)
150 if ((Pred & CmpInst::FCMP_OLE) != CmpInst::FCMP_OLE &&
151 (Pred & CmpInst::FCMP_OLE) != 0)
205 if (Pred & CmpInst::FCMP_OEQ
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 82 static CmpInst::Predicate mapFCmpPred(CmpInst::Predicate P) {
84 case CmpInst::FCMP_OEQ:
85 case CmpInst::FCMP_UEQ:
86 return CmpInst::ICMP_EQ;
87 case CmpInst::FCMP_OGT:
88 case CmpInst::FCMP_UGT:
89 return CmpInst::ICMP_SGT;
90 case CmpInst::FCMP_OGE:
91 case CmpInst::FCMP_UGE
    [all...]
  /external/llvm/include/llvm/IR/
ConstantRange.h 71 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
82 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
92 static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred,
120 bool getEquivalentICmp(CmpInst::Predicate &Pred, APInt &RHS) const;
  /external/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 91 bool visitCmpInst(CmpInst &I);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 91 bool visitCmpInst(CmpInst &I);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 73 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
84 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
94 static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred,
122 bool getEquivalentICmp(CmpInst::Predicate &Pred, APInt &RHS) const;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 91 bool visitCmpInst(CmpInst &I);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 73 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
84 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
94 static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred,
122 bool getEquivalentICmp(CmpInst::Predicate &Pred, APInt &RHS) const;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 91 bool visitCmpInst(CmpInst &I);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 73 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
84 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
94 static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred,
122 bool getEquivalentICmp(CmpInst::Predicate &Pred, APInt &RHS) const;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 91 bool visitCmpInst(CmpInst &I);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 73 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
84 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
94 static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred,
122 bool getEquivalentICmp(CmpInst::Predicate &Pred, APInt &RHS) const;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 91 bool visitCmpInst(CmpInst &I);

Completed in 1091 milliseconds

1 2 3 4 5 6 7 8 91011>>