00001 package ca.mcgill.sable.soot.jimple;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082 import ca.mcgill.sable.soot.*;
00083 import ca.mcgill.sable.util.*;
00084
00085 public class AbstractNewMultiArrayExpr implements NewMultiArrayExpr
00086 {
00087 ArrayType baseType;
00088 protected ValueBox[] sizeBoxes;
00089
00090 protected AbstractNewMultiArrayExpr(ArrayType type, ValueBox[] sizeBoxes)
00091 {
00092 this.baseType = type; this.sizeBoxes = sizeBoxes;
00093 }
00094 public void apply(Switch sw)
00095 {
00096 ((ExprSwitch) sw).caseNewMultiArrayExpr(this);
00097 }
00098 public ArrayType getBaseType()
00099 {
00100 return baseType;
00101 }
00102 public Value getSize(int index)
00103 {
00104 return sizeBoxes[index].getValue();
00105 }
00106 public ValueBox getSizeBox(int index)
00107 {
00108 return sizeBoxes[index];
00109 }
00110 public int getSizeCount()
00111 {
00112 return sizeBoxes.length;
00113 }
00114 public List getSizes()
00115 {
00116 List toReturn = new ArrayList();
00117
00118 for(int i = 0; i < sizeBoxes.length; i++)
00119 toReturn.add(sizeBoxes[i].getValue());
00120
00121 return toReturn;
00122 }
00123 public Type getType()
00124 {
00125 return baseType;
00126 }
00127 public List getUseBoxes()
00128 {
00129 List list = new ArrayList();
00130
00131 for(int i = 0; i < sizeBoxes.length; i++)
00132 {
00133 list.addAll(sizeBoxes[i].getValue().getUseBoxes());
00134 list.add(sizeBoxes[i]);
00135 }
00136
00137 return list;
00138 }
00139 public void setBaseType(ArrayType baseType)
00140 {
00141 this.baseType = baseType;
00142 }
00143 public void setSize(int index, Value size)
00144 {
00145 sizeBoxes[index].setValue(size);
00146 }
00147 public String toBriefString()
00148 {
00149 StringBuffer buffer = new StringBuffer();
00150
00151 buffer.append("new " + baseType.baseType.toString());
00152
00153 for(int i = 0; i < sizeBoxes.length; i++)
00154 buffer.append("[" + ((ToBriefString) sizeBoxes[i].getValue()).toBriefString() + "]");
00155
00156 for(int i = 0; i < baseType.numDimensions - sizeBoxes.length; i++)
00157 buffer.append("[]");
00158
00159 return buffer.toString();
00160 }
00161 public String toString()
00162 {
00163 StringBuffer buffer = new StringBuffer();
00164
00165 buffer.append("newmulti " + baseType.baseType.toString());
00166
00167 for(int i = 0; i < sizeBoxes.length; i++)
00168 buffer.append("[" + sizeBoxes[i].getValue().toString() + "]");
00169
00170 for(int i = 0; i < baseType.numDimensions - sizeBoxes.length; i++)
00171 buffer.append("[]");
00172
00173 return buffer.toString();
00174 }
00175 }