comparison graal/com.oracle.max.cri/src/com/sun/cri/xir/CiXirAssembler.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
37 public abstract class CiXirAssembler { 37 public abstract class CiXirAssembler {
38 38
39 protected XirOperand resultOperand; 39 protected XirOperand resultOperand;
40 protected boolean allocateResultOperand; 40 protected boolean allocateResultOperand;
41 41
42 protected final List<XirInstruction> instructions = new ArrayList<XirInstruction>(); 42 protected final List<XirInstruction> instructions = new ArrayList<>();
43 protected final List<XirLabel> labels = new ArrayList<XirLabel>(5); 43 protected final List<XirLabel> labels = new ArrayList<>(5);
44 protected final List<XirParameter> parameters = new ArrayList<XirParameter>(5); 44 protected final List<XirParameter> parameters = new ArrayList<>(5);
45 protected final List<XirTemp> temps = new ArrayList<XirTemp>(5); 45 protected final List<XirTemp> temps = new ArrayList<>(5);
46 protected final List<XirConstant> constants = new ArrayList<XirConstant>(5); 46 protected final List<XirConstant> constants = new ArrayList<>(5);
47 protected final List<XirMark> marks = new ArrayList<XirMark>(5); 47 protected final List<XirMark> marks = new ArrayList<>(5);
48 48
49 protected int outgoingStackSize = 0; 49 protected int outgoingStackSize = 0;
50 50
51 /** 51 /**
52 * Increases by one for every {@link XirOperand operand} created. 52 * Increases by one for every {@link XirOperand operand} created.