Home
last modified time | relevance | path

Searched refs:InstI (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DConstantsScanner.h27 const_inst_iterator InstI; // Method instruction iterator variable
33 assert(!InstI.atEnd() && OpIdx < InstI->getNumOperands() && in isAtConstant()
35 return isa<Constant>(InstI->getOperand(OpIdx)); in isAtConstant()
39 inline constant_iterator(const Function *F) : InstI(inst_begin(F)), OpIdx(0) { in constant_iterator()
41 if (InstI != inst_end(F) && // InstI is valid? in constant_iterator()
42 (InstI->getNumOperands() == 0 || !isAtConstant())) // Not at constant? in constant_iterator()
47 : InstI(inst_end(F)), OpIdx(0) { in constant_iterator()
51 InstI == x.InstI; }
56 return cast<Constant>(InstI->getOperand(OpIdx));
63 unsigned NumOperands = InstI->getNumOperands();
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.td1656 def SVC : InstI<0x0A, (outs), (ins imm32zx8:$I1),
DSystemZInstrFormats.td161 class InstI<bits<8> op, dag outs, dag ins, string asmstr, list<dag> pattern>