Home | History | Annotate | Download | only in code

Lines Matching defs:label

30     /** {@code >= 0;} label for the block which starts the method */
35 * label
49 * @param firstLabel {@code >= 0;} the label of the first block to execute
77 * Gets the label for the first block in the method that this list
80 * @return {@code >= 0;} the first-block label
88 * an exception if there is no block with the given label.
90 * @param label {@code >= 0;} the label of the block in question
93 public IntList labelToPredecessors(int label) {
98 IntList result = predecessors[label];
101 throw new RuntimeException("no such block: " + Hex.u2(label));
158 * For each block, find its successors, and add the block's label to
163 int label = one.getLabel();
168 exitPredecessors.add(label);
177 succPreds.add(label);
195 * The start label might not ever have had any predecessors