Home | History | Annotate | Download | only in compiler

Lines Matching full:curbb

1648     BasicBlock *curBB, *entryCodeBB;
1800 curBB = dvmCompilerNewBB(kEntryBlock, numBlocks++);
1801 dvmInsertGrowableList(blockList, (intptr_t) curBB);
1802 curBB->startOffset = curOffset;
1807 curBB->fallThrough = entryCodeBB;
1808 curBB = entryCodeBB;
1830 dvmCompilerAppendMIR(curBB, insn);
1867 curBB = dvmCompilerNewBB(kDalvikByteCode, numBlocks++);
1868 dvmInsertGrowableList(blockList, (intptr_t) curBB);
1871 curBB->startOffset = curOffset;
1892 curBB = (BasicBlock *) dvmGrowableListGetElement(blockList, blockId);
1893 MIR *lastInsn = curBB->lastMIRInsn;
1904 findBlockBoundary(desc->method, curBB->lastMIRInsn, curOffset,
1933 curBB->taken = searchBB;
1934 dvmCompilerSetBit(searchBB->predecessors, curBB->id);
1937 curBB->fallThrough = searchBB;
1938 dvmCompilerSetBit(searchBB->predecessors, curBB->id);
1957 curBB->needFallThroughBranch =
1997 curBB->fallThrough == NULL) {
2004 if (isInvoke || curBB->needFallThroughBranch) {
2012 curBB->fallThrough = fallThroughBB;
2013 dvmCompilerSetBit(fallThroughBB->predecessors, curBB->id);
2016 if (curBB->taken == NULL &&
2046 if (targetOffset >= curBB->firstMIRInsn->offset &&
2047 targetOffset <= curBB->lastMIRInsn->offset) {
2060 curBB->taken = newBB;
2061 dvmCompilerSetBit(newBB->predecessors, curBB->id);
2068 curBB = dvmCompilerNewBB(kPCReconstruction, numBlocks++);
2069 dvmInsertGrowableList(blockList, (intptr_t) curBB);
2072 curBB = dvmCompilerNewBB(kExceptionHandling, numBlocks++);
2073 dvmInsertGrowableList(blockList, (intptr_t) curBB);
2074 cUnit.puntBlock = curBB;