Add support for 'static' fields in multicore gc version w/o tasks. Now we can have...
[IRC.git] / Robust / src / IR / FieldDescriptor.java
1 package IR;
2 import IR.Tree.Modifiers;
3 import IR.Tree.ExpressionNode;
4
5 /**
6  * Descriptor
7  *
8  * represents a symbol in the language (var name, function name, etc).
9  */
10
11 public class FieldDescriptor extends Descriptor {
12
13   public static FieldDescriptor arrayLength=new FieldDescriptor(new Modifiers(Modifiers.PUBLIC|Modifiers.FINAL), new TypeDescriptor(TypeDescriptor.INT), "length", null, false);
14
15   protected Modifiers modifier;
16   protected TypeDescriptor td;
17   protected String identifier;
18   protected ExpressionNode en;
19   private boolean isglobal;
20
21   public FieldDescriptor(Modifiers m, TypeDescriptor t, String identifier, ExpressionNode e, boolean isglobal) {
22     super(identifier);
23     this.modifier=m;
24     this.td=t;
25     this.en=e;
26     this.safename = "___" + name + "___";
27     this.uniqueid=count++;
28     this.isglobal=isglobal;
29     if (en!=null) throw new Error("Field initializers not implemented");
30   }
31
32   public boolean isStatic() {
33     return modifier.isStatic();
34   }
35   
36   public boolean isGlobal() {
37     return isglobal;
38   }
39
40   public TypeDescriptor getType() {
41     return td;
42   }
43
44   public String toString() {
45     if (en==null)
46       return modifier.toString()+td.toString()+" "+getSymbol()+";";
47     else
48       return modifier.toString()+td.toString()+" "+getSymbol()+"="+en.printNode(0)+";";
49   }
50
51   public String toStringBrief() {
52     return td.toString()+" "+getSymbol();
53   }
54
55   public String toPrettyStringBrief() {
56     return td.toPrettyString()+" "+getSymbol();
57   }
58 }