]> Shamusworld >> Repos - rmac/blob - sect.h
11ddfd4caf4e2b3cba51036b313d062bd5767f8c
[rmac] / sect.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // SECT.H - Code Generation, Fixups and Section Management
4 // Copyright (C) 199x Landon Dyer, 2011-2018 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilized with the kind permission of Landon Dyer
7 //
8
9 #ifndef __SECT_H__
10 #define __SECT_H__
11
12 #include "rmac.h"
13
14 // Macros to deposit code in the current section (in Big Endian)
15 #define D_byte(b)       {chcheck(1);*chptr++=(uint8_t)(b); sloc++; ch_size++; \
16         if(orgactive) orgaddr++;}
17 #define D_word(w)       {chcheck(2);*chptr++=(uint8_t)((w)>>8); \
18         *chptr++=(uint8_t)(w); \
19         sloc += 2; ch_size += 2; if(orgactive) orgaddr += 2;}
20 #define D_long(lw)      {chcheck(4);*chptr++=(uint8_t)((lw)>>24); \
21         *chptr++=(uint8_t)((lw)>>16);\
22         *chptr++=(uint8_t)((lw)>>8); \
23         *chptr++=(uint8_t)(lw); \
24         sloc += 4; ch_size += 4; if(orgactive) orgaddr += 4;}
25 #define D_quad(qw)      {chcheck(8);*chptr++=(uint8_t)((qw)>>56); \
26         *chptr++=(uint8_t)((qw)>>48);\
27         *chptr++=(uint8_t)((qw)>>40);\
28         *chptr++=(uint8_t)((qw)>>32);\
29         *chptr++=(uint8_t)((qw)>>24);\
30         *chptr++=(uint8_t)((qw)>>16);\
31         *chptr++=(uint8_t)((qw)>>8); \
32         *chptr++=(uint8_t)(qw); \
33         sloc += 8; ch_size += 8; if(orgactive) orgaddr += 8;}
34
35 // D_rword deposits a "6502" format (low, high) word (01).
36 #define D_rword(w)      {chcheck(2);*chptr++=(uint8_t)(w); \
37         *chptr++=(uint8_t)((w)>>8); \
38         sloc+=2; ch_size+=2;if(orgactive) orgaddr += 2;}
39
40 // Macro for the 56001. Word size on this device is 24 bits wide. I hope that
41 // orgaddr += 1 means that the addresses in the device reflect this.
42 #define D_dsp(w)        {chcheck(3);*chptr++=(uint8_t)(w>>16); \
43         *chptr++=(uint8_t)(w>>8); *chptr++=(uint8_t)w; \
44         sloc+=1; ch_size += 3; if(orgactive) orgaddr += 1; \
45         dsp_written_data_in_current_org=1;}
46
47 // This macro expects to get an array of uint8_ts with the hi bits in a[0] and
48 // the low bits in a[11] (Big Endian).
49 #define D_extend(a)     {chcheck(12); memcpy(chptr, a, 12); chptr+=12; sloc+=12, \
50         ch_size+=12; if (orgactive) orgaddr+=12;}
51
52 // Fill n bytes with zeroes
53 #define D_ZEROFILL(n)   {chcheck(n); memset(chptr, 0, n); chptr+=n; sloc+=n; \
54         ch_size+=n; if (orgactive) orgaddr+=n;}
55
56 #define NSECTS       16                 // Max. number of sections
57
58 // Tunable (storage) definitions
59 #define CH_THRESHOLD    32              // Minimum amount of space in code chunk
60 #define CH_CODE_SIZE    4096    // Code chunk normal allocation (4K)
61
62 // Section attributes (.scattr)
63 #define SUSED        0x8000             // Section is used (really, valid)
64 #define SBSS         0x4000             // Section can contain no data
65 #define SABS         0x2000             // Section is absolute
66 #define SPIC         0x1000             // Section is position-independent code
67
68 // FIXUP attributes
69 #define FUMASK       0x000F             // Mask for fixup cases:
70 #define FU_QUICK     0x0000             // Fixup 3-bit quick instruction field
71 #define FU_BYTE      0x0001             // Fixup byte
72 #define FU_WORD      0x0002             // Fixup word
73 #define FU_WBYTE     0x0003             // Fixup byte (at loc+1)
74 #define FU_LONG      0x0004             // Fixup long
75 #define FU_BBRA      0x0005             // Fixup byte branch
76 #define FU_6BRA      0x0007             // Fixup 6502-format branch offset
77 #define FU_BYTEH     0x0008             // Fixup 6502 high byte of immediate word
78 #define FU_BYTEL     0x0009             // Fixup 6502 low byte of immediate word
79 #define FU_QUAD      0x000A             // Fixup quad-word (8 bytes)
80
81 #define FU_SEXT      0x0010             // Ok to sign extend
82 #define FU_PCREL     0x0020             // Subtract PC first
83 #define FU_EXPR      0x0040             // Expression (not symbol) follows
84
85 #define FU_GLOBAL    0x0080             // Mark global symbol
86
87 #define FUMASKRISC   0x0F00             // Mask for RISC fixup cases
88 #define FU_MOVEI     0x0100
89 #define FU_JR        0x0200
90 #define FU_REGONE    0x0400
91 #define FU_NUM15     0x0500
92 #define FU_NUM31     0x0600
93 #define FU_NUM32     0x0700
94 #define FU_REGTWO    0x0800
95
96 #define FU_SUB32     0x1000
97 #define FU_ISBRA     0x2000             // Word forward fixup is a BRA or DBRA
98 #define FU_LBRA      0x4000             // Long branch, for short branch detect
99 #define FU_DONE      0x8000             // Fixup has been done
100
101 // FPU fixups
102 #define FU_FLOATSING 0x000B             // Fixup 32-bit float
103 #define FU_FLOATDOUB 0x000C             // Fixup 64-bit float
104 #define FU_FLOATEXT  0x000D             // Fixup 96-bit float
105
106 // OP fixups
107 #define FU_OBJLINK   0x10000    // Fixup OL link addr (bits 24-42, drop last 3)
108 #define FU_OBJDATA   0x20000    // Fixup OL data addr (bits 43-63, drop last 3)
109
110
111 // Chunks are used to hold generated code and fixup records
112 #define CHUNK  struct _chunk
113 CHUNK {
114         CHUNK *   chnext;       // Next, previous chunks in section
115         CHUNK *   chprev;
116         uint32_t  chloc;        // Base addr of this chunk
117         uint32_t  challoc;      // # bytes allocated for chunk
118         uint32_t  ch_size;      // # bytes chunk actually uses
119         uint8_t * chptr;        // Data for this chunk
120 };
121
122 // Fixup records can also hold an expression (if any)
123 #define FIXUP struct _fixup
124 FIXUP {
125         FIXUP *  next;          // Pointer to next FIXUP
126         uint32_t attr;          // Fixup type
127         uint32_t loc;           // Location in section
128         uint16_t fileno;        // ID of current file
129         uint32_t lineno;        // Current line
130         TOKEN *  expr;          // Pointer to stored expression (if any)
131         SYM *    symbol;        // Pointer to symbol (if any)
132         uint32_t orgaddr;       // Fixup origin address (used for FU_JR)
133 };
134
135 // Section descriptor
136 #define SECT   struct _sect
137 SECT {
138         uint16_t scattr;        // Section attributes
139         uint32_t sloc;          // Current loc-in / size-of section
140         uint32_t relocs;        // # of relocations for this section
141         uint32_t orgaddr;       // Current org'd address ***NEW***
142         CHUNK *  sfcode;        // First chunk in section
143         CHUNK *  scode;         // Last chunk in section
144         FIXUP *  sffix;         // First fixup
145         FIXUP *  sfix;          // Last fixup ***NEW***
146 };
147
148 // 680x0 defines
149 #define CPU_68000 1
150 #define CPU_68020 2
151 #define CPU_68030 4
152 #define CPU_68040 8
153 #define CPU_68060 16
154 #define FPU_NONE  0
155 #define FPU_68881 1
156 #define FPU_68882 2
157 #define FPU_68040 4
158 #define FPU_68060 8
159
160 // Helper macros to test for active CPU
161 #define CHECK00 if (activecpu == CPU_68000) return error(unsupport)
162 #define CHECK20 if (activecpu == CPU_68020) return error(unsupport)
163 #define CHECK30 if (activecpu == CPU_68030) return error(unsupport)
164 #define CHECK40 if (activecpu == CPU_68040) return error(unsupport)
165 #define CHECK60 if (activecpu == CPU_68060) return error(unsupport)
166 #define CHECKNO00 if (activecpu != CPU_68000) return error(unsupport)
167 #define CHECKNO20 if (activecpu != CPU_68020) return error(unsupport)
168 #define CHECKNO30 if (activecpu != CPU_68030) return error(unsupport)
169 #define CHECKNO40 if (activecpu != CPU_68040) return error(unsupport)
170 #define CHECKNO60 if (activecpu != CPU_68060) return error(unsupport)
171 #define CHECKNOFPU if (!activefpu) return error(unsupport)
172
173 // Globals, external etc
174 extern uint32_t sloc;
175 extern uint16_t scattr;
176 extern uint8_t * chptr;
177 extern uint8_t * chptr_opcode;
178 extern uint32_t ch_size;
179 extern int cursect;
180 extern SECT sect[];
181 extern uint32_t challoc;
182 extern CHUNK * scode;
183
184 // Prototypes
185 void InitSection(void);
186 void SwitchSection(int);
187 void SaveSection(void);
188 int fixtest(int, uint32_t);
189 void chcheck(uint32_t);
190 int AddFixup(uint32_t, uint32_t, TOKEN *);
191 int ResolveAllFixups(void);
192
193 #endif // __SECT_H__
194