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

1 2 3 4 5 6 7

  /external/clang/test/SemaTemplate/
value-dependent-null-pointer-constant.cpp 5 const char *f0(bool Cond) {
6 return Cond? "honk" : N;
9 const char *f1(bool Cond) {
10 return Cond? N : "honk";
overload-candidates.cpp 52 template<typename Cond, typename T = void> struct enable_if : boost::enable_if<Cond::value, T> {};
constructor-template.cpp 60 X2 test(bool Cond, X2 x2) {
61 if (Cond)
80 X4 test_X4(bool Cond, X4 x4) {
  /external/llvm/lib/Target/MBlaze/
MBlazeInstrInfo.cpp 118 SmallVectorImpl<MachineOperand> &Cond,
146 Cond.push_back(MachineOperand::CreateImm(LastInst->getOpcode()));
147 Cond.push_back(LastInst->getOperand(0));
165 Cond.push_back(MachineOperand::CreateImm(SecondLastInst->getOpcode()));
166 Cond.push_back(SecondLastInst->getOperand(0));
189 const SmallVectorImpl<MachineOperand> &Cond,
193 assert((Cond.size() == 2 || Cond.size() == 0) &&
197 if (!Cond.empty())
198 Opc = (unsigned)Cond[0].getImm()
    [all...]
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 79 SmallVectorImpl<MachineOperand> &Cond) const {
86 Cond.push_back(MachineOperand::CreateImm(Opc));
89 Cond.push_back(Inst->getOperand(i));
95 SmallVectorImpl<MachineOperand> &Cond,
98 BranchType BT = AnalyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs);
105 const SmallVectorImpl<MachineOperand>& Cond)
107 unsigned Opc = Cond[0].getImm();
111 for (unsigned i = 1; i < Cond.size(); ++i) {
112 if (Cond[i].isReg())
113 MIB.addReg(Cond[i].getReg())
    [all...]
MipsInstrInfo.h 50 SmallVectorImpl<MachineOperand> &Cond,
57 const SmallVectorImpl<MachineOperand> &Cond,
61 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
65 SmallVectorImpl<MachineOperand> &Cond,
100 SmallVectorImpl<MachineOperand> &Cond) const;
103 const SmallVectorImpl<MachineOperand>& Cond) const;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 68 DefinedSVal Cond,
75 ProgramStatePair assumeDual(ProgramStateRef State, DefinedSVal Cond) {
76 ProgramStateRef StTrue = assume(State, Cond, true);
78 // If StTrue is infeasible, asserting the falseness of Cond is unnecessary
86 assert(assume(State, Cond, false) && "System is over constrained.");
91 ProgramStateRef StFalse = assume(State, Cond, false);
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.h 36 ProgramStateRef assume(ProgramStateRef state, DefinedSVal Cond,
39 ProgramStateRef assume(ProgramStateRef state, Loc Cond, bool Assumption);
41 ProgramStateRef assume(ProgramStateRef state, NonLoc Cond, bool Assumption);
89 Loc Cond,
93 NonLoc Cond,
SimpleConstraintManager.cpp 59 DefinedSVal Cond,
61 if (Optional<NonLoc> NV = Cond.getAs<NonLoc>())
63 return assume(state, Cond.castAs<Loc>(), Assumption);
66 ProgramStateRef SimpleConstraintManager::assume(ProgramStateRef state, Loc cond,
68 state = assumeAux(state, cond, assumption);
70 return SU->processAssume(state, cond, assumption);
75 Loc Cond, bool Assumption) {
76 switch (Cond.getSubKind()) {
84 const MemRegion *R = Cond.castAs<loc::MemRegionVal>().getRegion();
106 bool b = Cond.castAs<loc::ConcreteInt>().getValue() != 0
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.cpp 189 SmallVectorImpl<MachineOperand> &Cond,
222 Cond.push_back(MachineOperand::CreateImm(BranchCode));
223 Cond.push_back(LastInst->getOperand(0));
244 Cond.push_back(MachineOperand::CreateImm(BranchCode));
245 Cond.push_back(SecondLastInst->getOperand(0));
277 const SmallVectorImpl<MachineOperand> &Cond,
281 assert((Cond.size() == 2 || Cond.size() == 0) &&
285 if (Cond.empty()) {
290 unsigned Opc = GetCondBranchFromCond((XCore::CondCode)Cond[0].getImm())
    [all...]
XCoreInstrInfo.h 54 SmallVectorImpl<MachineOperand> &Cond,
59 const SmallVectorImpl<MachineOperand> &Cond,
88 SmallVectorImpl<MachineOperand> &Cond) const;
  /external/clang/test/SemaCXX/
vector.cpp 40 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e,
43 __typeof__(Cond? c16 : c16) *c16p1 = &c16;
44 __typeof__(Cond? ll16 : ll16) *ll16p1 = &ll16;
45 __typeof__(Cond? c16e : c16e) *c16ep1 = &c16e;
46 __typeof__(Cond? ll16e : ll16e) *ll16ep1 = &ll16e;
49 __typeof__(Cond? c16 : c16e) *c16ep2 = &c16e;
50 __typeof__(Cond? c16e : c16) *c16ep3 = &c16e;
51 __typeof__(Cond? ll16 : ll16e) *ll16ep2 = &ll16e;
52 __typeof__(Cond? ll16e : ll16) *ll16ep3 = &ll16e;
55 (void)(Cond? c16 : ll16)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXInstrInfo.h 68 SmallVectorImpl<MachineOperand> &Cond,
73 const SmallVectorImpl<MachineOperand> &Cond,
NVPTXInstrInfo.cpp 182 SmallVectorImpl<MachineOperand> &Cond,
200 Cond.push_back(LastInst->getOperand(0));
219 Cond.push_back(SecondLastInst->getOperand(0));
264 const SmallVectorImpl<MachineOperand> &Cond,
268 assert((Cond.size() == 1 || Cond.size() == 0) &&
273 if (Cond.empty()) // Unconditional branch
277 .addReg(Cond[0].getReg()).addMBB(TBB);
283 .addReg(Cond[0].getReg()).addMBB(TBB);
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.h 74 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
78 SmallVectorImpl<MachineOperand> &Cond,
84 const SmallVectorImpl<MachineOperand> &Cond,
MSP430InstrInfo.cpp 127 ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
128 assert(Cond.size() == 1 && "Invalid Xbranch condition!");
130 MSP430CC::CondCodes CC = static_cast<MSP430CC::CondCodes>(Cond[0].getImm());
154 Cond[0].setImm(CC);
172 SmallVectorImpl<MachineOperand> &Cond,
207 Cond.clear();
231 if (Cond.empty()) {
234 Cond.push_back(MachineOperand::CreateImm(BranchCode));
240 assert(Cond.size() == 1);
248 MSP430CC::CondCodes OldBranchCode = (MSP430CC::CondCodes)Cond[0].getImm()
    [all...]
MSP430BranchSelector.cpp 150 SmallVector<MachineOperand, 1> Cond;
151 Cond.push_back(I->getOperand(1));
154 TII->ReverseBranchCondition(Cond);
156 .addImm(4).addOperand(Cond[0]);
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.h 63 SmallVectorImpl<MachineOperand> &Cond,
67 const SmallVectorImpl<MachineOperand> &Cond,
70 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
AArch64InstrInfo.cpp 140 /// setting TBB to the destination basic block and populating the Cond vector
145 SmallVectorImpl<MachineOperand> &Cond) {
154 Cond.push_back(MachineOperand::CreateImm(I->getOpcode()));
155 Cond.push_back(I->getOperand(0));
163 Cond.push_back(MachineOperand::CreateImm(I->getOpcode()));
164 Cond.push_back(I->getOperand(0));
165 Cond.push_back(I->getOperand(1));
177 SmallVectorImpl<MachineOperand> &Cond,
203 classifyCondBranch(LastInst, TBB, Cond);
239 Cond.push_back(MachineOperand::CreateImm(AArch64::Bcc))
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 210 SmallVectorImpl<MachineOperand> &Cond,
242 Cond.push_back(LastInst->getOperand(0));
243 Cond.push_back(LastInst->getOperand(1));
252 Cond.push_back(MachineOperand::CreateImm(1));
253 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
263 Cond.push_back(MachineOperand::CreateImm(0));
264 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
288 Cond.push_back(SecondLastInst->getOperand(0));
289 Cond.push_back(SecondLastInst->getOperand(1));
301 Cond.push_back(MachineOperand::CreateImm(1))
    [all...]
PPCInstrInfo.h 116 SmallVectorImpl<MachineOperand> &Cond,
121 const SmallVectorImpl<MachineOperand> &Cond,
147 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 75 SmallVectorImpl<MachineOperand> &Cond,
82 const SmallVectorImpl<MachineOperand> &Cond,
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 326 /// Select(COND, TRUEVAL, FALSEVAL). If the type of the boolean COND is not
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 59 SmallVectorImpl<MachineOperand> &Cond,
66 const SmallVectorImpl<MachineOperand> &Cond,
117 const SmallVectorImpl<MachineOperand> &Cond) const;
137 ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;

Completed in 3881 milliseconds

1 2 3 4 5 6 7