Home | History | Annotate | Download | only in analysis

Lines Matching defs:newBlock

74     VfyBasicBlock* newBlock = (VfyBasicBlock*) calloc(1, sizeof(VfyBasicBlock));
75 if (newBlock == NULL)
86 newBlock->predecessors = dvmPointerSetAlloc(32);
87 if (newBlock->predecessors == NULL) {
88 free(newBlock);
92 newBlock->firstAddr = (u4) -1; // DEBUG
94 newBlock->liveRegs = dvmAllocBitVector(vdata->insnRegCount, false);
95 if (newBlock->liveRegs == NULL) {
96 dvmPointerSetFree(newBlock->predecessors);
97 free(newBlock);
101 return newBlock;