OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InstList
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
Legalizer.cpp
113
InstListTy &
InstList
;
121
:
InstList
(Insts), ArtifactList(Arts) {}
131
InstList
.insert(&MI);
150
InstList
.remove(&MI);
176
InstListTy
InstList
;
193
InstList
.deferred_insert(&MI);
197
InstList
.finalize();
200
LegalizerWorkListManager WorkListObserver(
InstList
, ArtifactList);
221
while (!
InstList
.empty()) {
222
MachineInstr &MI = *
InstList
.pop_back_val()
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
BasicBlock.h
67
InstListType
InstList
;
296
inline iterator begin() { return
InstList
.begin(); }
297
inline const_iterator begin() const { return
InstList
.begin(); }
298
inline iterator end () { return
InstList
.end(); }
299
inline const_iterator end () const { return
InstList
.end(); }
301
inline reverse_iterator rbegin() { return
InstList
.rbegin(); }
302
inline const_reverse_iterator rbegin() const { return
InstList
.rbegin(); }
303
inline reverse_iterator rend () { return
InstList
.rend(); }
304
inline const_reverse_iterator rend () const { return
InstList
.rend(); }
306
inline size_t size() const { return
InstList
.size();
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
WasmEHPrepare.cpp
202
auto &
InstList
= BB->getInstList();
203
InstList
.erase(std::next(BasicBlock::iterator(ThrowI)),
InstList
.end());
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeEmitterGen.cpp
501
std::vector<std::string> &
InstList
= IE->second;
503
for (int i = 0, N =
InstList
.size(); i < N; i++) {
505
o << " case " <<
InstList
[i] << ":";
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DDG.h
118
InstList
= N.
InstList
;
124
InstList
= std::move(N.
InstList
);
130
assert(!
InstList
.empty() && "Instruction List is empty.");
131
return
InstList
;
152
setKind((
InstList
.size() == 0 && Input.size() == 1)
155
llvm::append_range(
InstList
, Input);
162
SmallVector<Instruction *, 2>
InstList
;
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsRegisterBankInfo.cpp
679
InstListTy &
InstList
;
682
InstManager(InstListTy &Insts) :
InstList
(Insts) {}
684
void createdInstr(MachineInstr &MI) override {
InstList
.insert(&MI); }
Completed in 60 milliseconds
Indexes created Wed Jun 10 00:26:05 UTC 2026