HomeSort by relevance Sort by last modified time
    Searched defs:InstList (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/IR/
BasicBlock.h 78 InstListType InstList;
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.size();
    [all...]
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 313 std::vector<std::string> &InstList = IE->second;
315 for (int i = 0, N = InstList.size(); i < N; i++) {
317 o << " case " << InstList[i] << ":";
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 774 BasicBlock::InstListType &InstList = (*PI)->getInstList();
775 BasicBlock::InstListType::reverse_iterator RI = InstList.rbegin();
776 BasicBlock::InstListType::reverse_iterator RE = InstList.rend();
    [all...]

Completed in 189 milliseconds