Searched refs:getCondition (Results 1 - 25 of 77) sorted by relevance

1234

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DUnfoldSelect.cpp37 node->getCondition()->traverse(this);
39 node->getCondition()->traverse(mOutputHLSL);
H A DOutputGLSL.cpp401 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);
H A DintermOut.cpp288 node->getCondition()->traverse(this);
355 if (node->getCondition()) {
357 node->getCondition()->traverse(this);
H A DOutputHLSL.cpp1385 mUnfoldSelect->traverse(node->getCondition());
1389 node->getCondition()->traverse(this);
1441 if (node->getCondition())
1443 mUnfoldSelect->traverse(node->getCondition());
1460 if (node->getCondition())
1462 node->getCondition()->traverse(this);
1487 node->getCondition()->traverse(this);
1602 if (index != NULL && node->getCondition())
1604 TIntermBinary *test = node->getCondition()->getAsBinaryNode();
H A Dintermediate.h289 TIntermTyped* getCondition() { return cond; } function in class:TIntermLoop
470 TIntermNode* getCondition() const { return condition; } function in class:TIntermSelection
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp134 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);
H A DBranchProbabilityInfo.cpp203 Value *Cond = BI->getCondition();
290 Value *Cond = BI->getCondition();
350 Value *Cond = BI->getCondition();
H A DCostModel.cpp128 Type *CondTy = SI->getCondition()->getType();
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DWaitingThread.java89 public final Condition getCondition() { method in class:WaitingThread
/external/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp38 if (A->getCondition() == SB->getCondition())
/external/llvm/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp61 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
101 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI->getCondition());
H A DSimplifyCFG.cpp154 // 3> SI2->getCondition() and Cond have same operands.
155 CmpInst *Ci2 = dyn_cast<CmpInst>(SI2->getCondition());
255 return Pred1Br->getCondition();
277 return BI->getCondition();
507 Cond = dyn_cast<Instruction>(SI->getCondition());
510 Cond = dyn_cast<Instruction>(BI->getCondition());
528 CV = SI->getCondition();
530 if (BI->isConditional() && BI->getCondition()->hasOneUse())
531 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
559 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
[all...]
H A DCloneFunction.cpp305 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
308 Value *V = VMap[BI->getCondition()];
322 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
324 Value *V = VMap[SI->getCondition()];
H A DLocal.cpp68 if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
99 Value *Cond = BI->getCondition();
111 ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition());
185 Value *Cond = SI->getCondition();
199 Value *Cond = Builder.CreateICmpEQ(SI->getCondition(),
/external/smack/src/com/kenai/jbosh/
H A DTerminalBindingCondition.java195 String getCondition() { method in class:TerminalBindingCondition
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp29 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);
547 const PHINode *CondPHI = cast<PHINode>(SI.getCondition());
598 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
662 Value *CondVal = SI.getCondition();
879 if (isa<PHINode>(SI.getCondition()))
[all...]
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp190 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
266 Value *Cond = Term->getCondition();
311 PHINode *Phi = dyn_cast<PHINode>(Term->getCondition());
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp206 Value *Cond = SI->getCondition();
260 Cond = SI->getCondition();
H A DSCCP.cpp524 LatticeVal BCValue = getValueState(BI->getCondition());
550 LatticeVal SCValue = getValueState(SI->getCondition());
593 LatticeVal BCValue = getValueState(BI->getCondition());
613 LatticeVal SCValue = getValueState(SI->getCondition());
815 LatticeVal CondValue = getValueState(I.getCondition());
1453 if (!getValueState(BI->getCondition()).isUndefined())
1458 if (isa<UndefValue>(BI->getCondition())) {
1467 markForcedConstant(BI->getCondition(),
1475 if (!getValueState(SI->getCondition()).isUndefined())
1480 if (isa<UndefValue>(SI->getCondition())) {
[all...]
H A DLoopUnswitch.cpp445 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
454 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
489 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
572 if (!BI->isConditional() || BI->getCondition() != Cond)
588 if (SI->getCondition() != Cond) return false;
1269 if (ConstantInt *CB = dyn_cast<ConstantInt>(BI->getCondition())){
H A DLoopRotation.cpp414 if (!isa<ConstantInt>(PHBI->getCondition()) ||
415 PHBI->getSuccessor(cast<ConstantInt>(PHBI->getCondition())->isZero())
H A DLoopIdiomRecognize.cpp291 return Br ? Br->getCondition() : 0;
351 ICmpInst *Cond = dyn_cast<ICmpInst>(Br->getCondition());
536 ICmpInst *PreCond = cast<ICmpInst>(PreCondBr->getCondition());
573 ICmpInst *LbCond = cast<ICmpInst>(LbBr->getCondition());
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp299 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
311 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
/external/smack/src/org/jivesoftware/smackx/packet/
H A DAdHocCommandData.java268 public SpecificErrorCondition getCondition() { method in class:AdHocCommandData.SpecificError
/external/smack/src/org/jivesoftware/smack/packet/
H A DXMPPError.java164 public String getCondition() { method in class:XMPPError
431 protected Condition getCondition() { method in class:XMPPError.ErrorSpecification

Completed in 456 milliseconds

1234