Checking in changes that:
[repair.git] / Repair / RepairCompiler / MCC / Runtime / size.h
1 #include "specs/x86/cache_aux.h"
2 class typeobject {
3 public:
4 typeobject();
5 int getfield(int type, int fieldindex);
6 int isArray(int type, int fieldindex);
7 int isPtr(int type, int fieldindex);
8 int numElements(int type, int fieldindex);
9 int size(int type);
10 int sizeBytes(int type);
11 int getnumfields(int type);
12 bool issubtype(int subtype, int type);
13 void computesizes(foo_state *);
14 };