]> Shamusworld >> Repos - rmac/blob - procln.c
.equr overhaul part 1: remove gpu/dsp only restriction, make sure things still work...
[rmac] / procln.c
1 //
2 // RMAC - Renamed Macro Assembler for all Atari computers
3 // PROCLN.C - Line Processing
4 // Copyright (C) 199x Landon Dyer, 2011-2021 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 #include "procln.h"
10 #include "6502.h"
11 #include "amode.h"
12 #include "direct.h"
13 #include "dsp56k_amode.h"
14 #include "dsp56k_mach.h"
15 #include "error.h"
16 #include "expr.h"
17 #include "listing.h"
18 #include "mach.h"
19 #include "macro.h"
20 #include "op.h"
21 #include "riscasm.h"
22 #include "sect.h"
23 #include "symbol.h"
24
25 #define DEF_KW                                  // Declare keyword values
26 #include "kwtab.h"                              // Incl generated keyword tables & defs
27
28 #define DEF_MN                                  // Incl 68k keyword definitions
29 #define DECL_MN                                 // Incl 68k keyword state machine tables
30 #include "mntab.h"
31
32 #define DEF_MR
33 #define DECL_MR
34 #include "risckw.h"
35
36 #define DEF_MP                                  // Include 6502 keyword definitions
37 #define DECL_MP                                 // Include 6502 keyword state machine tables
38 #include "6502kw.h"
39
40 #define DEF_MO                                  // Include OP keyword definitions
41 #define DECL_MO                                 // Include OP keyword state machine tables
42 #include "opkw.h"
43
44 #define DEF_DSP                                 // Include DSP56K keywords definitions
45 #define DECL_DSP                                // Include DSP56K keyword state machine tables
46 #include "dsp56kkw.h"
47
48
49 IFENT * ifent;                                  // Current ifent
50 static IFENT ifent0;                    // Root ifent
51 IFENT * f_ifent;                                // Freelist of ifents
52 int disabled;                                   // Assembly conditionally disabled
53 int just_bss;                                   // 1, ds.b in microprocessor mode
54 uint32_t pcloc;                                 // Value of "PC" at beginning of line
55 SYM * lab_sym;                                  // Label on line (or NULL)
56 char * label_defined;                   // The name of the last label defined in current line (if any)
57
58 const char extra_stuff[] = "extra (unexpected) text found after addressing mode";
59 const char comma_error[] = "missing comma";
60 const char syntax_error[] = "syntax error";
61 const char locgl_error[] = "cannot GLOBL local symbol";
62 const char lab_ignored[] = "label ignored";
63
64 // Table to convert an addressing-mode number to a bitmask.
65 LONG amsktab[0124] = {
66         M_DREG, M_DREG, M_DREG, M_DREG,
67         M_DREG, M_DREG, M_DREG, M_DREG,
68
69         M_AREG, M_AREG, M_AREG, M_AREG,
70         M_AREG, M_AREG, M_AREG, M_AREG,
71
72         M_AIND, M_AIND, M_AIND, M_AIND,
73         M_AIND, M_AIND, M_AIND, M_AIND,
74
75         M_APOSTINC, M_APOSTINC, M_APOSTINC, M_APOSTINC,
76         M_APOSTINC, M_APOSTINC, M_APOSTINC, M_APOSTINC,
77
78         M_APREDEC, M_APREDEC, M_APREDEC, M_APREDEC,
79         M_APREDEC, M_APREDEC, M_APREDEC, M_APREDEC,
80
81         M_ADISP, M_ADISP, M_ADISP, M_ADISP,
82         M_ADISP, M_ADISP, M_ADISP, M_ADISP,
83
84         M_AINDEXED, M_AINDEXED, M_AINDEXED, M_AINDEXED,
85         M_AINDEXED, M_AINDEXED, M_AINDEXED, M_AINDEXED,
86
87         M_ABSW,                 // 070
88         M_ABSL,                 // 071
89         M_PCDISP,               // 072
90         M_PCINDEXED,    // 073
91         M_IMMED,                // 074
92         0L,                             // 075
93         0L,                             // 076
94         0L,                             // 077
95         M_ABASE,                // 0100
96         M_MEMPOST,              // 0101
97         M_MEMPRE,               // 0102
98         M_PCBASE,               // 0103
99         M_PCMPOST,              // 0104
100         M_PCMPRE,               // 0105
101         M_AM_USP,               // 0106
102         M_AM_SR,                // 0107
103         M_AM_CCR,               // 0110
104         M_AM_NONE,              // 0111
105         0x30,                   // 0112
106         0x30,                   // 0113
107         0L,                             // 0114
108         0L,                             // 0115
109         0L,                             // 0116
110         0L,                             // 0117
111         M_CACHE40,              // 0120
112         M_CREG,                 // 0121
113         M_FREG,                 // 0122
114         M_FPSCR                 // 0123
115 };                                      // 0123 length
116
117
118 // Function prototypes
119 int HandleLabel(char *, int);
120
121
122 //
123 // Initialize line processor
124 //
125 void InitLineProcessor(void)
126 {
127         disabled = 0;
128         ifent = &ifent0;
129         f_ifent = ifent0.if_prev = NULL;
130         ifent0.if_state = 0;
131 }
132
133
134 //
135 // Line processor
136 //
137 void Assemble(void)
138 {
139         int state;                                      // Keyword machine state (output)
140         int j;                                          // Random int, must be fast
141         char * p;                                       // Random char ptr, must be fast
142         TOKEN * tk;                                     // First token in line
143         char * label;                           // Symbol (or NULL)
144         char * equate;                          // Symbol (or NULL)
145         int labtyp = 0;                         // Label type (':', DCOLON)
146         int equtyp = 0;                         // Equ type ('=', DEQUALS)
147         uint64_t eval;                          // Expression value
148         WORD eattr;                                     // Expression attributes
149         SYM * esym;                                     // External symbol involved in expr.
150         WORD siz = 0;                           // Size suffix to mnem/diretve/macro
151         LONG amsk0, amsk1;                      // Address-type masks for ea0, ea1
152         MNTAB * m;                                      // Code generation table pointer
153         SYM * sy, * sy2;                        // Symbol (temp usage)
154         char * opname = NULL;           // Name of dirctve/mnemonic/macro
155         int listflag;                           // 0: Don't call listeol()
156         WORD rmask;                                     // Register list, for REG
157         int registerbank;                       // RISC register bank
158         int riscreg;                            // RISC register
159         listflag = 0;                           // Initialise listing flag
160
161 loop:                                                   // Line processing loop label
162
163         // Get another line of tokens
164         if (TokenizeLine() == TKEOF)
165         {
166 DEBUG { printf("Assemble: Found TKEOF flag...\n"); }
167                 if (list_flag && listflag)                      // Flush last line of source
168                         listeol();
169
170                 if (ifent->if_prev != NULL)                     // Check conditional token
171                         error("hit EOF without finding matching .endif");
172
173                 return;
174         }
175
176         DEBUG { DumpTokenBuffer(); }
177
178         if (list_flag)
179         {
180                 if (listflag && listing > 0)
181                         listeol();                                              // Tell listing generator about EOL
182
183                 lstout((char)(disabled ? '-' : lntag)); // Prepare new line for listing
184                 listflag = 1;                                           // OK to call `listeol' now
185                 just_bss = 0;                                           // Reset just_bss mode
186         }
187
188         state = -3;                                                             // No keyword (just EOL)
189         label = NULL;                                                   // No label
190         label_defined = NULL;                                   // No label defined yet
191         lab_sym = NULL;                                                 // No (exported) label
192         equate = NULL;                                                  // No equate
193         tk = tok;                                                               // Save first token in line
194         pcloc = (uint32_t)sloc;                                 // Set beginning-of-line PC
195
196 loop1:                                                                          // Internal line processing loop
197
198         if (*tok == EOL)                                                // Restart loop if end-of-line
199                 goto loop;
200
201         // First token MUST be a symbol (Shamus: not sure why :-/)
202         if (*tok != SYMBOL)
203         {
204                 if ((*tok >= KW_D0) && (*tok <= KW_R31))
205                         error("cannot use reserved keyword as label name or .equ");
206                 else
207                         error("syntax error; expected symbol");
208
209                 goto loop;
210         }
211
212         j = (int)tok[2];                                                // Skip equates (normal statements)
213
214         if (j == '=' || j == DEQUALS || j == SET || j == REG || j == EQUREG || j == CCDEF)
215         {
216                 equate = string[tok[1]];
217                 equtyp = j;
218                 tok += 3;
219                 goto normal;
220         }
221
222         // Skip past label (but record it)
223         if (j == ':' || j == DCOLON)
224         {
225                 label = string[tok[1]];                         // Get label name
226                 labtyp = tok[2];                                        // Get label type
227                 tok += 3;                                                       // Go to next line token
228         }
229
230         // EOL is legal here...
231         if (*tok == EOL)
232                 goto normal;
233
234         // First token MUST be a symbol (if we get here, tok didn't advance)
235         if (*tok++ != SYMBOL)
236         {
237                 error("syntax error; expected symbol");
238                 goto loop;
239         }
240
241         opname = p = string[*tok++];
242
243         // Check to see if the SYMBOL is a keyword (a mnemonic or directive).
244         // On output, `state' will have one of the values:
245         //    -3          there was no symbol (EOL)
246         //    -2..-1      the symbol didn't match any keyword
247         //    0..499      vanilla directives (dc, ds, etc.)
248         //    500..999    electric directives (macro, rept, etc.)
249         //    1000..+     mnemonics (move, lsr, etc.)
250         for(state=0; state>=0;)
251         {
252                 j = mnbase[state] + (int)tolowertab[*p];
253
254                 // Reject, character doesn't match
255                 if (mncheck[j] != state)
256                 {
257                         state = -1;                                             // No match
258                         break;
259                 }
260
261                 // Must accept or reject at EOS
262                 if (!*++p)
263                 {
264                         state = mnaccept[j];                    // (-1 on no terminal match)
265                         break;
266                 }
267
268                 state = mntab[j];
269         }
270
271         // Check for ".b" ".w" ".l" after directive, macro or mnemonic.
272         siz = SIZN;
273
274         switch (*tok)
275         {
276         case DOTW: siz = SIZW, tok++; break;
277         case DOTL: siz = SIZL, tok++; break;
278         case DOTB: siz = SIZB, tok++; break;
279         case DOTD: siz = SIZD, tok++; break;
280         case DOTP: siz = SIZP, tok++; break;
281         case DOTQ: siz = SIZQ, tok++; break;
282         case DOTS: siz = SIZS, tok++; break;
283         case DOTX: siz = SIZX, tok++; break;
284         }
285
286         // Do special directives (500..999) (These must be handled in "real time")
287         if (state >= 500 && state < 1000)
288         {
289                 switch (state)
290                 {
291                 case MN_IF:
292                         d_if();
293                         goto loop;
294
295                 case MN_ELSE:
296                         d_else();
297                         goto loop;
298
299                 case MN_ENDIF:
300                         d_endif();
301                         goto loop;
302
303                 case MN_IIF:                                            // .iif --- immediate if
304                         if (disabled || expr(exprbuf, &eval, &eattr, &esym) != OK)
305                                 goto loop;
306
307                         if (!(eattr & DEFINED))
308                         {
309                                 error(undef_error);
310                                 goto loop;
311                         }
312
313                         if (*tok++ != ',')
314                         {
315                                 error(comma_error);
316                                 goto loop;
317                         }
318
319                         if (eval == 0)
320                                 goto loop;
321
322                         goto loop1;
323
324                 case MN_MACRO:                                          // .macro --- macro definition
325                         if (!disabled)
326                         {
327                                 // Label on a macro definition is bad mojo... Warn the user
328                                 if (label != NULL)
329                                         warn(lab_ignored);
330
331                                 DefineMacro();
332                         }
333
334                         goto loop;
335
336                 case MN_EXITM:                                          // .exitm --- exit macro
337                 case MN_ENDM:                                           // .endm --- same as .exitm
338                         if (!disabled)
339                         {
340                                 if (label != NULL)
341                                         warn(lab_ignored);
342
343                                 ExitMacro();
344                         }
345
346                         goto loop;
347
348                 case MN_REPT:
349                         if (!disabled)
350                         {
351                                 // Handle labels on REPT directive lines...
352                                 if (label)
353                                 {
354                                         if (HandleLabel(label, labtyp) != 0)
355                                                 goto loop;
356
357                                         label_defined = label;
358                                 }
359
360                                 HandleRept();
361                         }
362
363                         goto loop;
364
365                 case MN_ENDR:
366                         if (!disabled)
367                                 error("mis-nested .endr");
368
369                         goto loop;
370                 }
371         }
372
373 normal:
374         if (disabled)                                                   // Conditionally disabled code
375                 goto loop;
376
377         // Do equates
378         if (equate != NULL)
379         {
380                 // Pick global or local symbol enviroment
381                 j = (*equate == '.' ? curenv : 0);
382                 sy = lookup(equate, LABEL, j);
383
384                 if (sy == NULL)
385                 {
386                         sy = NewSymbol(equate, LABEL, j);
387                         sy->sattr = 0;
388
389                         if (equtyp == DEQUALS)
390                         {
391                                 // Can't GLOBAL a local symbol
392                                 if (j)
393                                 {
394                                         error(locgl_error);
395                                         goto loop;
396                                 }
397
398                                 sy->sattr = GLOBAL;
399                         }
400                 }
401                 else if ((sy->sattr & DEFINED) && equtyp != SET)
402                 {
403                         if ((equtyp == EQUREG) && (sy->sattre & UNDEF_EQUR))
404                         {
405                                 sy->sattre &= ~UNDEF_EQUR;
406                                 sy->svalue = 0;
407                         }
408                         else if ((equtyp == CCDEF) && (sy->sattre & UNDEF_CC))
409                         {
410                                 sy->sattre &= ~UNDEF_CC;
411                                 sy->svalue = 0;
412                         }
413                         else
414                         {
415                                 error("multiple equate to '%s'", sy->sname);
416                                 goto loop;
417                         }
418                 }
419
420                 // Put symbol in "order of definition" list if it's not already there
421                 AddToSymbolDeclarationList(sy);
422
423                 // Parse value to equate symbol to;
424                 // o  .equr
425                 // o  .reg
426                 // o  everything else
427                 if (equtyp == EQUREG)
428                 {
429 //Linko's request to issue a warning on labels that equated to the same
430 //register would go here. Not sure how to implement it though. :-/
431 /*
432 Maybe like this way:
433 have an array of bools with 64 entries. Whenever a register is equated, set the
434 corresponding register bool to true. Whenever it's undef'ed, set it to false.
435 When checking to see if it's already been equated, issue a warning.
436 */
437
438                         // Check for register to equate to
439                         if ((*tok >= KW_R0) && (*tok <= KW_R31))
440                         {
441 //                              sy->sattre  = EQUATEDREG | RISCSYM;     // Mark as equated register
442                                 sy->sattre  = EQUATEDREG;       // Mark as equated register
443                                 riscreg = (*tok);
444
445                                 // Default is current state of "regbank"
446                                 registerbank = regbank;
447
448                                 // Check for ",<bank #>" override notation
449                                 if ((tok[1] == ',') && (tok[2] == CONST))
450                                 {
451                                         // Advance token pointer to the constant
452                                         tok += 3;
453
454                                         // Anything other than a 0 or a 1 will result in "No Bank"
455                                         if (*(uint64_t *)tok == 0)
456                                                 registerbank = BANK_0;
457                                         else if (*(uint64_t *)tok == 1)
458                                                 registerbank = BANK_1;
459
460                                         // Advance half-way through the 64-bit const.
461                                         // The code below, expecting a regular token,
462                                         // will advance past the second half.
463                                         tok++;
464                                 }
465
466                                 sy->sattre |= registerbank;     // Store register bank
467                                 eattr = ABS | DEFINED | GLOBAL;
468                                 eval = riscreg;
469                                 tok++;
470                         }
471                         // Checking for a register symbol
472                         else if (tok[0] == SYMBOL)
473                         {
474                                 sy2 = lookup(string[tok[1]], LABEL, j);
475
476                                 // Make sure symbol is a valid equreg
477                                 if (!sy2 || !(sy2->sattre & EQUATEDREG))
478                                 {
479                                         error("invalid GPU/DSP .equr/.regequ definition");
480                                         goto loop;
481                                 }
482                                 else
483                                 {
484                                         eattr = ABS | DEFINED | GLOBAL; // Copy symbols attributes
485                                         sy->sattre = sy2->sattre;
486                                         eval = (sy2->svalue & 0xFFFFF0FF);
487                                         tok += 2;
488                                 }
489                         }
490                         else
491                         {
492                                 error("invalid GPU/DSP .equr/.regequ definition");
493                                 goto loop;
494                         }
495                 }
496                 else if (equtyp == REG)
497                 {
498                         if (reglist(&rmask) < 0)
499                                 goto loop;
500
501                         eval = (uint32_t)rmask;
502                         eattr = ABS | DEFINED;
503                 }
504                 else if (equtyp == CCDEF)
505                 {
506                         sy->sattre |= EQUATEDCC;
507                         eattr = ABS | DEFINED | GLOBAL;
508
509                         if (tok[0] == SYMBOL)
510                         {
511                                 sy2 = lookup(string[tok[1]], LABEL, j);
512
513                                 if (!sy2 || !(sy2->sattre & EQUATEDCC))
514                                 {
515                                         error("invalid gpu/dsp .ccdef definition");
516                                         goto loop;
517                                 }
518                                 else
519                                 {
520                                         eattr = ABS | DEFINED | GLOBAL;
521                                         sy->sattre = sy2->sattre;
522                                         eval = sy2->svalue;
523                                         tok += 2;
524                                 }
525                         }
526                         else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
527                                 goto loop;
528                 }
529                 // equ an equr
530                 else if (*tok == SYMBOL)
531                 {
532                         sy2 = lookup(string[tok[1]], LABEL, j);
533
534                         if (sy2 && (sy2->sattre & EQUATEDREG))
535                         {
536                                 sy->stype = sy2->stype;
537                                 sy->sattr = sy2->sattr;
538                                 sy->sattre = sy2->sattre;
539                                 sy->svalue = sy2->svalue;
540                                 goto loop;
541                         }
542                         else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
543                                 goto loop;
544                 }
545                 else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
546                         goto loop;
547
548                 if (!(eattr & DEFINED))
549                 {
550                         error(undef_error);
551                         goto loop;
552                 }
553
554                 sy->sattr |= eattr | EQUATED;   // Symbol inherits value and attributes
555                 sy->svalue = eval;
556
557                 if (list_flag)                                  // Put value in listing
558                         listvalue((uint32_t)eval);
559
560                 ErrorIfNotAtEOL();                              // Must be at EOL now
561                 goto loop;
562         }
563
564         // Do labels
565         if (label != NULL)
566         {
567                 // Non-zero == error occurred
568                 if (HandleLabel(label, labtyp) != 0)
569                         goto loop;
570
571                 label_defined = label;
572         }
573
574         // Punt on EOL
575         if (state == -3)
576                 goto loop;
577
578         // If we're in 6502 mode and are still in need of a mnemonic, then search
579         // for valid 6502 mnemonic.
580         if (m6502 && (state < 0 || state >= 1000))
581         {
582 #ifdef ST
583                 state = kmatch(opname, mpbase, mpcheck, mptab, mpaccept);
584 #else
585                 for(state=0, p=opname; state>= 0; )
586                 {
587                         j = mpbase[state] + tolowertab[*p];
588
589                         if (mpcheck[j] != state)        // Reject, character doesn't match
590                         {
591                                 state = -1;             // No match
592                                 break;
593                         }
594
595                         if (!*++p)
596                         {                       // Must accept or reject at EOS
597                                 state = mpaccept[j];    // (-1 on no terminal match)
598                                 break;
599                         }
600
601                         state = mptab[j];
602                 }
603 #endif
604
605                 // Call 6502 code generator if we found a mnemonic
606                 if (state >= 2000)
607                 {
608                         m6502cg(state - 2000);
609                         goto loop;
610                 }
611         }
612
613         // If we are in GPU or DSP mode and still in need of a mnemonic then search
614         // for one
615         if ((rgpu || rdsp) && (state < 0 || state >= 1000))
616         {
617                 for(state=0, p=opname; state>=0;)
618                 {
619                         j = mrbase[state] + (int)tolowertab[*p];
620
621                         // Reject, character doesn't match
622                         if (mrcheck[j] != state)
623                         {
624                                 state = -1;                                     // No match
625                                 break;
626                         }
627
628                         // Must accept or reject at EOS
629                         if (!*++p)
630                         {
631                                 state = mraccept[j];            // (-1 on no terminal match)
632                                 break;
633                         }
634
635                         state = mrtab[j];
636                 }
637
638                 // Call RISC code generator if we found a mnemonic
639                 if (state >= 3000)
640                 {
641                         GenerateRISCCode(state);
642                         goto loop;
643                 }
644         }
645
646         // If we are in OP mode and still in need of a mnemonic then search for one
647         if (robjproc && ((state < 0) || (state >= 1000)))
648         {
649                 for(state=0, p=opname; state>=0;)
650                 {
651                         j = mobase[state] + (int)tolowertab[*p];
652
653                         // Reject, character doesn't match
654                         if (mocheck[j] != state)
655                         {
656                                 state = -1;                                     // No match
657                                 break;
658                         }
659
660                         // Must accept or reject at EOS
661                         if (!*++p)
662                         {
663                                 state = moaccept[j];            // (-1 on no terminal match)
664                                 break;
665                         }
666
667                         state = motab[j];
668                 }
669
670                 // Call OP code generator if we found a mnemonic
671                 if (state >= 3100)
672                 {
673                         GenerateOPCode(state);
674                         goto loop;
675                 }
676         }
677
678         // If we are in 56K mode and still in need of a mnemonic then search for one
679         if (dsp56001 && ((state < 0) || (state >= 1000)))
680         {
681                 for(state=0, p=opname; state>=0;)
682                 {
683                         j = dspbase[state] + (int)tolowertab[*p];
684
685                         // Reject, character doesn't match
686                         if (dspcheck[j] != state)
687                         {
688                                 state = -1;                                     // No match
689                                 break;
690                         }
691
692                         // Must accept or reject at EOS
693                         if (!*++p)
694                         {
695                                 state = dspaccept[j];           // (-1 on no terminal match)
696                                 break;
697                         }
698
699                         state = dsptab[j];
700                 }
701
702                 // Call DSP code generator if we found a mnemonic
703                 if (state >= 2000)
704                 {
705                         LONG parcode;
706                         int operands;
707                         MNTABDSP * md = &dsp56k_machtab[state - 2000];
708                         deposit_extra_ea = 0;   // Assume no extra word needed
709
710                         if (md->mnfunc == dsp_mult)
711                         {
712                                 // Special case for multiplication instructions: they require
713                                 // 3 operands
714                                 if ((operands = dsp_amode(3)) == ERROR)
715                                         goto loop;
716                         }
717                         else if ((md->mnattr & PARMOVE) && md->mn0 != M_AM_NONE)
718                         {
719                                 if (dsp_amode(2) == ERROR)
720                                         goto loop;
721                         }
722                         else if ((md->mnattr & PARMOVE) && md->mn0 == M_AM_NONE)
723                         {
724                                 // Instructions that have parallel moves but use no operands
725                                 // (probably only move). In this case, don't parse addressing
726                                 // modes--just go straight to parallel parse
727                                 dsp_am0 = dsp_am1 = M_AM_NONE;
728                         }
729                         else
730                         {
731                                 // Non parallel move instructions can have up to 4 parameters
732                                 // (well, only tcc instructions really)
733                                 if ((operands = dsp_amode(4)) == ERROR)
734                                         goto loop;
735
736                                 if (operands == 4)
737                                 {
738                                         dsp_tcc4(md->mninst);
739                                         goto loop;
740                                 }
741                         }
742
743                         if (md->mnattr & PARMOVE)
744                         {
745                                 // Check for parallel moves
746                                 if ((parcode = parmoves(dsp_a1reg)) == ERROR)
747                                         goto loop;
748                         }
749                         else
750                         {
751                                 if (*tok != EOL)
752                                         error("parallel moves not allowed with this instruction");
753
754                                 parcode = 0;
755                         }
756
757                         while ((dsp_am0 & md->mn0) == 0 || (dsp_am1 & md->mn1) == 0)
758                                 md = &dsp56k_machtab[md->mncont];
759
760                         (*md->mnfunc)(md->mninst | (parcode << 8));
761                         goto loop;
762                 }
763         }
764
765         // Invoke macro or complain about bad mnemonic
766         if (state < 0)
767         {
768                 if ((sy = lookup(opname, MACRO, 0)) != NULL)
769                         InvokeMacro(sy, siz);
770                 else
771                         error("unknown op '%s'", opname);
772
773                 goto loop;
774         }
775
776         // Call directive handlers
777         if (state < 500)
778         {
779                 (*dirtab[state])(siz);
780                 goto loop;
781         }
782
783         // Do mnemonics
784         //  o  can't deposit instrs in BSS or ABS
785         //  o  do automatic .EVEN for instrs
786         //  o  allocate space for largest possible instr
787         //  o  can't do ".b" operations with an address register
788         if (scattr & SBSS)
789         {
790                 error("cannot initialize non-storage (BSS) section");
791                 goto loop;
792         }
793
794         if (sloc & 1)                                   // Automatic .even
795                 auto_even();
796
797         if (challoc - ch_size < 18)             // Make sure have space in current chunk
798                 chcheck(0);
799
800         m = &machtab[state - 1000];
801
802         // Call special-mode handler
803         if (m->mnattr & CGSPECIAL)
804         {
805                 (*m->mnfunc)(m->mninst, siz);
806                 goto loop;
807         }
808
809         if (amode(1) < 0)                               // Parse 0, 1 or 2 addr modes
810                 goto loop;
811
812         // Check that we're at EOL
813         // The only exception is ptestr/ptestw instructions
814         // that have 3 or 4 operands and are not handled by
815         // amode(). (yes, we're taking a performance hit here sadly)
816         if (m->mnfunc != m_ptestr && m->mnfunc != m_ptestw)
817                 if (*tok != EOL)
818                         error(extra_stuff);
819
820         amsk0 = amsktab[am0];
821         amsk1 = amsktab[am1];
822
823         // Catch attempts to use ".B" with an address register (yes, this check
824         // does work at this level)
825         if (siz == SIZB && (am0 == AREG || am1 == AREG))
826         {
827                 error("cannot use '.b' with an address register");
828                 goto loop;
829         }
830
831         // Keep a backup of chptr (used for optimisations during codegen)
832         chptr_opcode = chptr;
833
834         while (!(m->mnattr & siz) || (amsk0 & m->mn0) == 0 || (amsk1 & m->mn1) == 0)
835                 m = &machtab[m->mncont];
836
837         DEBUG { printf("    68K: mninst=$%X, siz=$%X, mnattr=$%X, amsk0=$%X, mn0=$%X, amsk1=$%X, mn1=$%X\n", m->mninst, siz, m->mnattr, amsk0, m->mn0, amsk1, m->mn1); }
838
839         (*m->mnfunc)(m->mninst, siz);
840         goto loop;
841 }
842
843
844 //
845 // Handle the creation of labels
846 //
847 int HandleLabel(char * label, int labelType)
848 {
849         // Check for dot in front of label; means this is a local label if present
850         int environment = (*label == '.' ? curenv : 0);
851         SYM * symbol = lookup(label, LABEL, environment);
852
853         if (symbol == NULL)
854         {
855                 symbol = NewSymbol(label, LABEL, environment);
856                 symbol->sattr = 0;
857                 symbol->sattre = 0;
858         }
859         else if (symbol->sattr & DEFINED)
860                 return error("multiply-defined label '%s'", label);
861
862         // Put symbol in "order of definition" list if it's not already in it
863         AddToSymbolDeclarationList(symbol);
864
865         if (orgactive)
866         {
867                 symbol->svalue = orgaddr;
868                 symbol->sattr |= ABS | DEFINED | EQUATED;
869         }
870         else
871         {
872                 symbol->svalue = sloc;
873                 symbol->sattr |= DEFINED | cursect;
874         }
875
876         lab_sym = symbol;
877
878         // Yes, our CS professors told us to write checks for equality this way,
879         // but damn, it hurts my brain every time I look at it. :-/
880         if (0 == environment)
881                 curenv++;
882
883         // Make label global if it has a double colon
884         if (labelType == DCOLON)
885         {
886                 if (environment != 0)
887                         return error(locgl_error);
888
889                 symbol->sattr |= GLOBAL;
890         }
891
892         return 0;
893 }
894