Home | History | Annotate | Download | only in code

Lines Matching defs:label

32      * block (indexed by basic block label) */
36 * of each basic block (indexed by basic block label) */
41 * label) */
71 * Gets the instance for the start of the block with the given label.
73 * @param label {@code non-null;} the label of the block in question
76 public CodeAddress getStart(int label) {
77 return starts[label];
92 * the given label.
94 * @param label {@code non-null;} the label of the block in question
97 public CodeAddress getLast(int label) {
98 return lasts[label];
114 * of the block with the given label.
116 * @param label {@code non-null;} the label of the block in question
119 public CodeAddress getEnd(int label) {
120 return ends[label];
132 int label = one.getLabel();
135 starts[label] = new CodeAddress(insn.getPosition());
139 lasts[label] = new CodeAddress(pos);
140 ends[label] = new CodeAddress(pos);