Searched defs:InstList (Results 1 - 3 of 3) sorted by relevance

/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp294 std::vector<std::string> &InstList = IE->second; local
296 for (int i = 0, N = InstList.size(); i < N; i++) {
298 o << " case " << InstList[i] << ":"; local
/external/llvm/include/llvm/IR/
H A DBasicBlock.h59 InstListType InstList; member in class:llvm::BasicBlock
219 inline iterator begin() { return InstList.begin(); }
220 inline const_iterator begin() const { return InstList.begin(); }
221 inline iterator end () { return InstList.end(); }
222 inline const_iterator end () const { return InstList.end(); }
224 inline reverse_iterator rbegin() { return InstList.rbegin(); }
225 inline const_reverse_iterator rbegin() const { return InstList.rbegin(); }
226 inline reverse_iterator rend () { return InstList.rend(); }
227 inline const_reverse_iterator rend () const { return InstList.rend(); }
229 inline size_t size() const { return InstList
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1970 BasicBlock::InstListType &InstList = (*PI)->getInstList(); local
1971 BasicBlock::InstListType::reverse_iterator RI = InstList.rbegin();
1972 BasicBlock::InstListType::reverse_iterator RE = InstList.rend();

Completed in 242 milliseconds