]> Shamusworld >> Repos - rmac/blob - token.h
Fixes for slightly broken Motorola extended float generation.
[rmac] / token.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // TOKEN.H - Token Handling
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 __TOKEN_H__
10 #define __TOKEN_H__
11
12 #include "rmac.h"
13
14 // Include Files and Macros
15 #define SRC_IFILE       0                       // Input source is IFILE
16 #define SRC_IMACRO      1                       // Input source is IMACRO
17 #define SRC_IREPT       2                       // Input source is IREPT
18
19 // Macros
20 #define INOBJ           struct _inobj
21 #define IUNION          union _iunion
22 #define IFILE           struct _incldfile
23 #define IMACRO          struct _imacro
24 #define IREPT           struct _irept
25 #define IFENT           struct _ifent
26
27 // Tunable definitions
28 #define LNSIZ           1024            // Maximum size of a line of text
29 #define TOKBUFSIZE      400                     // Size of token-line buffer
30 #define QUANTUM         4096L           // # bytes to eat at a time from a file
31 #define LNBUFSIZ        (QUANTUM*2)     // Size of file's buffer
32 #define KWSIZE          7                       // Maximum size of keyword in kwtab.h
33
34 // (Normally) non-printable tokens
35 #define COLON           ':'                     // : (grumble: GNUmacs hates ':')
36 #define CONST           'a'                     // CONST <value>
37 #define FCONST          'r'                     // Floating CONST <value>
38 #define ACONST          'A'                     // ACONST <value> <attrib>
39 #define STRING          'b'                     // STRING <address>
40 #define STRINGA8        'S'                     // Atari 800 internal STRING <address>
41 #define SYMBOL          'c'                     // SYMBOL <address>
42 #define EOL             'e'                     // End of line
43 #define TKEOF           'f'                     // End of file (or macro)
44 #define DEQUALS         'g'                     // ==
45 #define SET             0x95            // Set
46 #define REG             'R'                     // Reg
47 #define EQUREG          0x94            // equreg
48 #define CCDEF           0xB7            // ccdef
49 #define DCOLON          'h'                     // ::
50 #define GE              'i'                     // >=
51 #define LE              'j'                     // <=
52 #define NE              'k'                     // <> or !=
53 #define SHR             'l'                     // >>
54 #define SHL             'm'                     // <<
55 #define UNMINUS         'n'                     // Unary '-'
56 #define DOTB            'B'                     // .b or .B or .s or .S
57 #define DOTW            'W'                     // .w or .W
58 #define DOTL            'L'                     // .l or .L
59 #define DOTI            'I'                     // .l or .L
60 #define DOTX            'X'                     // .x or .X
61 #define DOTD            'D'                     // .d or .D
62 #define DOTP            'P'                     // .p or .P
63 #define DOTQ            'Q'                     // .q or .Q (essentially an alias for P)
64 #define DOTS            'S'                     // .s or .S (FPU Single)
65 #define ENDEXPR         'E'                     // End of expression
66
67 // ^^ operators
68 #define CR_DEFINED      'p'                     // ^^defined - is symbol defined?
69 #define CR_REFERENCED   'q'                     // ^^referenced - was symbol referenced?
70 #define CR_STREQ        'v'                     // ^^streq - compare two strings
71 #define CR_MACDEF       'w'                     // ^^macdef - is macro defined?
72 #define CR_TIME         'x'                     // ^^time - DOS format time
73 #define CR_DATE         'y'                     // ^^date - DOS format date
74 #define CR_ABSCOUNT     'z'                     // ^^abscount - count the number of bytes
75                                                                         // defined in curent .abs section
76
77 // Character Attributes
78 #define ILLEG           0                       // Illegal character (unused)
79 #define DIGIT           1                       // 0-9
80 #define HDIGIT          2                       // A-F, a-f
81 #define STSYM           4                       // A-Z, a-z, _~.
82 #define CTSYM           8                       // A-Z, a-z, 0-9, _~$?
83 #define SELF            16                      // Single-character tokens: ( ) [ ] etc
84 #define WHITE           32                      // Whitespace (space, tab, etc.)
85 #define MULTX           64                      // Multiple-character tokens
86 #define DOT             128                     // [bwlsBWSL] for what follows a '.'
87
88 // Macro to check for specific optimizations or override
89 #define CHECK_OPTS(x)   (optim_flags[x] && !optimizeOff)
90
91 // Conditional assembly structures
92 IFENT {
93         IFENT * if_prev;                // Ptr prev .if state block (or NULL)
94         WORD if_state;                  // 0:enabled, 1:disabled
95 };
96
97 // Pointer to IFILE or IMACRO or IREPT
98 IUNION {
99         IFILE * ifile;
100         IMACRO * imacro;
101         IREPT * irept;
102 };
103
104 // Ptr to IFILEs, IMACROs, and so on; back-ptr to previous input objects
105 INOBJ {
106         WORD in_type;                   // 0=IFILE, 1=IMACRO, 2=IREPT
107         IFENT * in_ifent;               // Pointer to .if context on entry
108         INOBJ * in_link;                // Pointer to previous INOBJ
109         TOKEN * in_otok;                // Old `tok' value
110         TOKEN * in_etok;                // Old `etok' value
111         IUNION inobj;                   // IFILE or IMACRO or IREPT
112 };
113
114 // Information about a file
115 IFILE {
116         IFILE * if_link;                // Pointer to ancient IFILEs
117         char * ifoldfname;              // Old file's name
118         int ifoldlineno;                // Old line number
119         int ifind;                              // Position in file buffer
120         int ifcnt;                              // #chars left in file buffer
121         int ifhandle;                   // File's descriptor
122         WORD ifno;                              // File number
123         char ifbuf[LNBUFSIZ];   // Line buffer
124 };
125
126 #define TOKENSTREAM struct _tokenstream
127 TOKENSTREAM {
128         TOKEN token[32];                // 32 ought to be enough for anybody (including XiA!)
129         char * string[32];              // same for attached strings
130 };
131
132 // Information about a macro invocation
133 IMACRO {
134         IMACRO * im_link;               // Pointer to ancient IMACROs
135         LLIST * im_nextln;              // Next line to include
136         WORD im_nargs;                  // # of arguments supplied on invocation
137         WORD im_siz;                    // Size suffix supplied on invocation
138         LONG im_olduniq;                // Old value of 'macuniq'
139         SYM * im_macro;                 // Pointer to macro we're in
140         char im_lnbuf[LNSIZ];   // Line buffer
141         TOKENSTREAM argument[20];       // Assume no more than 20 arguments in an invocation
142 };
143
144 // Information about a .rept invocation
145 IREPT {
146         LLIST * ir_firstln;             // Pointer to first line
147         LLIST * ir_nextln;              // Pointer to next line
148         uint32_t ir_count;              // Repeat count (decrements)
149         uint32_t lineno;                // Repeat line number (Convert this to global instead of putting it here?)
150 };
151
152 // Exported variables
153 extern int lnsave;
154 extern uint16_t curlineno;
155 extern char * curfname;
156 extern WORD cfileno;
157 extern TOKEN * tok;
158 extern char lnbuf[];
159 extern char lntag;
160 extern char tolowertab[];
161 extern INOBJ * cur_inobj;
162 extern int mjump_align;
163 extern char * string[];
164 int optimizeOff;
165
166 // Exported functions
167 int include(int, char *);
168 void InitTokenizer(void);
169 void SetFilenameForErrorReporting(void);
170 int TokenizeLine(void);
171 int fpop(void);
172 int d_goto(WORD);
173 INOBJ * a_inobj(int);
174 void DumpToken(TOKEN);
175 void DumpTokenBuffer(void);
176
177 #endif // __TOKEN_H__
178