Searched defs:fallThrough (Results 1 - 4 of 4) sorted by relevance

/dalvik/vm/compiler/codegen/x86/
H A DLowerInvoke.cpp59 BasicBlock *fallThrough = traceCurrentBB->fallThrough; local
61 if (fallThrough->firstMIRInsn) {
62 assert(fallThrough->firstMIRInsn->OptimizationFlags & MIR_INLINED_PRED);
63 fallThrough = fallThrough->fallThrough;
66 jumpToBasicBlock(stream, fallThrough->id);
576 insertChainingWorklist(traceCurrentBB->fallThrough->id, stream);
577 move_chain_to_mem(OpndSize_32, traceCurrentBB->fallThrough
[all...]
/dalvik/vm/compiler/
H A DCompilerIR.h166 struct BasicBlock *fallThrough; member in struct:BasicBlock
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp1122 ArmLIR *retChainingCell = &labelList[bb->fallThrough->id];
2143 genUnconditionalBranch(cUnit, &labelList[bb->fallThrough->id]);
2643 genUnconditionalBranch(cUnit, &labelList[bb->fallThrough->id]);
2962 BasicBlock *fallThrough = bb->fallThrough; local
2965 if (fallThrough->firstMIRInsn) {
2966 assert(fallThrough->firstMIRInsn->OptimizationFlags & MIR_INLINED_PRED);
2967 fallThrough = fallThrough->fallThrough;
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DCodegenDriver.cpp1172 MipsLIR *retChainingCell = &labelList[bb->fallThrough->id];
2197 genUnconditionalBranch(cUnit, &labelList[bb->fallThrough->id]);
2727 genUnconditionalBranch(cUnit, &labelList[bb->fallThrough->id]);
3061 BasicBlock *fallThrough = bb->fallThrough; local
3064 if (fallThrough->firstMIRInsn) {
3065 assert(fallThrough->firstMIRInsn->OptimizationFlags & MIR_INLINED_PRED);
3066 fallThrough = fallThrough->fallThrough;
[all...]

Completed in 2900 milliseconds