HomeSort by relevance Sort by last modified time
    Searched defs:Cond (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/llvm/lib/Target/WebAssembly/
WebAssemblyLowerBrUnless.cpp 69 unsigned Cond = MI->getOperand(0).getReg();
73 if (MFI.isVRegStackified(Cond)) {
74 assert(MRI.hasOneDef(Cond));
75 MachineInstr *Def = MRI.getVRegDef(Cond);
116 .addReg(Cond)
118 Cond = Tmp;
126 .addReg(Cond)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 12 struct rc_instruction * Cond;
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 152 SmallVector<MachineOperand, 1> Cond;
153 Cond.push_back(I->getOperand(1));
156 TII->ReverseBranchCondition(Cond);
158 .addImm(4).addOperand(Cond[0]);
  /external/llvm/lib/Target/AArch64/
AArch64A53Fix835769.cpp 132 SmallVector<MachineOperand, 2> Cond;
136 if (S == PrevBB && !TII->AnalyzeBranch(*PrevBB, TBB, FBB, Cond) &&
AArch64BranchRelaxation.cpp 417 SmallVector<MachineOperand, 2> Cond;
418 TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, false);
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 229 Value *Cond = SI->getCondition();
234 if (isa<Instruction>(Cond) && cast<Instruction>(Cond)->getParent() == BB)
254 Cond, Case, *PI,
284 Cond = SI->getCondition();
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 77 struct Cond {
81 enum { resultT = Cond<true>::is,
82 resultF = Cond<false>::is };
92 struct Cond {
97 typedef Cond<true, int, char>::True True;
98 typedef Cond<true, int, char>::False False;
112 struct Cond {
117 //Cond<true, int*, double> C; // Errors
119 //typedef Cond<true, int*, double>::Type Type; // Errors
120 typedef Cond<true, int, double>::Type Type
    [all...]
  /external/deqp/modules/glshared/
glsAttributeLocationTests.hpp 60 class Cond
69 Cond (ConstCond cond);
70 explicit Cond (const std::string& name, bool negate = true);
71 bool operator== (const Cond& other) const { return m_negate == other.m_negate && m_name == other.m_name; }
72 bool operator!= (const Cond& other) const { return !(*this == other); }
99 const Cond& cond = Cond::COND_ALWAYS,
105 const Cond& getCondition (void) const { return m_cond;
    [all...]
glsAttributeLocationTests.cpp 136 if (iter->getCondition() != Cond::COND_NEVER && iter->getCondition() != Cond::COND_ALWAYS)
179 if (iter->getCondition() == Cond::COND_NEVER)
195 else if (iter->getCondition() == Cond::COND_ALWAYS)
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() == Cond::COND_NEVER && location != -1)
622 if (attrib.getCondition() != Cond::COND_NEVER && expectedLocation != Attribute::LOC_UNDEF && expectedLocation != location)
625 isOk &= (attrib.getCondition() == Cond::COND_NEVER || expectedLocation == Attribute::LOC_UNDEF || expectedLocation == location);
658 Cond::Cond (const string& name, bool negate
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
R600ISelLowering.cpp 445 SDValue Cond = (isZero(LHS) ? RHS : LHS);
463 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
488 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, HWTrue, HWFalse, CC);
492 Cond = DAG.getNode(ISD::FP_TO_SINT, DL, MVT::i32,
493 DAG.getNode(ISD::FNEG, DL, VT, Cond));
496 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
501 SDValue Cond;
507 Cond = DAG.getNode(
515 Cond = DAG.getNode(
520 Cond);
    [all...]
SIISelLowering.cpp 384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
AMDILISelLowering.cpp 477 SDValue Cond = Op.getOperand(1);
484 Chain, Jump, Cond);
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /external/clang/lib/Analysis/
ReachableCode.cpp 54 const Expr *Cond = DS->getCond()->IgnoreParenCasts();
55 return Cond == S && isTrivialExpression(Cond);
263 const Stmt *Cond = B->getTerminatorCondition(/* stripParens */ false);
264 return isConfigurationValue(Cond, PP);
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 86 Value *handleLoopCondition(Value *Cond, PHINode *Broken, llvm::Loop *L);
210 Value *SIAnnotateControlFlow::handleLoopCondition(Value *Cond, PHINode *Broken,
219 if ((Phi = dyn_cast<PHINode>(Cond)) && L->contains(Phi)) {
263 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
271 Value *Args[] = { Cond, Broken };
287 Value *Cond = Term->getCondition();
289 Value *Arg = handleLoopCondition(Cond, Broken, L);
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCChecker.h 93 /// Cond = true/false for if(PredReg)/if(!PredReg) respectively,
100 bool IsFloat, IsNVJ, Cond;
104 /*Cond=*/ false };
109 /*Cond=*/ True };
114 /*Cond=*/ True };
  /external/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp 384 Value *Cond = SI->getCondition();
385 if (Cond->getType()->getScalarSizeInBits() >
390 ConstantInt::get(Int64Ty, Cond->getType()->getScalarSizeInBits()));
391 if (Cond->getType()->getScalarSizeInBits() <
393 Cond = IRB.CreateIntCast(Cond, Int64Ty, false);
407 {Cond, IRB.CreatePointerCast(GV, Int64PtrTy)});
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 423 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
425 if (!Cond) {
427 Cond = dyn_cast_or_null<ConstantInt>(V);
431 if (Cond) {
432 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
440 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
441 if (!Cond) { // Or known constant after constant prop in the callee...
443 Cond = dyn_cast_or_null<ConstantInt>(V);
445 if (Cond) { // Constant fold to uncond branch!
446 SwitchInst::ConstCaseIt Case = SI->findCaseValue(Cond);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 164 std::unique_ptr<ExprAST> Cond, Then, Else;
167 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
314 auto Cond = ParseExpression();
315 if (!Cond)
335 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
596 Value *CondV = Cond->codegen();
  /external/llvm/lib/CodeGen/
EarlyIfConversion.cpp 113 // Latencies from Cond+Branch, TReg, and FReg to DstReg.
124 SmallVector<MachineOperand, 4> Cond;
388 Cond.clear();
389 if (TII->AnalyzeBranch(*Head, TBB, FBB, Cond)) {
423 if (!TII->canInsertSelect(*Head, Cond, PI.TReg, PI.FReg,
464 TII->insertSelect(*Head, FirstTerm, HeadDL, DstReg, Cond, PI.TReg, PI.FReg);
493 DstReg, Cond, PI.TReg, PI.FReg);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 530 SDValue Cond = N->getOperand(0);
531 CL = CH = Cond;
532 if (Cond.getValueType().isVector()) {
535 if (getTypeAction(Cond.getValueType()) == TargetLowering::TypeSplitVector)
536 GetSplitVector(Cond, CL, CH);
538 std::tie(CL, CH) = DAG.SplitVector(Cond, dl);
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 819 SmallVector<MachineOperand, 2> Cond;
822 TII->AnalyzeBranch(MBB, TrueBB, FalseBB, Cond, false, BranchInstrs);

Completed in 1075 milliseconds

1 2 3 4 5