]> Shamusworld >> Repos - rmac/blob - procln.c
Add support for some missing ptestr/ptestrw/fsmove/fdmove. Add DSM in directives tab
[rmac] / procln.c
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // PROCLN.C - Line Processing
4 // Copyright (C) 199x Landon Dyer, 2011-2020 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 as68label:
226                 label = string[tok[1]];                         // Get label name
227                 labtyp = tok[2];                                        // Get label type
228                 tok += 3;                                                       // Go to next line token
229
230                 // AS68 MODE:
231                 // Looks like another label follows the previous one, so handle
232                 // the previous one until there aren't any more
233                 if (as68_flag && (*tok == SYMBOL && tok[2] == ':'))
234                 {
235                         if (HandleLabel(label, labtyp) != 0)
236                                 goto loop;
237
238                         label_defined = label;
239
240                         goto as68label;
241                 }
242         }
243
244         // EOL is legal here...
245         if (*tok == EOL)
246                 goto normal;
247
248         // First token MUST be a symbol (if we get here, tok didn't advance)
249         if (*tok++ != SYMBOL)
250         {
251                 error("syntax error; expected symbol");
252                 goto loop;
253         }
254
255         opname = p = string[*tok++];
256
257         // Check to see if the SYMBOL is a keyword (a mnemonic or directive).
258         // On output, `state' will have one of the values:
259         //    -3          there was no symbol (EOL)
260         //    -2..-1      the symbol didn't match any keyword
261         //    0..499      vanilla directives (dc, ds, etc.)
262         //    500..999    electric directives (macro, rept, etc.)
263         //    1000..+     mnemonics (move, lsr, etc.)
264         for(state=0; state>=0;)
265         {
266                 j = mnbase[state] + (int)tolowertab[*p];
267
268                 // Reject, character doesn't match
269                 if (mncheck[j] != state)
270                 {
271                         state = -1;                                             // No match
272                         break;
273                 }
274
275                 // Must accept or reject at EOS
276                 if (!*++p)
277                 {
278                         state = mnaccept[j];                    // (-1 on no terminal match)
279                         break;
280                 }
281
282                 state = mntab[j];
283         }
284
285         // Check for ".b" ".w" ".l" after directive, macro or mnemonic.
286         siz = SIZN;
287
288         switch (*tok)
289         {
290         case DOTW: siz = SIZW, tok++; break;
291         case DOTL: siz = SIZL, tok++; break;
292         case DOTB: siz = SIZB, tok++; break;
293         case DOTD: siz = SIZD, tok++; break;
294         case DOTP: siz = SIZP, tok++; break;
295         case DOTQ: siz = SIZQ, tok++; break;
296         case DOTS: siz = SIZS, tok++; break;
297         case DOTX: siz = SIZX, tok++; break;
298         }
299
300         // Do special directives (500..999) (These must be handled in "real time")
301         if (state >= 500 && state < 1000)
302         {
303                 switch (state)
304                 {
305                 case MN_IF:
306                         d_if();
307                         goto loop;
308
309                 case MN_ELSE:
310                         d_else();
311                         goto loop;
312
313                 case MN_ENDIF:
314                         d_endif();
315                         goto loop;
316
317                 case MN_IIF:                                            // .iif --- immediate if
318                         if (disabled || expr(exprbuf, &eval, &eattr, &esym) != OK)
319                                 goto loop;
320
321                         if (!(eattr & DEFINED))
322                         {
323                                 error(undef_error);
324                                 goto loop;
325                         }
326
327                         if (*tok++ != ',')
328                         {
329                                 error(comma_error);
330                                 goto loop;
331                         }
332
333                         if (eval == 0)
334                                 goto loop;
335
336                         goto loop1;
337
338                 case MN_MACRO:                                          // .macro --- macro definition
339                         if (!disabled)
340                         {
341                                 // Label on a macro definition is bad mojo... Warn the user
342                                 if (label != NULL)
343                                         warn(lab_ignored);
344
345                                 DefineMacro();
346                         }
347
348                         goto loop;
349
350                 case MN_EXITM:                                          // .exitm --- exit macro
351                 case MN_ENDM:                                           // .endm --- same as .exitm
352                         if (!disabled)
353                         {
354                                 if (label != NULL)
355                                         warn(lab_ignored);
356
357                                 ExitMacro();
358                         }
359
360                         goto loop;
361
362                 case MN_REPT:
363                         if (!disabled)
364                         {
365                                 // Handle labels on REPT directive lines...
366                                 if (label)
367                                 {
368                                         if (HandleLabel(label, labtyp) != 0)
369                                                 goto loop;
370
371                                         label_defined = label;
372                                 }
373
374                                 HandleRept();
375                         }
376
377                         goto loop;
378
379                 case MN_ENDR:
380                         if (!disabled)
381                                 error("mis-nested .endr");
382
383                         goto loop;
384                 }
385         }
386
387 normal:
388         if (disabled)                                                   // Conditionally disabled code
389                 goto loop;
390
391         // Do equates
392         if (equate != NULL)
393         {
394                 // Pick global or local symbol enviroment
395                 j = (*equate == '.' ? curenv : 0);
396                 sy = lookup(equate, LABEL, j);
397
398                 if (sy == NULL)
399                 {
400                         sy = NewSymbol(equate, LABEL, j);
401                         sy->sattr = 0;
402
403                         if (equtyp == DEQUALS)
404                         {
405                                 // Can't GLOBAL a local symbol
406                                 if (j)
407                                 {
408                                         error(locgl_error);
409                                         goto loop;
410                                 }
411
412                                 sy->sattr = GLOBAL;
413                         }
414                 }
415                 else if ((sy->sattr & DEFINED) && equtyp != SET)
416                 {
417                         if ((equtyp == EQUREG) && (sy->sattre & UNDEF_EQUR))
418                         {
419                                 sy->sattre &= ~UNDEF_EQUR;
420                                 sy->svalue = 0;
421                         }
422                         else if ((equtyp == CCDEF) && (sy->sattre & UNDEF_CC))
423                         {
424                                 sy->sattre &= ~UNDEF_CC;
425                                 sy->svalue = 0;
426                         }
427                         else
428                         {
429                                 error("multiple equate to '%s'", sy->sname);
430                                 goto loop;
431                         }
432                 }
433
434                 // Put symbol in "order of definition" list if it's not already there
435                 AddToSymbolDeclarationList(sy);
436
437                 // Parse value to equate symbol to;
438                 // o  .equr
439                 // o  .reg
440                 // o  everything else
441                 if (equtyp == EQUREG)
442                 {
443 //Linko's request to issue a warning on labels that equated to the same
444 //register would go here. Not sure how to implement it though. :-/
445 /*
446 Maybe like this way:
447 have an array of bools with 64 entries. Whenever a register is equated, set the
448 corresponding register bool to true. Whenever it's undef'ed, set it to false.
449 When checking to see if it's already been equated, issue a warning.
450 */
451                         // Check that we are in a RISC section
452                         if (!rgpu && !rdsp)
453                         {
454                                 error(".equr/.regequ must be defined in .gpu/.dsp section");
455                                 goto loop;
456                         }
457
458                         // Check for register to equate to
459                         if ((*tok >= KW_R0) && (*tok <= KW_R31))
460                         {
461 //                              sy->sattre  = EQUATEDREG | RISCSYM;     // Mark as equated register
462                                 sy->sattre  = EQUATEDREG;       // Mark as equated register
463                                 riscreg = (*tok - KW_R0);
464 //is there any reason to do this, since we're putting this in svalue?
465 //i'm thinking, no. Let's test that out! :-D
466 //                              sy->sattre |= (riscreg << 8);           // Store register number
467 //everything seems to build fine without it... We'll leave it here Just In Case(tm)
468
469 #define DEBODGE_REGBANK
470 #ifdef DEBODGE_REGBANK
471                                 // Default is current state of "regbank"
472                                 registerbank = regbank;
473 #else
474                                 // Default is no register bank specified
475                                 registerbank = BANK_N;
476 #endif
477
478                                 // Check for ",<bank #>" override notation
479                                 if ((tok[1] == ',') && (tok[2] == CONST))
480                                 {
481                                         // Advance token pointer to the constant
482                                         tok += 3;
483
484                                         // Anything other than a 0 or a 1 will result in "No Bank"
485                                         if (*(uint64_t *)tok == 0)
486                                                 registerbank = BANK_0;
487                                         else if (*(uint64_t *)tok == 1)
488                                                 registerbank = BANK_1;
489                                 }
490
491 #ifdef DEBODGE_REGBANK
492                                 sy->sattre |= registerbank;     // Store register bank
493 #else
494 // What needs to happen here is to prime registerbank with regbank, then use
495 // registerbank down below for the bank marking.
496 #warning "!!! regbank <-> registerbank confusion here !!!"
497 // The question here is why, if we're allowed to override the ".regbankN" rules
498 // above, then why is it using the one set by the directive in the extended
499 // attributes and not in what ends up in symbol->svalue?
500 // ".regbankN" is not an original Madmac directive, so it's suspect
501                                 sy->sattre |= regbank;          // Store register bank
502 #endif
503                                 eattr = ABS | DEFINED | GLOBAL;
504                                 eval = riscreg;
505                                 tok++;
506                         }
507                         // Checking for a register symbol
508                         else if (tok[0] == SYMBOL)
509                         {
510                                 sy2 = lookup(string[tok[1]], LABEL, j);
511
512                                 // Make sure symbol is a valid equreg
513                                 if (!sy2 || !(sy2->sattre & EQUATEDREG))
514                                 {
515                                         error("invalid GPU/DSP .equr/.regequ definition");
516                                         goto loop;
517                                 }
518                                 else
519                                 {
520                                         eattr = ABS | DEFINED | GLOBAL; // Copy symbols attributes
521                                         sy->sattre = sy2->sattre;
522                                         eval = (sy2->svalue & 0xFFFFF0FF);
523                                         tok += 2;
524                                 }
525                         }
526                         else
527                         {
528                                 error("invalid GPU/DSP .equr/.regequ definition");
529                                 goto loop;
530                         }
531                 }
532                 else if (equtyp == REG)
533                 {
534                         if (reglist(&rmask) < 0)
535                                 goto loop;
536
537                         eval = (uint32_t)rmask;
538                         eattr = ABS | DEFINED;
539                 }
540                 else if (equtyp == CCDEF)
541                 {
542                         sy->sattre |= EQUATEDCC;
543                         eattr = ABS | DEFINED | GLOBAL;
544
545                         if (tok[0] == SYMBOL)
546                         {
547                                 sy2 = lookup(string[tok[1]], LABEL, j);
548
549                                 if (!sy2 || !(sy2->sattre & EQUATEDCC))
550                                 {
551                                         error("invalid gpu/dsp .ccdef definition");
552                                         goto loop;
553                                 }
554                                 else
555                                 {
556                                         eattr = ABS | DEFINED | GLOBAL;
557                                         sy->sattre = sy2->sattre;
558                                         eval = sy2->svalue;
559                                         tok += 2;
560                                 }
561                         }
562                         else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
563                                 goto loop;
564                 }
565                 // equ an equr
566                 else if (*tok == SYMBOL)
567                 {
568                         sy2 = lookup(string[tok[1]], LABEL, j);
569
570                         if (sy2 && (sy2->sattre & EQUATEDREG))
571                         {
572                                 sy->stype = sy2->stype;
573                                 sy->sattr = sy2->sattr;
574                                 sy->sattre = sy2->sattre;
575                                 sy->svalue = sy2->svalue;
576                                 goto loop;
577                         }
578                         else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
579                                 goto loop;
580                 }
581                 else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
582                         goto loop;
583
584                 if (!(eattr & DEFINED))
585                 {
586                         error(undef_error);
587                         goto loop;
588                 }
589
590                 sy->sattr |= eattr | EQUATED;   // Symbol inherits value and attributes
591                 sy->svalue = eval;
592
593                 if (list_flag)                                  // Put value in listing
594                         listvalue((uint32_t)eval);
595
596                 ErrorIfNotAtEOL();                              // Must be at EOL now
597                 goto loop;
598         }
599
600         // Do labels
601         if (label != NULL)
602         {
603                 // Non-zero == error occurred
604                 if (HandleLabel(label, labtyp) != 0)
605                         goto loop;
606
607                 label_defined = label;
608         }
609
610         // Punt on EOL
611         if (state == -3)
612                 goto loop;
613
614         // If we're in 6502 mode and are still in need of a mnemonic, then search
615         // for valid 6502 mnemonic.
616         if (m6502 && (state < 0 || state >= 1000))
617         {
618 #ifdef ST
619                 state = kmatch(opname, mpbase, mpcheck, mptab, mpaccept);
620 #else
621                 for(state=0, p=opname; state>= 0; )
622                 {
623                         j = mpbase[state] + tolowertab[*p];
624
625                         if (mpcheck[j] != state)        // Reject, character doesn't match
626                         {
627                                 state = -1;             // No match
628                                 break;
629                         }
630
631                         if (!*++p)
632                         {                       // Must accept or reject at EOS
633                                 state = mpaccept[j];    // (-1 on no terminal match)
634                                 break;
635                         }
636
637                         state = mptab[j];
638                 }
639 #endif
640
641                 // Call 6502 code generator if we found a mnemonic
642                 if (state >= 2000)
643                 {
644                         m6502cg(state - 2000);
645                         goto loop;
646                 }
647         }
648
649         // If we are in GPU or DSP mode and still in need of a mnemonic then search
650         // for one
651         if ((rgpu || rdsp) && (state < 0 || state >= 1000))
652         {
653                 for(state=0, p=opname; state>=0;)
654                 {
655                         j = mrbase[state] + (int)tolowertab[*p];
656
657                         // Reject, character doesn't match
658                         if (mrcheck[j] != state)
659                         {
660                                 state = -1;                                     // No match
661                                 break;
662                         }
663
664                         // Must accept or reject at EOS
665                         if (!*++p)
666                         {
667                                 state = mraccept[j];            // (-1 on no terminal match)
668                                 break;
669                         }
670
671                         state = mrtab[j];
672                 }
673
674                 // Call RISC code generator if we found a mnemonic
675                 if (state >= 3000)
676                 {
677                         GenerateRISCCode(state);
678                         goto loop;
679                 }
680         }
681
682         // If we are in OP mode and still in need of a mnemonic then search for one
683         if (robjproc && ((state < 0) || (state >= 1000)))
684         {
685                 for(state=0, p=opname; state>=0;)
686                 {
687                         j = mobase[state] + (int)tolowertab[*p];
688
689                         // Reject, character doesn't match
690                         if (mocheck[j] != state)
691                         {
692                                 state = -1;                                     // No match
693                                 break;
694                         }
695
696                         // Must accept or reject at EOS
697                         if (!*++p)
698                         {
699                                 state = moaccept[j];            // (-1 on no terminal match)
700                                 break;
701                         }
702
703                         state = motab[j];
704                 }
705
706                 // Call OP code generator if we found a mnemonic
707                 if (state >= 3100)
708                 {
709                         GenerateOPCode(state);
710                         goto loop;
711                 }
712         }
713
714         // If we are in 56K mode and still in need of a mnemonic then search for one
715         if (dsp56001 && ((state < 0) || (state >= 1000)))
716         {
717                 for(state=0, p=opname; state>=0;)
718                 {
719                         j = dspbase[state] + (int)tolowertab[*p];
720
721                         // Reject, character doesn't match
722                         if (dspcheck[j] != state)
723                         {
724                                 state = -1;                                     // No match
725                                 break;
726                         }
727
728                         // Must accept or reject at EOS
729                         if (!*++p)
730                         {
731                                 state = dspaccept[j];           // (-1 on no terminal match)
732                                 break;
733                         }
734
735                         state = dsptab[j];
736                 }
737
738                 // Call DSP code generator if we found a mnemonic
739                 if (state >= 2000)
740                 {
741                         LONG parcode;
742                         int operands;
743                         MNTABDSP * md = &dsp56k_machtab[state - 2000];
744                         deposit_extra_ea = 0;   // Assume no extra word needed
745
746                         if (md->mnfunc == dsp_mult)
747                         {
748                                 // Special case for multiplication instructions: they require
749                                 // 3 operands
750                                 if ((operands = dsp_amode(3)) == ERROR)
751                                         goto loop;
752                         }
753                         else if ((md->mnattr & PARMOVE) && md->mn0 != M_AM_NONE)
754                         {
755                                 if (dsp_amode(2) == ERROR)
756                                         goto loop;
757                         }
758                         else if ((md->mnattr & PARMOVE) && md->mn0 == M_AM_NONE)
759                         {
760                                 // Instructions that have parallel moves but use no operands
761                                 // (probably only move). In this case, don't parse addressing
762                                 // modes--just go straight to parallel parse
763                                 dsp_am0 = dsp_am1 = M_AM_NONE;
764                         }
765                         else
766                         {
767                                 // Non parallel move instructions can have up to 4 parameters
768                                 // (well, only tcc instructions really)
769                                 if ((operands = dsp_amode(4)) == ERROR)
770                                         goto loop;
771
772                                 if (operands == 4)
773                                 {
774                                         dsp_tcc4(md->mninst);
775                                         goto loop;
776                                 }
777                         }
778
779                         if (md->mnattr & PARMOVE)
780                         {
781                                 // Check for parallel moves
782                                 if ((parcode = parmoves(dsp_a1reg)) == ERROR)
783                                         goto loop;
784                         }
785                         else
786                         {
787                                 if (*tok != EOL)
788                                         error("parallel moves not allowed with this instruction");
789
790                                 parcode = 0;
791                         }
792
793                         while ((dsp_am0 & md->mn0) == 0 || (dsp_am1 & md->mn1) == 0)
794                                 md = &dsp56k_machtab[md->mncont];
795
796                         (*md->mnfunc)(md->mninst | (parcode << 8));
797                         goto loop;
798                 }
799         }
800
801         // Invoke macro or complain about bad mnemonic
802         if (state < 0)
803         {
804                 if ((sy = lookup(opname, MACRO, 0)) != NULL)
805                         InvokeMacro(sy, siz);
806                 else
807                         error("unknown op '%s'", opname);
808
809                 goto loop;
810         }
811
812         // Call directive handlers
813         if (state < 500)
814         {
815                 (*dirtab[state])(siz);
816                 goto loop;
817         }
818
819         // Do mnemonics
820         //  o  can't deposit instrs in BSS or ABS
821         //  o  do automatic .EVEN for instrs
822         //  o  allocate space for largest possible instr
823         //  o  can't do ".b" operations with an address register
824         if (scattr & SBSS)
825         {
826                 error("cannot initialize non-storage (BSS) section");
827                 goto loop;
828         }
829
830         if (sloc & 1)                                   // Automatic .even
831                 auto_even();
832
833         if (challoc - ch_size < 18)             // Make sure have space in current chunk
834                 chcheck(0);
835
836         m = &machtab[state - 1000];
837
838         // Call special-mode handler
839         if (m->mnattr & CGSPECIAL)
840         {
841                 (*m->mnfunc)(m->mninst, siz);
842                 goto loop;
843         }
844
845         if (amode(1) < 0)                               // Parse 0, 1 or 2 addr modes
846                 goto loop;
847
848         // Check that we're at EOL
849         // The only exception is ptestr/ptestw instructions
850         // that have 3 or 4 operands and are not handled by
851         // amode(). (yes, we're taking a performance hit here sadly)
852         if (m->mnfunc != m_ptestr && m->mnfunc != m_ptestw)
853                 if (*tok != EOL)
854                         error(extra_stuff);
855
856         amsk0 = amsktab[am0];
857         amsk1 = amsktab[am1];
858
859         // Catch attempts to use ".B" with an address register (yes, this check
860         // does work at this level)
861         if (siz == SIZB && (am0 == AREG || am1 == AREG))
862         {
863                 error("cannot use '.b' with an address register");
864                 goto loop;
865         }
866
867         // Keep a backup of chptr (used for optimisations during codegen)
868         chptr_opcode = chptr;
869
870         while (!(m->mnattr & siz) || (amsk0 & m->mn0) == 0 || (amsk1 & m->mn1) == 0)
871                 m = &machtab[m->mncont];
872
873         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); }
874
875         (*m->mnfunc)(m->mninst, siz);
876         goto loop;
877 }
878
879
880 //
881 // Handle the creation of labels
882 //
883 int HandleLabel(char * label, int labelType)
884 {
885         // Check for dot in front of label; means this is a local label if present
886         int environment = (*label == '.' ? curenv : 0);
887         SYM * symbol = lookup(label, LABEL, environment);
888
889         if (symbol == NULL)
890         {
891                 symbol = NewSymbol(label, LABEL, environment);
892                 symbol->sattr = 0;
893                 symbol->sattre = 0;
894         }
895         else if (symbol->sattr & DEFINED)
896                 return error("multiply-defined label '%s'", label);
897
898         // Put symbol in "order of definition" list if it's not already in it
899         AddToSymbolDeclarationList(symbol);
900
901         if (orgactive)
902         {
903                 symbol->svalue = orgaddr;
904                 symbol->sattr |= ABS | DEFINED | EQUATED;
905         }
906         else
907         {
908                 symbol->svalue = sloc;
909                 symbol->sattr |= DEFINED | cursect;
910         }
911
912         lab_sym = symbol;
913
914         // Yes, our CS professors told us to write checks for equality this way,
915         // but damn, it hurts my brain every time I look at it. :-/
916         if (0 == environment)
917                 curenv++;
918
919         // Make label global if it has a double colon
920         if (labelType == DCOLON)
921         {
922                 if (environment != 0)
923                         return error(locgl_error);
924
925                 symbol->sattr |= GLOBAL;
926         }
927
928         return 0;
929 }
930