]> Shamusworld >> Repos - rmac/blob - token.h
Fix NULL pointer dereference bug.
[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
66 // Character Attributes
67 #define ILLEG           0                                       // Illegal character (unused)
68 #define DIGIT           1                                       // 0-9
69 #define HDIGIT          2                                       // A-F, a-f
70 #define STSYM           4                                       // A-Z, a-z, _~.
71 #define CTSYM           8                                       // A-Z, a-z, 0-9, _~$?
72 #define SELF            16                                      // Single-character tokens: ( ) [ ] etc
73 #define WHITE           32                                      // Whitespace (space, tab, etc.)
74 #define MULTX           64                                      // Multiple-character tokens
75 #define DOT             128                                     // [bwlsBWSL] for what follows a `.'
76
77 // Conditional assembly structures
78 IFENT {
79         IFENT * if_prev;                // Ptr prev .if state block (or NULL)
80         WORD if_state;                  // 0:enabled, 1:disabled
81 };
82
83 // Pointer to IFILE or IMACRO
84 IUNION {
85         IFILE * ifile;
86         IMACRO * imacro;
87         IREPT * irept;
88 };
89
90 // Ptr to IFILEs, IMACROs, and so on; back-ptr to previous input objects
91 INOBJ {
92         WORD in_type;                   // 0=IFILE, 1=IMACRO ...
93         IFENT * in_ifent;               // Pointer to .if context on entry
94         INOBJ * in_link;                // Pointer to previous INOBJ
95         TOKEN * in_otok;                // Old `tok' value
96         TOKEN * in_etok;                // Old `etok' value
97         IUNION inobj;                   // IFILE or IMACRO ...
98 };
99
100 // Information about a file
101 IFILE {
102         IFILE * if_link;                // Pointer to ancient IFILEs
103         char * ifoldfname;              // Old file's name
104         int ifoldlineno;                // Old line number
105         int ifind;                              // Position in file buffer
106         int ifcnt;                              // #chars left in file buffer 
107         int ifhandle;                   // File's descriptor
108         WORD ifno;                              // File number
109         char ifbuf[LNBUFSIZ];   // Line buffer
110 };
111
112 #define TOKENSTREAM struct _tokenstream
113 TOKENSTREAM {
114         TOKEN token[10];                // 10 ought to be enough for anybody
115         char * string[10];              // same for attached strings
116 };
117
118 // Information about a macro invocation
119 IMACRO {
120         IMACRO * im_link;               // Pointer to ancient IMACROs
121 //      LONG * im_nextln;               // Next line to include
122         struct LineList * im_nextln;    // Next line to include
123         WORD im_nargs;                  // # of arguments supplied on invocation
124         WORD im_siz;                    // Size suffix supplied on invocation
125         LONG im_olduniq;                // Old value of 'macuniq'
126         SYM * im_macro;                 // Pointer to macro we're in
127         char im_lnbuf[LNSIZ];   // Line buffer
128         uint32_t argBase;               // Base in argPtrs[] for current macro
129         TOKENSTREAM argument[20];       // Assume no more than 20 arguments in an invocation
130 };
131
132 // Information about a .rept invocation
133 IREPT {
134         LONG * ir_firstln;              // Pointer to first line
135         LONG * ir_nextln;               // Pointer to next line
136         VALUE ir_count;                 // Repeat count (decrements)
137 };
138
139 // Globals, externals etc
140 extern int lnsave;
141 extern int curlineno;
142 extern char * curfname;
143 extern WORD cfileno;
144 extern TOKEN * tok;
145 extern char lnbuf[];
146 extern char lntag;
147 extern char tolowertab[];
148 extern INOBJ * cur_inobj;
149 extern unsigned orgactive;
150 extern unsigned orgaddr;
151 extern LONG sloc;
152 extern int mjump_align;
153 extern char * string[];
154
155 // Prototypes
156 int include(int, char *);
157 void InitTokenizer(void);
158 void SetFilenameForErrorReporting(void);
159 int TokenizeLine(void);
160 int fpop(void);
161 int d_goto(WORD);
162 //int d_goto(void);
163 INOBJ * a_inobj(int);
164 void DumpTokenBuffer(void);
165
166 #endif // __TOKEN_H__