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