]> Shamusworld >> Repos - rmac/blob - sect.h
Small fix for spurious "out of range" errors (tied to 64-bit eval path).
[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-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 __SECT_H__
10 #define __SECT_H__
11
12 #include "rmac.h"
13
14 // Macros to deposit code in the current section
15 // D_rword deposits a "6502" format (low, high) word (01).
16 #define D_byte(b)       {*chptr++=(uint8_t)(b); sloc++; ch_size++; \
17                                                 if(orgactive) orgaddr++;}
18 #define D_word(w)       {chcheck(2);*chptr++=(uint8_t)((w)>>8); \
19                                                 *chptr++=(uint8_t)(w); \
20                                                 sloc += 2; ch_size += 2; if(orgactive) orgaddr += 2;}
21 #define D_long(lw)      {*chptr++=(uint8_t)((lw)>>24); \
22                                                 *chptr++=(uint8_t)((lw)>>16);\
23                                                 *chptr++=(uint8_t)((lw)>>8); \
24                                                 *chptr++=(uint8_t)(lw); \
25                                                 sloc += 4; ch_size += 4; if(orgactive) orgaddr += 4;}
26 #define D_rword(w)      {*chptr++=(uint8_t)(w); *chptr++=(uint8_t)((w)>>8); \
27                                                 sloc+=2; ch_size+=2;if(orgactive) orgaddr += 2;}
28 // Fill n bytes with zeroes
29 #define D_ZEROFILL(n)   {memset(chptr, 0, n); chptr+=n; sloc+=n; ch_size+=n;\
30                                                 if (orgactive) orgaddr+=n;}
31
32 #define NSECTS       16                 // Max. number of sections
33
34 // Tunable (storage) definitions
35 #define CH_THRESHOLD    64              // Minimum amount of space in code chunk
36 #define CH_CODE_SIZE    2048    // Code chunk normal allocation
37 #define CH_FIXUP_SIZE   1024    // Fixup chunk normal allocation
38
39 // Section attributes (.scattr)
40 #define SUSED        0x8000             // Section is used (really, valid)
41 #define SBSS         0x4000             // Section can contain no data
42 #define SABS         0x2000             // Section is absolute
43 #define SPIC         0x1000             // Section is position-independent code
44
45 // Fixup record a WORD of these bits, followed by a loc and then a pointer
46 // to a symbol or an ENDEXPR-terminated postfix expression.
47 //
48 // SYMBOL               EXPRESSION
49 // ------               ----------
50 // ~FU_EXPR    FU_EXPR     fixup type
51 // loc.L       loc.L       location in section
52 // fileno.W    fileno.W    file number fixup occurred in
53 // lineno.W    lineno.W    line number fixup occurred in
54 // symbol.L    size.W      &symbol  /  size of expression
55 // token.L     expression list
56 // (etc)
57 // ENDEXPR.L    (end of expression)
58 #define FUMASK       0x000F             // Mask for fixup cases:
59 #define FU_QUICK     0x0000             // Fixup 3-bit quick instruction field
60 #define FU_BYTE      0x0001             // Fixup byte
61 #define FU_WORD      0x0002             // Fixup word
62 #define FU_WBYTE     0x0003             // Fixup byte (at loc+1)
63 #define FU_LONG      0x0004             // Fixup long
64 #define FU_BBRA      0x0005             // Fixup byte branch
65 #define FU_6BRA      0x0007             // Fixup 6502-format branch offset
66 #define FU_BYTEH     0x0008             // Fixup 6502 high byte of immediate word
67 #define FU_BYTEL     0x0009             // Fixup 6502 low byte of immediate word
68
69 #define FU_SEXT      0x0010             // Ok to sign extend
70 #define FU_PCREL     0x0020             // Subtract PC first
71 #define FU_EXPR      0x0040             // Expression (not symbol) follows
72
73 #define FU_GLOBAL    0x0080             // Mark global symbol
74
75 #define FUMASKRISC   0x0F00             // Mask for RISC fixup cases
76 #define FU_MOVEI     0x0100
77 #define FU_JR        0x0200
78 #define FU_REGONE    0x0400
79 #define FU_NUM15     0x0500
80 #define FU_NUM31     0x0600
81 #define FU_NUM32     0x0700
82 #define FU_REGTWO    0x0800
83
84 #define FU_SUB32     0x1000
85 #define FU_ISBRA     0x2000             // Word forward fixup is a BRA or DBRA
86 #define FU_LBRA      0x4000             // Long branch, for short branch detect
87 #define FU_DONE      0x8000             // Fixup has been done
88
89 // Chunks are used to hold generated code and fixup records
90 #define CHUNK  struct _chunk
91 CHUNK {
92         CHUNK * chnext;                         // Next, previous chunks in section
93         CHUNK * chprev;
94         uint32_t chloc;                         // Base addr of this chunk
95         uint32_t challoc;                       // # bytes allocated for chunk
96         uint32_t ch_size;                       // # bytes chunk actually uses
97         uint8_t * chptr;                        // Data for this chunk
98 };
99
100 // Section descriptor
101 #define SECT   struct _sect
102 SECT {
103         uint16_t scattr;                        // Section attributes
104         uint32_t sloc;                          // Current loc-in / size-of section
105         uint32_t relocs;                        // # of relocations for this section
106         CHUNK * sfcode;                         // First chunk in section
107         CHUNK * scode;                          // Last chunk in section
108         CHUNK * sffix;                          // First fixup chunk
109         CHUNK * sfix;                           // Last fixup chunk
110 };
111
112 // 680x0 defines
113 #define CPU_68000 1
114 #define CPU_68020 2
115 #define CPU_68030 4
116 #define CPU_68040 8
117 #define CPU_68060 16
118 #define FPU_NONE  0
119 #define FPU_68881 1
120 #define FPU_68882 2
121 #define FPU_68040 4
122
123 // Helper macros to test for active CPU
124 #define CHECK00 if (activecpu == CPU_68000) return error(unsupport)
125 #define CHECK20 if (activecpu == CPU_68020) return error(unsupport)
126 #define CHECK30 if (activecpu == CPU_68030) return error(unsupport)
127 #define CHECK40 if (activecpu == CPU_68040) return error(unsupport)
128 #define CHECK60 if (activecpu == CPU_68060) return error(unsupport)
129 #define CHECKNO00 if (activecpu != CPU_68000) return error(unsupport)
130 #define CHECKNO20 if (activecpu != CPU_68020) return error(unsupport)
131 #define CHECKNO30 if (activecpu != CPU_68030) return error(unsupport)
132 #define CHECKNO40 if (activecpu != CPU_68040) return error(unsupport)
133 #define CHECKNO60 if (activecpu != CPU_68060) return error(unsupport)
134
135
136 // Globals, external etc
137 extern uint32_t sloc;
138 extern uint16_t scattr;
139 extern uint8_t * chptr;
140 extern uint8_t * chptr_opcode;
141 extern uint32_t ch_size;
142 extern int cursect;
143 extern SECT sect[];
144 extern uint32_t challoc;
145 extern CHUNK * scode;
146
147 // Prototypes
148 void InitSection(void);
149 void SwitchSection(int);
150 void SaveSection(void);
151 int fixtest(int, uint32_t);
152 int chcheck(uint32_t);
153 int AddFixup(uint16_t, uint32_t, TOKEN *);
154 int ResolveAllFixups(void);
155
156 #endif // __SECT_H__
157