JVM_STORAGE_UNKNOWN,
JVM_STORAGE_REGISTER,
JVM_STORAGE_STATIC,
- JVM_STORAGE_FIELD
+ JVM_STORAGE_FIELD,
+ JVM_STORAGE_LOCAL,
+ JVM_STORAGE_VARPTR
};
{
int rec_id;
struct gen_class * class;
+
+ bool wide;
+ char prefix;
+ char postfix;
+ char * desc;
+ int cell_size;
};
struct gen_var_t
{
enum gen_storage storage;
+ gen_type_t * type;
int reg;
char * full_name;
- char * desc;
};
struct gen_context_t
struct gen_class * class;
int rec_id;
};
+
+struct gen_label_t
+{
+ int id;
+};