OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstList
(Results
1 - 4
of
4
) 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/lib/IR/
BasicBlock.cpp
82
InstList
.clear();
90
InstList
.setSymTabObject(&Parent, parent);
121
if (
InstList
.empty()) return 0;
122
return dyn_cast<TerminatorInst>(&
InstList
.back());
126
if (
InstList
.empty()) return 0;
127
return dyn_cast<TerminatorInst>(&
InstList
.back());
222
if (
InstList
.empty()) return;
300
assert(I !=
InstList
.end() &&
/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 85 milliseconds