Searched refs:currentLabel (Results 1 – 5 of 5) sorted by relevance
53 private final List<Label> currentLabel; field in InstructionsBuilder74 this.currentLabel = new ArrayList<Label>(2); in InstructionsBuilder()93 currentLabel.add(label); in addLabel()105 final int labelCount = currentLabel.size(); in addInstruction()108 LabelInfo.setInstruction(currentLabel.get(i), insn); in addInstruction()110 currentLabel.clear(); in addInstruction()
192 private Label currentLabel; field in Code221 this.currentLabel = new Label(); in Code()222 adopt(this.currentLabel); in Code()223 this.currentLabel.marked = true; in Code()339 if (currentLabel != null) { in mark()342 currentLabel = label; in mark()411 if (currentLabel == null || !currentLabel.marked) { in addInstruction()414 currentLabel.instructions.add(insn); in addInstruction()427 currentLabel = null; in addInstruction()434 currentLabel.primarySuccessor = branch; in addInstruction()[all …]
42 const char* currentLabel = dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL);45 NSAssert(strlen(currentLabel) > 0, @"Label is required for the current queue.");47 return strcmp(targetLabel, currentLabel) == 0;
1169 Label currentLabel = start; in visitMaxs() local1170 while (currentLabel != null) { in visitMaxs()1171 String key = "N" + currentLabel.getOffset(); in visitMaxs()1173 Edge outgoingEdge = currentLabel.outgoingEdges; in visitMaxs()1174 if ((currentLabel.flags & Label.FLAG_SUBROUTINE_CALLER) != 0) { in visitMaxs()1187 currentLabel = currentLabel.nextBasicBlock; in visitMaxs()
2055 Label currentLabel = labels[currentBytecodeOffset]; in readCode() local2056 if (currentLabel != null) { in readCode()2057 currentLabel.accept(methodVisitor, (context.parsingOptions & SKIP_DEBUG) == 0); in readCode()