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

/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp308 std::vector<std::string> &InstList = IE->second; local
310 for (int i = 0, N = InstList.size(); i < N; i++) {
312 o << " case " << InstList[i] << ":"; local
/external/llvm/include/llvm/IR/
H A DBasicBlock.h78 InstListType InstList; member in class:llvm::BasicBlock
198 inline iterator begin() { return InstList.begin(); }
199 inline const_iterator begin() const { return InstList.begin(); }
200 inline iterator end () { return InstList.end(); }
201 inline const_iterator end () const { return InstList.end(); }
203 inline reverse_iterator rbegin() { return InstList.rbegin(); }
204 inline const_reverse_iterator rbegin() const { return InstList.rbegin(); }
205 inline reverse_iterator rend () { return InstList.rend(); }
206 inline const_reverse_iterator rend () const { return InstList.rend(); }
208 inline size_t size() const { return InstList
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp984 BasicBlock::InstListType &InstList = (*PI)->getInstList(); local
985 BasicBlock::InstListType::reverse_iterator RI = InstList.rbegin();
986 BasicBlock::InstListType::reverse_iterator RE = InstList.rend();

Completed in 250 milliseconds