]> Shamusworld >> Repos - rmac/blob - token.h
Version bump. Thanks to ggn for the report & patch (bug #73)!
[rmac] / token.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // TOKEN.H - Token Handling
4 // Copyright (C) 199x Landon Dyer, 2011 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           256                                     // 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 ACONST          'A'                                     // ACONST <value> <attrib>
38 #define STRING          'b'                                     // STRING <address>
39 #define SYMBOL          'c'                                     // SYMBOL <address>
40 #define EOL             'e'                                     // End of line
41 #define TKEOF           'f'                                     // End of file (or macro)
42 #define DEQUALS         'g'                                     // ==
43 #define SET             149                                     // Set
44 #define REG             'R'                                     // Reg
45 #define DCOLON          'h'                                     // ::
46 #define GE              'i'                                     // >= 
47 #define LE              'j'                                     // <= 
48 #define NE              'k'                                     // <> or != 
49 #define SHR             'l'                                     // >> 
50 #define SHL             'm'                                     // << 
51 #define UNMINUS         'n'                                     // Unary '-' 
52 #define DOTB            'B'                                     // .b or .B or .s or .S 
53 #define DOTW            'W'                                     // .w or .W 
54 #define DOTL            'L'                                     // .l or .L 
55 #define DOTI            'I'                                     // .l or .L 
56 #define ENDEXPR         'E'                                     // End of expression 
57
58 // ^^ operators
59 #define CR_DEFINED      'p'                                     // ^^defined - is symbol defined?
60 #define CR_REFERENCED   'q'                                     // ^^referenced - was symbol referenced?
61 #define CR_STREQ        'v'                                     // ^^streq - compare two strings
62 #define CR_MACDEF       'w'                                     // ^^macdef - is macro defined?
63 #define CR_TIME         'x'                                     // ^^time - DOS format time
64 #define CR_DATE         'y'                                     // ^^date - DOS format date
65 #define CR_ABSCOUNT     'z'                                     // ^^abscount - count the number of bytes defined in curent .abs section
66
67 // Character Attributes
68 #define ILLEG           0                                       // Illegal character (unused)
69 #define DIGIT           1                                       // 0-9
70 #define HDIGIT          2                                       // A-F, a-f
71 #define STSYM           4                                       // A-Z, a-z, _~.
72 #define CTSYM           8                                       // A-Z, a-z, 0-9, _~$?
73 #define SELF            16                                      // Single-character tokens: ( ) [ ] etc
74 #define WHITE           32                                      // Whitespace (space, tab, etc.)
75 #define MULTX           64                                      // Multiple-character tokens
76 #define DOT             128                                     // [bwlsBWSL] for what follows a `.'
77
78 // Conditional assembly structures
79 IFENT {
80         IFENT * if_prev;                // Ptr prev .if state block (or NULL)
81         WORD if_state;                  // 0:enabled, 1:disabled
82 };
83
84 // Pointer to IFILE or IMACRO
85 IUNION {
86         IFILE * ifile;
87         IMACRO * imacro;
88         IREPT * irept;
89 };
90
91 // Ptr to IFILEs, IMACROs, and so on; back-ptr to previous input objects
92 INOBJ {
93         WORD in_type;                   // 0=IFILE, 1=IMACRO ...
94         IFENT * in_ifent;               // Pointer to .if context on entry
95         INOBJ * in_link;                // Pointer to previous INOBJ
96         TOKEN * in_otok;                // Old `tok' value
97         TOKEN * in_etok;                // Old `etok' value
98         IUNION inobj;                   // IFILE or IMACRO ...
99 };
100
101 // Information about a file
102 IFILE {
103         IFILE * if_link;                // Pointer to ancient IFILEs
104         char * ifoldfname;              // Old file's name
105         int ifoldlineno;                // Old line number
106         int ifind;                              // Position in file buffer
107         int ifcnt;                              // #chars left in file buffer 
108         int ifhandle;                   // File's descriptor
109         WORD ifno;                              // File number
110         char ifbuf[LNBUFSIZ];   // Line buffer
111 };
112
113 #define TOKENSTREAM struct _tokenstream
114 TOKENSTREAM {
115         TOKEN token[32];                // 32 ought to be enough for anybody (including XiA!)
116         char * string[32];              // same for attached strings
117 };
118
119 // Information about a macro invocation
120 IMACRO {
121         IMACRO * im_link;               // Pointer to ancient IMACROs
122 //      LONG * im_nextln;               // Next line to include
123         struct LineList * im_nextln;    // Next line to include
124         WORD im_nargs;                  // # of arguments supplied on invocation
125         WORD im_siz;                    // Size suffix supplied on invocation
126         LONG im_olduniq;                // Old value of 'macuniq'
127         SYM * im_macro;                 // Pointer to macro we're in
128         char im_lnbuf[LNSIZ];   // Line buffer
129         uint32_t argBase;               // Base in argPtrs[] for current macro
130         TOKENSTREAM argument[20];       // Assume no more than 20 arguments in an invocation
131 };
132
133 // Information about a .rept invocation
134 IREPT {
135         LONG * ir_firstln;              // Pointer to first line
136         LONG * ir_nextln;               // Pointer to next line
137         VALUE ir_count;                 // Repeat count (decrements)
138 };
139
140 // Globals, externals etc
141 extern int lnsave;
142 extern int curlineno;
143 extern char * curfname;
144 extern WORD cfileno;
145 extern TOKEN * tok;
146 extern char lnbuf[];
147 extern char lntag;
148 extern char tolowertab[];
149 extern INOBJ * cur_inobj;
150 extern unsigned orgactive;
151 extern unsigned orgaddr;
152 extern LONG sloc;
153 extern int mjump_align;
154 extern char * string[];
155
156 // Prototypes
157 int include(int, char *);
158 void InitTokenizer(void);
159 void SetFilenameForErrorReporting(void);
160 int TokenizeLine(void);
161 int fpop(void);
162 int d_goto(WORD);
163 //int d_goto(void);
164 INOBJ * a_inobj(int);
165 void DumpTokenBuffer(void);
166
167 #endif // __TOKEN_H__