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

1 2 3 4

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
UnfoldSelect.cpp 37 node->getCondition()->traverse(this);
39 node->getCondition()->traverse(mOutputHLSL);
OutputGLSL.cpp 401 node->getCondition()->traverse(this);
411 node->getCondition()->traverse(this);
623 if (node->getCondition())
624 node->getCondition()->traverse(this);
634 ASSERT(node->getCondition() != NULL);
635 node->getCondition()->traverse(this);
651 ASSERT(node->getCondition() != NULL);
652 node->getCondition()->traverse(this);
intermOut.cpp 288 node->getCondition()->traverse(this);
355 if (node->getCondition()) {
357 node->getCondition()->traverse(this);
OutputHLSL.cpp     [all...]
intermediate.h 289 TIntermTyped* getCondition() { return cond; }
470 TIntermNode* getCondition() const { return condition; }
ValidateLimitations.cpp 248 TIntermNode* cond = node->getCondition();
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 134 BCValue = getOrInitValueState(BI->getCondition());
136 BCValue = getLatticeState(BI->getCondition());
149 Constant *C = LatticeFunc->GetConstant(BCValue, BI->getCondition(), *this);
176 SCValue = getOrInitValueState(SI.getCondition());
178 SCValue = getLatticeState(SI.getCondition());
191 Constant *C = LatticeFunc->GetConstant(SCValue, SI.getCondition(), *this);
BranchProbabilityInfo.cpp 203 Value *Cond = BI->getCondition();
290 Value *Cond = BI->getCondition();
350 Value *Cond = BI->getCondition();
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 89 public final Condition getCondition() {
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 61 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
101 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI->getCondition());
SimplifyCFG.cpp 143 // 3> SI2->getCondition() and Cond have same operands.
144 CmpInst *Ci2 = dyn_cast<CmpInst>(SI2->getCondition());
244 return Pred1Br->getCondition();
266 return BI->getCondition();
496 Cond = dyn_cast<Instruction>(SI->getCondition());
499 Cond = dyn_cast<Instruction>(BI->getCondition());
517 CV = SI->getCondition();
519 if (BI->isConditional() && BI->getCondition()->hasOneUse())
520 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
548 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
    [all...]
CloneFunction.cpp 303 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
306 Value *V = VMap[BI->getCondition()];
320 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
322 Value *V = VMap[SI->getCondition()];
Local.cpp 66 if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
97 Value *Cond = BI->getCondition();
109 ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition());
162 Value *Cond = SI->getCondition();
176 Value *Cond = Builder.CreateICmpEQ(SI->getCondition(),
    [all...]
LoopSimplify.cpp 190 if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) {
298 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
LowerSwitch.cpp 262 Value *Val = SI->getCondition(); // The value we are switching on...
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriterPass.cpp 68 Type *IntTy = SI->getCondition()->getType();
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriterPass.cpp 68 Type *IntTy = SI->getCondition()->getType();
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 29 ICmpInst *ICI = dyn_cast<ICmpInst>(SI->getCondition());
134 Type *CondTy = SI.getCondition()->getType();
143 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
183 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
231 Value *NewSel = Builder->CreateSelect(SI.getCondition(), OOp, C);
266 Value *NewSel = Builder->CreateSelect(SI.getCondition(), C, OOp);
543 const PHINode *CondPHI = cast<PHINode>(SI.getCondition());
594 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
658 Value *CondVal = SI.getCondition();
    [all...]
InstructionCombining.cpp 590 return SelectInst::Create(SI->getCondition(),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 531 LatticeVal BCValue = getValueState(BI->getCondition());
557 LatticeVal SCValue = getValueState(SI->getCondition());
600 LatticeVal BCValue = getValueState(BI->getCondition());
620 LatticeVal SCValue = getValueState(SI->getCondition());
825 LatticeVal CondValue = getValueState(I.getCondition());
    [all...]
LoopUnswitch.cpp 435 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
444 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
479 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
562 if (!BI->isConditional() || BI->getCondition() != Cond)
578 if (SI->getCondition() != Cond) return false;
    [all...]
LoopRotation.cpp 403 if (!isa<ConstantInt>(PHBI->getCondition()) ||
404 PHBI->getSuccessor(cast<ConstantInt>(PHBI->getCondition())->isZero())
CorrelatedValuePropagation.cpp 187 Value *Cond = SI->getCondition();
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 301 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
313 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
  /external/llvm/unittests/VMCore/
InstructionsTest.cpp 91 EXPECT_EQ(One, b1->getCondition());

Completed in 476 milliseconds

1 2 3 4