DataType.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #ifndef DATATYPE_H
  2. #define DATATYPE_H
  3. #include <stdbool.h>
  4. #define DT_INT 0
  5. #define DT_LONG 1
  6. #define DT_FLOAT 2
  7. #define DT_BOOL 3
  8. #define DT_VOID 4
  9. #define DT_STRUCT 5
  10. typedef struct {
  11. unsigned int type : 4;
  12. unsigned int pointers : 4;
  13. unsigned int structId : 24;
  14. } DataType;
  15. typedef struct {
  16. const char* name;
  17. DataType type;
  18. } StructVariable;
  19. typedef struct {
  20. const char* name;
  21. int id;
  22. int amount;
  23. StructVariable* vars;
  24. } Struct;
  25. typedef struct {
  26. int capacity;
  27. int entries;
  28. Struct* data;
  29. } Structs;
  30. typedef struct {
  31. int array;
  32. int offset;
  33. } Pointer;
  34. int dtGetSize(DataType dt, Structs* sts);
  35. DataType dtInt();
  36. DataType dtLong();
  37. DataType dtFloat();
  38. DataType dtBool();
  39. DataType dtVoid();
  40. DataType dtStruct(Struct* st);
  41. DataType dtReference(DataType dt);
  42. bool dtDereference(DataType* dt);
  43. Struct* dtGetStruct(Structs* sts, DataType dt);
  44. DataType dtToVariable(DataType dt);
  45. bool dtRemoveVariable(DataType* dt);
  46. bool dtCompare(DataType a, DataType b);
  47. bool dtIsInt(DataType dt);
  48. bool dtIsLong(DataType dt);
  49. bool dtIsFloat(DataType dt);
  50. bool dtIsBool(DataType dt);
  51. bool dtIsVoid(DataType dt);
  52. bool dtIsPointer(DataType dt);
  53. bool dtIsVariable(DataType dt);
  54. const char* dtGetName(Structs* sts, DataType dt);
  55. void stAddVariable(Struct* st, const char* name, DataType type);
  56. void stsInit(Structs* sts);
  57. void stsDelete(Structs* sts);
  58. Struct* stsSearch(Structs* sts, const char* name);
  59. Struct* stsAdd(Structs* sts, const char* name);
  60. #endif