OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LIR
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp
95
LoopIdiomRecognize &
LIR
;
309
LIR
(TheLIR), CurLoop(TheLIR.getLoop()), PreCondBB(0) {
313
const TargetTransformInfo *TTI =
LIR
.getTargetTransformInfo();
498
ScalarEvolution *SE =
LIR
.getScalarEvolution();
499
TargetLibraryInfo *TLI =
LIR
.getTargetLibraryInfo();
632
if (!
LIR
.getTargetTransformInfo())
635
LIR
.getScalarEvolution();
[
all
...]
/art/compiler/dex/quick/
mir_to_lir.h
111
struct
LIR
{
114
LIR
* next;
115
LIR
* prev;
116
LIR
* target;
120
bool is_nop:1; //
LIR
is optimized away.
138
// Utility macros to traverse the
LIR
list.
139
#define NEXT_LIR(
lir
) (
lir
->next)
140
#define PREV_LIR(
lir
) (
lir
->prev
[
all
...]
/dalvik/vm/compiler/
CompilerIR.h
81
typedef struct
LIR
{
83
struct
LIR
*next;
84
struct
LIR
*prev;
85
struct
LIR
*target;
86
}
LIR
;
125
LIR
*misPredBranchOver;
209
LIR
*firstLIRInsn;
210
LIR
*lastLIRInsn;
211
LIR
*literalList; // Constants
212
LIR
*classPointerList; // Relocatabl
[
all
...]
Completed in 366 milliseconds