Home | History | Annotate | Download | only in compiler

Lines Matching refs:tempBlockV

235     BitVector *tempBlockV = cUnit->tempBlockV;
244 dvmSetInitialBits(tempBlockV, numTotalBlocks);
253 /* tempBlockV = tempBlockV ^ dominators */
254 dvmIntersectBitVectors(tempBlockV, tempBlockV, predBB->dominators);
256 dvmSetBit(tempBlockV, bb->id);
257 if (dvmCompareBitVectors(tempBlockV, bb->dominators)) {
258 dvmCopyBitVector(bb->dominators, tempBlockV);
268 BitVector *tempBlockV = cUnit->tempBlockV;
274 dvmCopyBitVector(tempBlockV, bb->dominators);
275 dvmClearBit(tempBlockV, bb->id);
276 dvmBitVectorIteratorInit(tempBlockV, &bvIterator);
279 assert(dvmCountSetBits(tempBlockV) != 0);
280 if (dvmCountSetBits(tempBlockV) == 1) {
322 if (cUnit->tempBlockV == NULL) {
323 cUnit->tempBlockV = dvmCompilerAllocBitVector(numTotalBlocks,
326 dvmClearAllBits(cUnit->tempBlockV);