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

1234567

/external/autotest/frontend/client/src/autotest/tko/
H A DTestSet.java18 public JSONObject getCondition() { method in class:TestSet
H A DTestContextMenu.java32 final JSONObject condition = tests.getCondition();
/external/swiftshader/src/OpenGL/libGLESv2/
H A DFence.h54 GLenum getCondition() const { return mCondition; } function in class:es2::FenceSync
/external/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp57 CallInst *CI = dyn_cast<CallInst>(SI.getCondition());
101 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI.getCondition());
103 CI = dyn_cast<CallInst>(BI.getCondition());
H A DSCCP.cpp550 LatticeVal BCValue = getValueState(BI->getCondition());
576 LatticeVal SCValue = getValueState(SI->getCondition());
619 LatticeVal BCValue = getValueState(BI->getCondition());
639 LatticeVal SCValue = getValueState(SI->getCondition());
847 LatticeVal CondValue = getValueState(I.getCondition());
1472 if (!getValueState(BI->getCondition()).isUnknown())
1477 if (isa<UndefValue>(BI->getCondition())) {
1486 markForcedConstant(BI->getCondition(),
1494 if (!getValueState(SI->getCondition()).isUnknown())
1499 if (isa<UndefValue>(SI->getCondition())) {
[all...]
H A DLoopUnswitch.cpp601 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
610 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
645 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
905 } else if (BI->getCondition() == ConstantInt::getTrue(Context)) {
907 } else if (BI->getCondition() == ConstantInt::getFalse(Context)) {
930 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
935 if (!LoopCond || LoopCond != BI->getCondition())
961 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
966 if (!LoopCond || LoopCond != SI->getCondition())
H A DCorrelatedValuePropagation.cpp112 Value *Condition = SI->getCondition();
219 Value *Cond = SI->getCondition();
274 Cond = SI->getCondition();
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp135 BCValue = getOrInitValueState(BI->getCondition());
137 BCValue = getLatticeState(BI->getCondition());
150 Constant *C = LatticeFunc->GetConstant(BCValue, BI->getCondition(), *this);
177 SCValue = getOrInitValueState(SI.getCondition());
179 SCValue = getLatticeState(SI.getCondition());
192 Constant *C = LatticeFunc->GetConstant(SCValue, SI.getCondition(), *this);
/external/swiftshader/third_party/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);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp130 Type *CondTy = SI.getCondition()->getType();
157 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
202 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
250 Value *NewSel = Builder->CreateSelect(SI.getCondition(), OOp, C);
280 Value *NewSel = Builder->CreateSelect(SI.getCondition(), C, OOp);
312 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
632 const PHINode *CondPHI = cast<PHINode>(SI.getCondition());
713 SI->getCondition(), SI->getFalseValue(), SI->getTrueValue());
772 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
844 Value *CondVal = SI.getCondition();
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DWaitingThread.java94 public final Condition getCondition() { method in class:WaitingThread
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateUniformValues.cpp69 Value *Cond = I.getCondition();
H A DSIAnnotateControlFlow.cpp170 return DA->isUniform(T->getCondition()) ||
219 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
337 Value *Cond = Term->getCondition();
404 PHINode *Phi = dyn_cast<PHINode>(Term->getCondition());
/external/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp165 Value *PC = PBI->getCondition();
243 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
272 Value *PC = PBI->getCondition();
281 Value *CC = PBI->getCondition();
438 Value *CC = PBI->getCondition();
H A DSimplifyCFG.cpp215 // 3> SI2->getCondition() and Cond have same operands.
216 CmpInst *Ci2 = dyn_cast<CmpInst>(SI2->getCondition());
629 Cond = dyn_cast<Instruction>(SI->getCondition());
632 Cond = dyn_cast<Instruction>(BI->getCondition());
652 CV = SI->getCondition();
654 if (BI->isConditional() && BI->getCondition()->hasOneUse())
655 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition())) {
685 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
922 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
1304 Builder.CreateSelect(BI->getCondition(), BB1
[all...]
H A DCloneFunction.cpp332 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
335 Value *V = VMap.lookup(BI->getCondition());
349 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
351 Value *V = VMap.lookup(SI->getCondition());
/external/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp39 if (A->getCondition() == SB->getCondition())
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp47 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
90 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI->getCondition());
H A DSimplifyCFG.cpp183 return Pred1Br->getCondition();
205 return BI->getCondition();
437 Cond = dyn_cast<Instruction>(SI->getCondition());
440 Cond = dyn_cast<Instruction>(BI->getCondition());
458 CV = SI->getCondition();
460 if (BI->isConditional() && BI->getCondition()->hasOneUse())
461 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
488 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
932 (Builder.CreateSelect(BI->getCondition(), BB1V, BB2V,
974 Value *BrCond = BI->getCondition();
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp29 ICmpInst *ICI = dyn_cast<ICmpInst>(SI->getCondition());
137 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
177 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
226 Value *NewSel = Builder->CreateSelect(SI.getCondition(), OOp, C);
261 Value *NewSel = Builder->CreateSelect(SI.getCondition(), C, OOp);
535 const PHINode *CondPHI = cast<PHINode>(SI.getCondition());
586 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
650 Value *CondVal = SI.getCondition();
860 if (isa<PHINode>(SI.getCondition()))
868 if (TrueSI->getCondition()
[all...]
/external/swiftshader/src/OpenGL/compiler/
H A DValidateSwitch.cpp115 TIntermConstantUnion *condition = node->getCondition()->getAsConstantUnion();
H A DintermOut.cpp348 node->getCondition()->traverse(this);
419 if (node->getCondition()) {
421 node->getCondition()->traverse(this);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopRotation.cpp300 if (!isa<ConstantInt>(PHBI->getCondition()) ||
301 PHBI->getSuccessor(cast<ConstantInt>(PHBI->getCondition())->isZero())
H A DSCCP.cpp563 LatticeVal BCValue = getValueState(BI->getCondition());
589 LatticeVal SCValue = getValueState(SI->getCondition());
632 LatticeVal BCValue = getValueState(BI->getCondition());
652 LatticeVal SCValue = getValueState(SI->getCondition());
879 LatticeVal CondValue = getValueState(I.getCondition());
1637 if (!getValueState(BI->getCondition()).isUndefined())
1642 if (isa<UndefValue>(BI->getCondition())) {
1651 markForcedConstant(BI->getCondition(),
1659 if (!getValueState(SI->getCondition()).isUndefined())
1664 if (isa<UndefValue>(SI->getCondition())) {
[all...]
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.cpp136 if (iter->getCondition() != Cond::COND_NEVER && iter->getCondition() != Cond::COND_ALWAYS)
137 conditions.insert(iter->getCondition().getName());
179 if (iter->getCondition() == Cond::COND_NEVER)
195 else if (iter->getCondition() == Cond::COND_ALWAYS)
208 "\tif (u_" << iter->getCondition().getName() << (iter->getCondition().getNegate() ? " != " : " == ") << "0.0)\n"
582 const bool isActive = attrib.getCondition() != Cond::COND_NEVER;
616 << (attrib.getCondition() != Cond::COND_NEVER && expectedLocation != Attribute::LOC_UNDEF ? ", expected " + de::toString(expectedLocation) : "")
619 if (attrib.getCondition()
[all...]

Completed in 726 milliseconds

1234567