Home | History | Annotate | Download | only in compiler

Lines Matching refs:LIR

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; // Relocatable
214 LIR *chainCellOffsetLIR;
232 LIR *firstChainingLIR[kChainingCellGap];
233 LIR *chainingCellBottom;
235 int optRound; // round number to tell an LIR's age
297 void dvmCompilerAppendLIR(CompilationUnit *cUnit, LIR *lir);
299 void dvmCompilerInsertLIRBefore(LIR *currentLIR, LIR *newLIR);
301 void dvmCompilerInsertLIRAfter(LIR *currentLIR, LIR *newLIR);