]> Shamusworld >> Repos - rmac/blob - rmac.h
Various 020+ fixes. In brief, this commit fixes the following:
[rmac] / rmac.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // RMAC.H - Main Application Code
4 // Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilised with the kind permission of Landon Dyer
7 //
8
9 #ifndef __RMAC_H__
10 #define __RMAC_H__
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <ctype.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18
19 //
20 // TARGET SPECIFIC BUILD SETTINGS
21 //
22 #if defined(WIN32) || defined (WIN64)
23         #include <io.h>
24         #include <fcntl.h>
25         // Release platform - windows
26         #define PLATFORM        "Win32"
27         #define _OPEN_FLAGS     _O_TRUNC|_O_CREAT|_O_BINARY|_O_RDWR
28         #define _OPEN_INC       _O_RDONLY|_O_BINARY
29         #define _PERM_MODE      _S_IREAD|_S_IWRITE
30         #ifdef _MSC_VER
31                 #if _MSC_VER > 1000
32                         #pragma warning(disable:4996)
33                 #endif
34
35         // Makes warnings double clickable on visual studio (ggn)
36         #define STRINGIZE_HELPER(x) #x
37         #define STRINGIZE(x) STRINGIZE_HELPER(x)
38         #define WARNING(desc) __pragma(message(__FILE__ "(" STRINGIZE(__LINE__) ") : Warning: " #desc))
39         #define inline __inline
40
41         // usage:
42         // WARNING(FIXME: Code removed because...)
43
44         #else
45         // If we're not compiling for Visual Studio let's assume that we're using
46         // some flavour of gcc instead. So let's use the gcc compliant macro
47         // instead. If some weirdo uses something else (I dunno, Intel compiler or
48         // something?) this is probably going to explode spectacularly. Let's wait
49         // for the fireworks!
50         #define DO_PRAGMA(x) _Pragma (#x)
51         #define WARNING(desc) DO_PRAGMA(message (#desc))
52
53         #endif
54
55 #else
56
57         #ifdef __GCCUNIX__
58
59         #include <sys/fcntl.h>
60         #include <unistd.h>
61         // Release platform - mac OS-X or Linux
62         #define PLATFORM        "OSX/Linux"
63         #define _OPEN_FLAGS     O_TRUNC|O_CREAT|O_RDWR
64         #define _OPEN_INC       O_RDONLY
65         #define _PERM_MODE      S_IRUSR|S_IWUSR
66
67         #ifdef __MINGW32__
68         #define off64_t long
69         #define off_t long
70         #undef _OPEN_FLAGS
71         #undef _OPEN_INC
72         #define _OPEN_FLAGS     _O_TRUNC|_O_CREAT|_O_BINARY|_O_RDWR
73         #define _OPEN_INC       O_RDONLY|_O_BINARY
74         #endif
75
76         // WARNING WARNING WARNING
77         #define DO_PRAGMA(x) _Pragma (#x)
78         #define WARNING(desc) DO_PRAGMA(message (#desc))
79 #else
80         // Release platform - not specified
81         #include <sys/fcntl.h>
82         #define PLATFORM        "Unknown"
83         #define _OPEN_FLAGS     O_TRUNC|O_CREAT|O_RDWR
84         #define _OPEN_INC       O_RDONLY
85         #define _PERM_MODE      S_IREAD|S_IWRITE
86         // Defined here, even though the platform may not support it...
87         #define DO_PRAGMA(x) _Pragma (#x)
88         #define WARNING(desc) DO_PRAGMA(message (#desc))
89         #endif
90 #endif
91
92 //
93 // Endian related, for safe handling of endian-sensitive data
94 // USAGE: GETBExx() is *always* an rvalue, a = pointer to a uint8_t,
95 //        r = offset from 0. SETBExx(), v = value to write into 'a'
96 //
97 #define GETBE16(a, r) \
98         (((uint16_t)(a)[(r + 0)] << 8) | ((uint16_t)(a)[(r + 1)]))
99
100 #define GETBE32(a, r) \
101         (((uint32_t)(a)[(r + 0)] << 24) | ((uint32_t)(a)[(r + 1)] << 16) \
102         | ((uint32_t)(a)[(r + 2)] << 8) | ((uint32_t)(a)[(r + 3)]))
103
104 #define GETBE64(a, r) \
105         (((uint64_t)(a)[(r + 0)] << 56) | ((uint64_t)(a)[(r + 1)] << 48) \
106         | ((uint64_t)(a)[(r + 2)] << 40) | ((uint64_t)(a)[(r + 3)] << 32) \
107         | ((uint64_t)(a)[(r + 4)] << 24) | ((uint64_t)(a)[(r + 5)] << 16) \
108         | ((uint64_t)(a)[(r + 6)] << 8) | ((uint64_t)(a)[(r + 7)]))
109
110 #define SETBE16(a, r, v) \
111         { (a)[(r + 0)] = (uint8_t)((v) >> 8); \
112         (a)[(r + 1)] = (uint8_t)((v) & 0xFF); }
113
114 #define SETBE32(a, r, v) \
115         { (a)[(r + 0)] = (uint8_t)((v) >> 24); \
116         (a)[(r + 1)] = (uint8_t)(((v) >> 16) & 0xFF); \
117         (a)[(r + 2)] = (uint8_t)(((v) >> 8) & 0xFF); \
118         (a)[(r + 3)] = (uint8_t)((v) & 0xFF); }
119
120 #define SETBE64(a, r, v) \
121         { (a)[(r + 0)] = (uint8_t)((v) >> 56); \
122         (a)[(r + 1)] = (uint8_t)(((v) >> 48) & 0xFF); \
123         (a)[(r + 2)] = (uint8_t)(((v) >> 40) & 0xFF); \
124         (a)[(r + 3)] = (uint8_t)(((v) >> 32) & 0xFF); \
125         (a)[(r + 4)] = (uint8_t)(((v) >> 24) & 0xFF); \
126         (a)[(r + 5)] = (uint8_t)(((v) >> 16) & 0xFF); \
127         (a)[(r + 6)] = (uint8_t)(((v) >> 8) & 0xFF); \
128         (a)[(r + 7)] = (uint8_t)((v) & 0xFF); }
129
130 // In 6502 mode, turns out we need this:
131 #define SETLE16(a, r, v) \
132         { (a)[(r + 0)] = (uint8_t)((v) & 0xFF); \
133         (a)[(r + 1)] = (uint8_t)((v) >> 8); }
134
135 // Byteswap crap
136 #define BYTESWAP16(x) ((((x) & 0x00FF) << 8) | (((x) & 0xFF00) >> 8))
137 #define BYTESWAP32(x) ((((x) & 0x000000FF) << 24) | (((x) & 0x0000FF00) << 8) | (((x) & 0x00FF0000) >> 8) | (((x) & 0xFF000000) >> 24))
138 #define WORDSWAP32(x) ((((x) & 0x0000FFFF) << 16) | (((x) & 0xFFFF0000) >> 16))
139
140 //
141 // Non-target specific stuff
142 //
143 #include <inttypes.h>
144 #include "symbol.h"
145
146 #define BYTE         uint8_t
147 #define WORD         uint16_t
148 #define LONG         uint32_t
149 #define VOID         void
150
151 #define ERROR        (-1)               // Generic error return
152 #define EOS          '\0'               // End of string
153 #define SPACE        ' '                // ASCII space
154 #define SLASHCHAR    '/'
155 #define SLASHSTRING  "/"
156 #define VALUE        uint32_t   // Assembler value
157 #define TOKEN        uint32_t   // Assembler token
158 #define FNSIZ        128                // Maximum size of a filename
159 #define OK           0                  // OK return
160 #define DEBUG        if (debug) // Debug conditional
161 #define MAXARGV      100                // Maximum number of commandline args
162 #define STDOUT       1                  // Standard output
163 #define ERROUT       2                  // Error output
164 #define CREATMASK    0
165
166 // Object code formats
167 #define ALCYON       0                  // Alcyon/DRI C object format
168 #define MWC          1                  // Mark Williams object format
169 #define BSD          2                  // BSD object format
170 #define ELF          3                  // ELF object format
171 #define XEX          4                  // COM/EXE/XEX/whatever a8 object format
172
173 // Pointer type that can point to (almost) anything
174 #define PTR union _ptr
175 PTR
176 {
177         uint8_t * cp;                           // Char
178         uint16_t * wp;                          // WORD
179         uint32_t * lp;                          // LONG
180         uint32_t lw;                            // LONG
181         SYM ** sy;                                      // SYM
182         TOKEN * tk;                                     // TOKEN
183 };
184
185 // Symbol spaces
186 #define LABEL        0                  // User-defined symbol
187 #define MACRO        1                  // Macro definition
188 #define MACARG       2                  // Macro argument
189 #define SY_UNDEF     -1                 // Undefined (lookup never matches it)
190
191 // Symbol and expression attributes
192 #define DEFINED      0x8000             // Symbol has been defined
193 #define GLOBAL       0x4000             // Symbol has been .GLOBL'd
194 #define COMMON       0x2000             // Symbol has been .COMM'd
195 #define REFERENCED   0x1000             // Symbol has been referenced
196 #define EQUATED      0x0800             // Symbol was equated
197 #define SDECLLIST    0x0400             // Symbol is on 'sdecl'-order list
198
199 // Expression spaces, ORed with symbol and expression attributes above
200 #define ABS          0x0000             // In absolute space
201 #define TEXT         0x0001             // Relative to text
202 #define DATA         0x0002             // Relative to data
203 #define BSS          0x0004             // Relative to BSS
204 #define M6502        0x0008             // 6502/microprocessor (absolute)
205 #define TDB          (TEXT|DATA|BSS)    // Mask for text+data+bss
206
207 // Sizes
208 #define SIZB         0x0001             // .b
209 #define SIZW         0x0002             // .w
210 #define SIZL         0x0004             // .l
211 #define SIZN         0x0008             // no .(size) specifier
212 #define SIZD         0x0010             // .d (quad word or FPU double precision real)
213 #define SIZS         0x0020             // .s (FPU single precision real)
214 #define SIZX         0x0040             // .x (FPU extended precision real)
215 #define SIZP         0x0080             // .p (FPU pakced decimal real)
216 #define SIZQ         SIZD
217
218 // RISC register bank definitions (used in extended symbol attributes also)
219 #define BANK_N       0x0000             // No register bank specified
220 #define BANK_0       0x0001             // Register bank zero specified
221 #define BANK_1       0x0002             // Register bank one specified
222 #define EQUATEDREG   0x0008             // Equated register symbol
223 #define UNDEF_EQUR   0x0010
224 #define EQUATEDCC    0x0020
225 #define UNDEF_CC     0x0040
226
227 // Construct binary constants at compile time
228 // Code by Tom Torfs
229
230 // Helper macros
231 #define HEX__(n) 0x##n##LU
232 #define B8__(x) \
233  ((x&0x0000000FLU)?1:0) \
234 +((x&0x000000F0LU)?2:0) \
235 +((x&0x00000F00LU)?4:0) \
236 +((x&0x0000F000LU)?8:0) \
237 +((x&0x000F0000LU)?16:0) \
238 +((x&0x00F00000LU)?32:0) \
239 +((x&0x0F000000LU)?64:0) \
240 +((x&0xF0000000LU)?128:0)
241
242 // User macros
243 #define B8(d) ((uint8_t)B8__(HEX__(d)))
244 #define B16(dmsb,dlsb) (((uint16_t)B8(dmsb)<<8) + B8(dlsb))
245 #define B32(dmsb,db2,db3,dlsb) (((uint32_t)B8(dmsb)<<24) \
246 + ((uint32_t)B8(db2)<<16) \
247 + ((uint32_t)B8(db3)<<8) \
248 + B8(dlsb))
249
250 // Optimisation defines
251 enum
252 {
253         OPT_ABS_SHORT     = 0,
254         OPT_MOVEL_MOVEQ   = 1,
255         OPT_BSR_BCC_S     = 2,
256         OPT_INDIRECT_DISP = 3,
257         OPT_LEA_ADDQ      = 4,
258         OPT_BASE_DISP     = 5,
259         OPT_COUNT   // Dummy, used to count number of optimisation switches
260 };
261
262 // Exported variables
263 extern int verb_flag;
264 extern int debug;
265 extern int rgpu, rdsp;
266 extern int dsp56001;
267 extern int err_flag;
268 extern int err_fd;
269 extern int regbank;
270 extern char * firstfname;
271 extern int list_fd;
272 extern int list_pag;
273 extern int as68_flag;
274 extern int m6502;
275 extern int list_flag;
276 extern int glob_flag;
277 extern int lsym_flag;
278 extern int sbra_flag;
279 extern int obj_format;
280 extern int legacy_flag;
281 extern int prg_flag;    // 1 = write ".PRG" relocatable executable
282 extern LONG PRGFLAGS;
283 extern int optim_flags[OPT_COUNT];
284 extern int activecpu;
285 extern int activefpu;
286
287 // Exported functions
288 char * fext(char *, char *, int);
289 int nthpath(char *, int, char *);
290 int ParseOptimization(char * optstring);
291
292 #endif // __RMAC_H__
293