cc.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Copyright (C) 2016 Jeremiah Orians
  2. * Copyright (C) 2020 deesix <deesix@tuta.io>
  3. * This file is part of M2-Planet.
  4. *
  5. * M2-Planet is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * M2-Planet is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. #include <string.h>
  21. // CONSTANT MAX_STRING 4096
  22. #define MAX_STRING 4096
  23. // CONSTANT FALSE 0
  24. #define FALSE 0
  25. // CONSTANT TRUE 1
  26. #define TRUE 1
  27. // CONSTANT KNIGHT_NATIVE 0
  28. #define KNIGHT_NATIVE 0
  29. // CONSTANT KNIGHT_POSIX 1
  30. #define KNIGHT_POSIX 1
  31. // CONSTANT X86 2
  32. #define X86 2
  33. // CONSTANT AMD64 3
  34. #define AMD64 3
  35. // CONSTANT ARMV7L 4
  36. #define ARMV7L 4
  37. // CONSTANT AARCH64 5
  38. #define AARCH64 5
  39. char* copy_string(char* target, char* source);
  40. int in_set(int c, char* s);
  41. int match(char* a, char* b);
  42. void file_print(char* s, FILE* f);
  43. void require(int bool, char* error);
  44. void reset_hold_string();
  45. struct type
  46. {
  47. struct type* next;
  48. int size;
  49. int offset;
  50. int is_signed;
  51. struct type* indirect;
  52. struct type* members;
  53. struct type* type;
  54. char* name;
  55. };
  56. struct token_list
  57. {
  58. struct token_list* next;
  59. union
  60. {
  61. struct token_list* locals;
  62. struct token_list* prev;
  63. };
  64. char* s;
  65. union
  66. {
  67. struct type* type;
  68. char* filename;
  69. };
  70. union
  71. {
  72. struct token_list* arguments;
  73. int depth;
  74. int linenumber;
  75. };
  76. };
  77. /* What types we have */
  78. struct type* global_types;
  79. struct type* prim_types;
  80. /* What we are currently working on */
  81. struct token_list* global_token;
  82. /* Output reorder collections*/
  83. struct token_list* output_list;
  84. struct token_list* strings_list;
  85. struct token_list* globals_list;
  86. /* Make our string collection more efficient */
  87. char* hold_string;
  88. int string_index;
  89. /* Our Target Architecture */
  90. int Architecture;
  91. int register_size;