Home | History | Annotate | Download | only in ssa

Lines Matching defs:Operand

44     private final ArrayList<Operand> operands = new ArrayList<Operand>();
69 * operand and will be derived later.
90 for (Operand o : operands) {
122 * Adds an operand to this phi instruction.
124 * @param registerSpec register spec, including type and reg of operand
125 * @param predBlock predecessor block to be associated with this operand
129 operands.add(new Operand(registerSpec, predBlock.getIndex(),
178 * Gets sources. Constructed lazily from phi operand data structures and
189 // How'd this happen? A phi insn with no operand?
197 Operand o = operands.get(i);
214 for (Operand o : operands) {
233 for (Operand o : operands) {
245 for (Operand o : operands) {
269 * that have {@code reg} as an operand register.
278 for (Operand o : operands) {
356 * A single phi operand, consiting of source register and block index
359 private static class Operand {
364 public Operand(RegisterSpec regSpec, int blockIndex, int ropLabel) {