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

/external/llvm/include/llvm/IR/
H A DBasicBlock.h78 InstListType InstList; member in class:llvm::BasicBlock
193 inline iterator begin() { return InstList.begin(); }
194 inline const_iterator begin() const { return InstList.begin(); }
195 inline iterator end () { return InstList.end(); }
196 inline const_iterator end () const { return InstList.end(); }
198 inline reverse_iterator rbegin() { return InstList.rbegin(); }
199 inline const_reverse_iterator rbegin() const { return InstList.rbegin(); }
200 inline reverse_iterator rend () { return InstList.rend(); }
201 inline const_reverse_iterator rend () const { return InstList.rend(); }
203 inline size_t size() const { return InstList
[all...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp313 std::vector<std::string> &InstList = IE->second; local
315 for (int i = 0, N = InstList.size(); i < N; i++) {
317 o << " case " << InstList[i] << ":"; local
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp774 BasicBlock::InstListType &InstList = (*PI)->getInstList(); local
775 BasicBlock::InstListType::reverse_iterator RI = InstList.rbegin();
776 BasicBlock::InstListType::reverse_iterator RE = InstList.rend();

Completed in 4766 milliseconds