Lines Matching defs:operands
45 * {@code non-null;} operands of the instruction; built up by
48 private final ArrayList<Operand> operands = new ArrayList<Operand>();
54 * Constructs a new phi insn with no operands.
86 * Updates the TypeBearers of all the sources (phi operands) to be
90 * Note that local association of operands are preserved in this step.
95 for (Operand o : operands) {
134 operands.add(new Operand(registerSpec, predBlock.getIndex(),
148 for (Operand o : operands) {
154 operands.removeAll(operandsToRemove);
168 return operands.get(sourcesIndex).blockIndex;
213 if (operands.size() == 0) {
218 int szSources = operands.size();
222 Operand o = operands.get(i);
239 for (Operand o : operands) {
249 * @return true if all operands use the same register
252 if (operands.size() == 0 ) {
257 int firstReg = operands.get(0).regSpec.getReg();
258 for (Operand o : operands) {
270 for (Operand o : operands) {
293 * Returns the list of predecessor blocks associated with all operands
303 for (Operand o : operands) {
373 + Hex.u2(operands.get(i).ropLabel) + "]");