OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Insts
(Results
1 - 11
of
11
) sorted by null
/external/llvm/lib/Target/Mips/
MipsAnalyzeImmediate.h
54
/// return it in
Insts
.
55
void GetShortestSeq(InstSeqLs &SeqLs, InstSeq &
Insts
);
59
InstSeq
Insts
;
/external/llvm/include/llvm/MC/
MCFunction.h
34
const MCTextAtom *
Insts
;
39
MCBasicBlock(const MCTextAtom &
Insts
, MCFunction *Parent);
50
const MCTextAtom *getInsts() const { return
Insts
; }
92
/// \brief Create an MCBasicBlock backed by
Insts
and add it to this function.
93
/// \param
Insts
Sequence of straight-line code backing the basic block.
95
MCBasicBlock &createBlock(const MCTextAtom &
Insts
);
MCAtom.h
124
InstListTy
Insts
;
136
const_iterator begin() const { return
Insts
.begin(); }
137
const_iterator end() const { return
Insts
.end(); }
139
const MCDecodedInst &back() const { return
Insts
.back(); }
140
const MCDecodedInst &at(size_t n) const { return
Insts
.at(n); }
141
uint64_t size() const { return
Insts
.size(); }
/external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp
275
std::vector<Record*>
Insts
;
280
Insts
.push_back(I->second);
284
for (unsigned i = 0, e =
Insts
.size(); i != e; ++i)
285
evaluateExpansion(
Insts
[i]);
CodeEmitterGen.cpp
46
void reverseBits(std::vector<Record*> &
Insts
);
56
void CodeEmitterGen::reverseBits(std::vector<Record*> &
Insts
) {
57
for (std::vector<Record*>::iterator I =
Insts
.begin(), E =
Insts
.end();
238
std::vector<Record*>
Insts
= Records.getAllDerivedDefinitions("Instruction");
241
if (Target.isLittleEndianEncoding()) reverseBits(
Insts
);
286
for (std::vector<Record*>::iterator IC =
Insts
.begin(), EC =
Insts
.end();
CodeGenTarget.cpp
264
std::vector<Record*>
Insts
= Records.getAllDerivedDefinitions("Instruction");
265
if (
Insts
.size() <= 2)
269
for (unsigned i = 0, e =
Insts
.size(); i != e; ++i)
270
Instructions[
Insts
[i]] = new CodeGenInstruction(
Insts
[i]);
275
const DenseMap<const Record*, CodeGenInstruction*> &
Insts
,
280
I =
Insts
.find(Rec);
281
if (Rec == 0 || I ==
Insts
.end())
321
const DenseMap<const Record*, CodeGenInstruction*> &
Insts
= getInstructions();
323
const CodeGenInstruction *Instr = GetInstByName(*p,
Insts
, Records)
[
all
...]
/external/llvm/tools/bugpoint/
CrashDebugger.cpp
380
&
Insts
) {
387
for (unsigned i = 0, e =
Insts
.size(); i != e; ++i) {
388
assert(!isa<TerminatorInst>(
Insts
[i]));
389
Instructions.insert(cast<Instruction>(VMap[
Insts
[i]]));
421
Insts
.clear();
424
Insts
.push_back(*I);
528
std::vector<const Instruction*>
Insts
;
536
Insts
.push_back(I);
538
ReduceCrashingInstructions(BD, TestFn).reduceList(
Insts
, Error);
/external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h
64
Instructions
Insts
;
219
unsigned size() const { return (unsigned)
Insts
.size(); }
220
bool empty() const { return
Insts
.empty(); }
222
MachineInstr& front() { return
Insts
.front(); }
223
MachineInstr& back() { return
Insts
.back(); }
224
const MachineInstr& front() const { return
Insts
.front(); }
225
const MachineInstr& back() const { return
Insts
.back(); }
227
instr_iterator instr_begin() { return
Insts
.begin(); }
228
const_instr_iterator instr_begin() const { return
Insts
.begin(); }
229
instr_iterator instr_end() { return
Insts
.end();
[
all
...]
/external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp
312
UnswitchedValsMap &
Insts
= OldLoopProps.UnswitchedVals;
326
for (UnswitchedValsIt I =
Insts
.begin(); I !=
Insts
.end(); ++I) {
[
all
...]
ScalarReplAggregates.cpp
[
all
...]
SROA.cpp
736
AllocaPromoter(const SmallVectorImpl<Instruction*> &
Insts
, SSAUpdater &S,
738
: LoadAndStorePromoter(
Insts
, S), AI(AI), DIB(DIB) {}
740
void run(const SmallVectorImpl<Instruction*> &
Insts
) {
753
LoadAndStorePromoter::run(
Insts
);
764
const SmallVectorImpl<Instruction*> &
Insts
) const {
[
all
...]
Completed in 2058 milliseconds