Searched refs:getCondition (Results 26 - 50 of 166) sorted by relevance

1234567

/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp297 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
309 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
/external/swiftshader/src/OpenGL/compiler/
H A DAnalyzeCallDepth.cpp144 TIntermTyped* condition = currentCase->getCondition();
H A Dintermediate.h369 TIntermTyped* getCondition() { return cond; } function in class:TIntermLoop
623 TIntermTyped* getCondition() const { return condition; } function in class:TIntermSelection
672 TIntermTyped *getCondition() const { return mCondition; } function in class:TIntermCase
H A DValidateLimitations.cpp285 TIntermNode* cond = node->getCondition();
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DCloneFunction.cpp261 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
264 Value *V = VMap[BI->getCondition()];
278 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
280 Value *V = VMap[SI->getCondition()];
H A DLocal.cpp64 if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
95 Value *Cond = BI->getCondition();
107 ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition());
161 Value *Cond = SI->getCondition();
171 Value *Cond = Builder.CreateICmpEQ(SI->getCondition(),
H A DLoopSimplify.cpp189 if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) {
297 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
H A DLowerSwitch.cpp280 Value *Val = SI->getCondition(); // The value we are switching on...
/external/swiftshader/third_party/LLVM/tools/llvm-diff/
H A DDifferenceEngine.cpp301 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
313 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DInstructionsTest.cpp86 EXPECT_EQ(One, b1->getCondition());
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp247 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
256 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
278 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
360 if (!BI->isConditional() || BI->getCondition() != Cond)
376 if (SI->getCondition() != Cond) return false;
1063 if (ConstantInt *CB = dyn_cast<ConstantInt>(BI->getCondition())){
H A DIndVarSimplify.cpp1241 ICmpInst *OrigCond = dyn_cast<ICmpInst>(BI->getCondition());
1314 ICmpInst *Cond = dyn_cast<ICmpInst>(BI->getCondition());
1382 ICmpInst *Cond = dyn_cast<ICmpInst>(BI->getCondition());
1448 cast<BranchInst>(L->getExitingBlock()->getTerminator())->getCondition();
1630 Value *OrigCond = BI->getCondition();
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp581 return SelectInst::Create(SI->getCondition(),
1201 BI.getCondition()->hasOneUse())
1204 FCmpInst *Cond = cast<FCmpInst>(BI.getCondition());
1217 BI.getCondition()->hasOneUse())
1221 ICmpInst *Cond = cast<ICmpInst>(BI.getCondition());
1233 Value *Cond = SI.getCondition();
1861 if (BI->isConditional() && isa<ConstantInt>(BI->getCondition())) {
1862 bool CondVal = cast<ConstantInt>(BI->getCondition())->getZExtValue();
1868 if (ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition())) {
/external/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp315 Value *Cond = BI->getCondition();
408 Value *Cond = BI->getCondition();
491 Value *Cond = BI->getCondition();
H A DInlineCost.cpp983 return BI.isUnconditional() || isa<ConstantInt>(BI.getCondition()) ||
985 SimplifiedValues.lookup(BI.getCondition()));
991 if (isa<ConstantInt>(SI.getCondition()))
993 if (Value *V = SimplifiedValues.lookup(SI.getCondition()))
1361 Value *Cond = BI->getCondition();
1369 Value *Cond = SI->getCondition();
/external/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp628 ComputeValueKnownInPredecessors(SI->getCondition(), BB, Conds,
742 Condition = BI->getCondition();
744 Condition = SI->getCondition();
892 Value *Cond = BI->getCondition();
908 isImpliedCondition(PBI->getCondition(), Cond, DL, FalseDest);
1884 BranchInst::Create(NewBB, BB, SI->getCondition(), Pred);
1932 Value *Cond = SI->getCondition();
1947 SplitBlockAndInsertIfThen(SI->getCondition(), SI, false);
H A DLoopRotation.cpp363 if (!isa<ConstantInt>(PHBI->getCondition()) ||
364 PHBI->getSuccessor(cast<ConstantInt>(PHBI->getCondition())->isZero()) !=
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DBranchProbabilityInfo.cpp229 Value *Cond = BI->getCondition();
328 Value *Cond = BI->getCondition();
H A DLazyValueInfo.cpp817 if (BI->getCondition() == Val) {
825 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
874 if (SI->getCondition() == Val) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp635 if (SI0->getCondition() == SI1->getCondition()) {
639 SI = Builder->CreateSelect(SI0->getCondition(),
647 SI0->getCondition(), V,
766 if (auto *CI = dyn_cast<CmpInst>(SI->getCondition())) {
778 return SelectInst::Create(SI->getCondition(),
2130 !isa<UndefValue>(BI.getCondition())) {
2131 BI.setCondition(UndefValue::get(BI.getCondition()->getType()));
2139 BI.getCondition()->hasOneUse())
2142 FCmpInst *Cond = cast<FCmpInst>(BI.getCondition());
[all...]
/external/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp480 dyn_cast<ConstantInt>(getVal(BI->getCondition()));
487 dyn_cast<ConstantInt>(getVal(SI->getCondition()));
H A DLocal.cpp79 if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
110 Value *Cond = BI->getCondition();
122 ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition());
202 Value *Cond = SI->getCondition();
213 Value *Cond = Builder.CreateICmpEQ(SI->getCondition(),
/external/swiftshader/third_party/subzero/src/
H A DIceInst.cpp764 getCondition()->dump(Func);
818 Str << " = icmp " << InstIcmpAttributes[getCondition()].DisplayString << " "
857 Str << " = fcmp " << InstFcmpAttributes[getCondition()].DisplayString << " "
939 Operand *Condition = getCondition();
H A DIceInst.h385 Operand *getCondition() const { function in class:Ice::InstBr
534 FCond getCondition() const { return Condition; } function in class:Ice::InstFcmp
566 ICond getCondition() const { return Condition; } function in class:Ice::InstIcmp
729 Operand *getCondition() const { return getSrc(0); } function in class:Ice::InstSelect
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp2170 assert(isa<CmpInst>(BI->getCondition()) && "Expected cmp instruction");
2171 const CmpInst *CI = cast<CmpInst>(BI->getCondition());
2300 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
2362 } else if (const auto *CI = dyn_cast<ConstantInt>(BI->getCondition())) {
2378 if (foldXALUIntrinsic(CC, I, BI->getCondition())) {
2381 unsigned CondReg = getRegForValue(BI->getCondition());
2395 unsigned CondReg = getRegForValue(BI->getCondition());
2398 bool CondRegIsKill = hasTrivialKill(BI->getCondition());
2532 Src1Val = SI->getCondition();
2538 Src2Val = SI->getCondition();
[all...]

Completed in 693 milliseconds

1234567