]> Shamusworld >> Repos - rmac/blob - procln.c
Forgot to bump patch level :-P
[rmac] / procln.c
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // PROCLN.C - Line Processing
4 // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source Utilised with the Kind Permission of Landon Dyer
7 //
8
9 #include "procln.h"
10 #include "listing.h"
11 #include "amode.h"
12 #include "error.h"
13 #include "sect.h"
14 #include "expr.h"
15 #include "mach.h"
16 #include "direct.h"
17 #include "macro.h"
18 #include "symbol.h"
19 #include "risca.h"
20
21 #define DEF_KW                                  // Declare keyword values 
22 #include "kwtab.h"                              // Incl generated keyword tables & defs
23
24 #define DEF_MN                                  // Incl 68k keyword definitions
25 #define DECL_MN                                 // Incl 68k keyword state machine tables
26 #include "mntab.h"
27
28 #define DEF_MR
29 #define DECL_MR
30 #include "risckw.h"
31
32
33 IFENT * ifent;                                  // Current ifent
34 static IFENT ifent0;                    // Root ifent
35 static IFENT * f_ifent;                 // Freelist of ifents
36 static int disabled;                    // Assembly conditionally disabled
37 int just_bss;                                   // 1, ds.b in microprocessor mode 
38 VALUE pcloc;                                    // Value of "PC" at beginning of line 
39 IFENT * ifent;                                  // Current ifent
40 SYM * lab_sym;                                  // Label on line (or NULL)
41
42 char extra_stuff[] = "extra (unexpected) text found after addressing mode";
43 char * comma_error = "missing comma";
44 char * syntax_error = "syntax error";
45 char * locgl_error = "cannot GLOBL local symbol";
46 char * lab_ignored = "label ignored";
47
48 // Table to convert an addressing-mode number to a bitmask.
49 LONG amsktab[0112] = {
50         M_DREG, M_DREG, M_DREG, M_DREG,
51         M_DREG, M_DREG, M_DREG, M_DREG,
52
53         M_AREG, M_AREG, M_AREG, M_AREG,
54         M_AREG, M_AREG, M_AREG, M_AREG,
55
56         M_AIND, M_AIND, M_AIND, M_AIND,
57         M_AIND, M_AIND, M_AIND, M_AIND,
58
59         M_APOSTINC, M_APOSTINC, M_APOSTINC, M_APOSTINC,
60         M_APOSTINC, M_APOSTINC, M_APOSTINC, M_APOSTINC,
61
62         M_APREDEC, M_APREDEC, M_APREDEC, M_APREDEC,
63         M_APREDEC, M_APREDEC, M_APREDEC, M_APREDEC,
64
65         M_ADISP, M_ADISP, M_ADISP, M_ADISP,
66         M_ADISP, M_ADISP, M_ADISP, M_ADISP,
67
68         M_AINDEXED, M_AINDEXED, M_AINDEXED, M_AINDEXED,
69         M_AINDEXED, M_AINDEXED, M_AINDEXED, M_AINDEXED,
70
71         M_ABSW,                                                                                 // 070
72         M_ABSL,                                                                                 // 071
73         M_PCDISP,                                                                               // 072
74         M_PCINDEXED,                                                                    // 073
75         M_IMMED,                                                                                // 074
76         0L,                                                                                             // 075
77         0L,                                                                                             // 076
78         0L,                                                                                             // 077
79         M_ABASE,                                                                                // 0100
80         M_MEMPOST,                                                                              // 0101 
81         M_MEMPRE,                                                                               // 0102 
82         M_PCBASE,                                                                               // 0103
83         M_PCMPOST,                                                                              // 0104
84         M_PCMPRE,                                                                               // 0105
85         M_AM_USP,                                                                               // 0106
86         M_AM_SR,                                                                                // 0107 
87         M_AM_CCR,                                                                               // 0110
88         M_AM_NONE                                                                               // 0111 
89 };                                                                                                      // 0112 length
90
91
92 //
93 // Initialize Line Processor
94 //
95 void init_procln(void)
96 {
97         disabled = 0;
98         ifent = &ifent0;
99         f_ifent = ifent0.if_prev = NULL;
100         ifent0.if_state = 0;
101 }
102
103
104 //
105 // Line Processor
106 //
107 void Assemble(void)
108 {
109         int state;                                      // Keyword machine state (output)
110         int j;                                          // Random int, must be fast
111         char * p;                                       // Random char ptr, must be fast
112         TOKEN * tk;                                     // First token in line
113         char * label;                           // Symbol (or NULL)
114         char * equate;                          // Symbol (or NULL)
115         int labtyp = 0;                         // Label type (':', DCOLON)
116         int equtyp = 0;                         // Equ type ('=', DEQUALS)
117         VALUE eval;                                     // Expression value
118         WORD eattr;                                     // Expression attributes
119         SYM * esym;                                     // External symbol involved in expr.
120         WORD siz = 0;                           // Size suffix to mnem/diretve/macro
121         LONG amsk0, amsk1;                      // Address-type masks for ea0, ea1
122         MNTAB * m;                                      // Code generation table pointer
123         SYM * sy, * sy2;                        // Symbol (temp usage)
124         char * opname = NULL;           // Name of dirctve/mnemonic/macro
125         int listflag;                           // 0: Don't call listeol()
126         int as68mode = 0;                       // 1: Handle multiple labels
127         WORD rmask;                                     // Register list, for REG
128         int registerbank;                       // RISC register bank
129         int riscreg;                            // RISC register
130
131         listflag = 0;                           // Initialise listing flag
132
133 loop:                                                   // Line processing loop label
134
135         // Get another line of tokens
136         if (tokln() == TKEOF)
137         {
138 if (verb_flag) printf("Assemble: Found TKEOF flag...\n");
139                 if (list_flag && listflag)                      // Flush last line of source
140                         listeol();
141
142                 if (ifent->if_prev != NULL)                     // Check conditional token
143                         error("hit EOF without finding matching .endif");
144
145                 return;
146         }
147
148         DEBUG DumpTokenBuffer();
149
150         if (list_flag)
151         {
152                 if (listflag && listing > 0)
153                         listeol();                                              // Tell listing generator about EOL
154
155                 lstout((char)(disabled ? '-' : lntag)); // Prepare new line for listing
156                 listflag = 1;                                           // OK to call `listeol' now
157                 just_bss = 0;                                           // Reset just_bss mode
158         }
159
160         state = -3;                                                             // No keyword (just EOL)
161         label = NULL;                                                   // No label
162         lab_sym = NULL;                                                 // No (exported) label
163         equate = NULL;                                                  // No equate
164         tk = tok;                                                               // Save first token in line
165         pcloc = (VALUE)sloc;                                    // Set beginning-of-line PC
166
167 loop1:                                                                          // Internal line processing loop
168
169         if (*tok == EOL)                                                // Restart loop if end-of-line
170                 goto loop;
171
172         // First token MUST be a symbol
173         if (*tok != SYMBOL)
174         {
175                 error(syntax_error);
176                 goto loop;
177         }
178
179         j = (int)tok[2];                                                // Skip equates (normal statements)
180
181         if (j == '=' || j == DEQUALS || j == SET || j == REG || j == EQUREG || j == CCDEF)
182         {
183 //              equate = (char *)tok[1];
184                 equate = string[tok[1]];
185                 equtyp = j;
186                 tok += 3;
187                 goto normal;
188         }
189
190         // Skip past label (but record it)
191         if (j == ':' || j == DCOLON)
192         {
193 as68label:
194 //              label = (char *)tok[1];                         // Get label name
195                 label = string[tok[1]];                         // Get label name
196                 labtyp = tok[2];                                        // Get label type
197                 tok += 3;                                                       // Go to next line token
198
199                 // Handle multiple labels; if there's another label, go process it, 
200                 // and come back at `as68label' above.
201                 if (as68_flag)
202                 {
203                         as68mode = 0;
204
205                         if (*tok == SYMBOL && tok[2] == ':')
206                         {
207                                 as68mode = 1;
208                                 goto do_label;
209                         }
210                 }
211         }
212
213         if (*tok == EOL)                                                // EOL is legal here...
214                 goto normal;
215
216         // Next token MUST be a symbol
217         if (*tok++ != SYMBOL)
218         {
219                 error(syntax_error);
220                 goto loop;
221         }
222
223 // This is the problem here: On 64-bit platforms, this cuts the native pointer
224 // in half. We need to figure out how to fix this.
225 //#warning "!!! Bad pointer !!!"
226 #if 0
227         opname = p = (char *)*tok++;                    // Store opcode name here
228 #else
229         opname = p = string[*tok++];
230 #endif
231
232         // Check to see if the SYMBOL is a keyword (a mnemonic or directive).
233         // On output, `state' will have one of the values:
234         //    -3          there was no symbol (EOL)
235         //    -2..-1      the symbol didn't match any keyword
236         //    0..499      vanilla directives (dc, ds, etc.)
237         //    500..999    electric directives (macro, rept, etc.)
238         //    1000..+     mnemonics (move, lsr, etc.)
239         for(state=0; state>=0;)
240         {
241                 j = mnbase[state] + (int)tolowertab[*p];
242
243                 // Reject, character doesn't match
244                 if (mncheck[j] != state)
245                 {
246                         state = -1;                                             // No match
247                         break;
248                 }
249
250                 // Must accept or reject at EOS
251                 if (!*++p)
252                 {
253                         state = mnaccept[j];                    // (-1 on no terminal match)
254                         break;
255                 }
256
257                 state = mntab[j];
258         }
259
260         // Check for ".b" ".w" ".l" after directive, macro or mnemonic.
261         siz = SIZN;
262
263         if (*tok == DOTW) 
264                 siz = SIZW, ++tok;
265         else if (*tok == DOTL)
266                 siz = SIZL, ++tok;
267         else if (*tok == DOTB)
268                 siz = SIZB, ++tok;
269
270         // Do special directives (500..999) (These must be handled in "real time")
271         if (state >= 500 && state < 1000)
272         {
273                 switch (state)
274                 {
275                 case MN_IF:
276                         d_if ();
277                 goto loop;
278                 case MN_ELSE:
279                         d_else();
280                         goto loop;
281                 case MN_ENDIF:
282                         d_endif ();
283                         goto loop;
284                 case MN_IIF:                                            // .iif --- immediate if
285                         if (disabled || expr(exprbuf, &eval, &eattr, &esym) != OK)
286                                 goto loop;
287
288                         if (!(eattr & DEFINED))
289                         {
290                                 error(undef_error);
291                                 goto loop;
292                         }
293
294                         if (*tok++ != ',')
295                         {
296                                 error(comma_error);
297                                 goto loop;
298                         }
299
300                         if (eval == 0)
301                                 goto loop;
302
303                         goto loop1;
304                 case MN_MACRO:                                          // .macro --- macro definition
305                         if (!disabled)
306                         {
307                                 if (label != NULL)
308                                         warn(lab_ignored);
309
310                                 DefineMacro();
311                         }
312
313                         goto loop;
314                 case MN_EXITM:                                          // .exitm --- exit macro
315                 case MN_ENDM:                                           // .endm --- same as .exitm
316                         if (!disabled)
317                         {
318                                 if (label != NULL)
319                                         warn(lab_ignored);
320
321                                 ExitMacro();
322                         }
323
324                         goto loop;
325                 case MN_REPT:
326                         if (!disabled)
327                         {
328                                 if (label != NULL)
329                                         warn(lab_ignored);
330
331                                 defrept();
332                         }
333
334                         goto loop;
335                 case MN_ENDR:
336                         if (!disabled)
337                                 error("mis-nested .endr");
338
339                         goto loop;
340                 }
341         }
342
343 normal:
344         if (disabled)                                                   // Conditionally disabled code
345                 goto loop;
346
347         // Do equates
348         if (equate != NULL)
349         {
350                 j = 0;                                                          // Pick global or local sym enviroment
351
352                 if (*equate == '.')
353                         j = curenv;
354
355                 sy = lookup(equate, LABEL, j);
356
357                 if (sy == NULL)
358                 {
359                         sy = NewSymbol(equate, LABEL, j);
360                         sy->sattr = 0;
361
362                         if (equtyp == DEQUALS)
363                         {
364                                 // Can't GLOBAL a local symbol
365                                 if (j)
366                                 {
367                                         error(locgl_error);
368                                         goto loop;
369                                 }
370
371                                 sy->sattr = GLOBAL;
372                         }
373                 }
374                 else if ((sy->sattr & DEFINED) && equtyp != SET)
375                 {
376                         if ((equtyp == EQUREG) && (sy->sattre & UNDEF_EQUR))
377                         {
378                                 sy->sattre |= ~UNDEF_EQUR; 
379                                 sy->svalue  = 0;
380                         }
381                         else if ((equtyp == CCDEF) && (sy->sattre & UNDEF_CC))
382                         {
383                                 sy->sattre |= ~UNDEF_CC;
384                                 sy->svalue = 0;
385                         }
386                         else
387                         {
388                                 errors("multiple equate to '%s'", sy->sname);
389                                 goto loop;
390                         }
391                 }
392
393                 // Put symbol in "order of definition" list
394                 if (!(sy->sattr & SDECLLIST))
395                         sym_decl(sy);
396
397                 // Parse value to equate symbol to;
398                 // o  .equr
399                 // o  .reg
400                 // o  everything else
401                 if (equtyp == EQUREG)
402                 {
403                         // Check that we are in a RISC section
404                         if (!rgpu && !rdsp)
405                         {
406                                 error(".equr/.regequ must be defined in .gpu/.dsp section");
407                                 goto loop;
408                         }
409
410                         // Check for register to equate to
411                         if ((*tok >= KW_R0) && (*tok <= KW_R31))
412                         {
413                                 sy->sattre  = EQUATEDREG | RISCSYM;     // Mark as equated register
414                                 riscreg = (*tok - KW_R0);
415                                 sy->sattre |= (riscreg << 8);           // Store register number
416
417                                 if ((tok[1] == ',') && (tok[2] == CONST))
418                                 {
419                                         tok += 3;
420
421                                         if (*tok == 0)
422                                                 registerbank = BANK_0;
423                                         else if (*tok == 1)
424                                                 registerbank = BANK_1;
425                                         else
426                                                 registerbank = BANK_N;
427                                 }
428                                 else
429                                 {
430                                         registerbank = BANK_N;
431                                 }
432
433                                 sy->sattre |= regbank;          // Store register bank
434                                 eattr = ABS | DEFINED | GLOBAL;
435                                 eval = 0x80000080 + (riscreg) + (registerbank << 8);
436                                 tok++;
437                         }
438                         // Checking for a register symbol
439                         else if (tok[0] == SYMBOL)
440                         {
441 //                              sy2 = lookup((char *)tok[1], LABEL, j);
442                                 sy2 = lookup(string[tok[1]], LABEL, j);
443
444                                 // Make sure symbol is a valid equreg
445                                 if (!sy2 || !(sy2->sattre & EQUATEDREG))
446                                 {
447                                         error("invalid GPU/DSP .equr/.regequ definition");
448                                         goto loop;
449                                 }
450                                 else
451                                 {
452                                         eattr = ABS | DEFINED | GLOBAL; // Copy symbols attributes
453                                         sy->sattre = sy2->sattre;
454                                         eval = (sy2->svalue & 0xFFFFF0FF);
455                                         tok += 2;
456                                 }
457                         }
458                         else
459                         {
460                                 error("invalid GPU/DSP .equr/.regequ definition");
461                                 goto loop;
462                         }
463                 }
464                 else if (equtyp == REG)
465                 {
466                         if (reglist(&rmask) < 0)
467                                 goto loop;
468
469                         eval = (VALUE)rmask;
470                         eattr = ABS | DEFINED;
471                 }
472                 else if (equtyp == CCDEF)
473                 {
474                         sy->sattre |= EQUATEDCC;
475                         eattr = ABS | DEFINED | GLOBAL;
476
477                         if (tok[0] == SYMBOL)
478                         {
479 //                              sy2 = lookup((char *)tok[1], LABEL, j);
480                                 sy2 = lookup(string[tok[1]], LABEL, j);
481
482                                 if (!sy2 || !(sy2->sattre & EQUATEDCC))
483                                 {
484                                         error("invalid gpu/dsp .ccdef definition");
485                                         goto loop;
486                                 }
487                                 else
488                                 {
489                                         eattr = ABS | DEFINED | GLOBAL;
490                                         sy->sattre = sy2->sattre;
491                                         eval = sy2->svalue;
492                                         tok += 2;
493                                 }
494                         }
495                         else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
496                                 goto loop;
497                 }
498                 //equ a equr
499                 else if (*tok == SYMBOL)
500                 {
501 //                      sy2 = lookup((char *)tok[1], LABEL, j);
502                         sy2 = lookup(string[tok[1]], LABEL, j);
503
504                         if (sy2 && (sy2->sattre & EQUATEDREG))
505                         {
506                                 sy->stype = sy2->stype;
507                                 sy->sattr = sy2->sattr;
508                                 sy->sattre = sy2->sattre;
509                                 sy->svalue = (sy2->svalue & 0xFFFFF0FF);
510                                 goto loop;
511                         }
512                         else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
513                                 goto loop;
514                 }
515                 else if (expr(exprbuf, &eval, &eattr, &esym) != OK)
516                         goto loop;
517
518                 if (!(eattr & DEFINED))
519                 {
520                         error(undef_error);
521                         goto loop;
522                 }
523
524                 sy->sattr |= eattr | EQUATED;           // Symbol inherits value and attributes
525                 sy->svalue = eval;
526
527                 if (list_flag)                                          // Put value in listing
528                         listvalue(eval);
529
530                 at_eol();                                                       // Must be at EOL now
531                 goto loop;
532         }
533
534         // Do labels
535         if (label != NULL)
536         {
537 do_label:
538                 // Check for dot in front of label; means this is a local label if present
539 #if 0
540                 j = 0;
541
542                 if (*label == '.')
543                         j = curenv;
544 #else
545                 j = (*label == '.' ? curenv : 0);
546 #endif
547
548                 sy = lookup(label, LABEL, j);
549
550                 if (sy == NULL)
551                 {
552                         sy = NewSymbol(label, LABEL, j);
553                         sy->sattr = 0;
554                         sy->sattre = RISCSYM;
555                 }
556                 else if (sy->sattr & DEFINED)
557                 {
558                         errors("multiply-defined label '%s'", label);
559                         goto loop;
560                 }
561
562                 // Put symbol in "order of definition" list
563                 if (!(sy->sattr & SDECLLIST))
564                         sym_decl(sy);
565
566                 if (orgactive)
567                 {
568                         sy->svalue = orgaddr;
569                         sy->sattr |= ABS | DEFINED | EQUATED;
570                 }
571                 else
572                 {
573                         sy->svalue = sloc;
574                         sy->sattr |= DEFINED | cursect;
575                 }
576
577                 lab_sym = sy;
578
579                 if (!j)
580                         curenv++;
581
582                 // Make label global
583                 if (labtyp == DCOLON)
584                 {
585                         if (j)
586                         {
587                                 error(locgl_error);
588                                 goto loop;
589                         }
590
591                         sy->sattr |= GLOBAL;
592                 }
593
594                 // If we're in as68 mode, and there's another label, go back and handle it
595                 if (as68_flag && as68mode)
596                         goto as68label;
597         }
598
599         // Punt on EOL
600         if (state == -3)
601                 goto loop;
602
603         // If we are in GPU or DSP mode and still in need of a mnemonic then search
604         // for one
605         if ((rgpu || rdsp) && (state < 0 || state >= 1000))
606         {
607                 for(state=0, p=opname; state>=0;)
608                 {
609                         j = mrbase[state] + (int)tolowertab[*p];
610
611                         // Reject, character doesn't match
612                         if (mrcheck[j] != state)
613                         {
614                                 state = -1;                                     // No match
615                                 break;
616                         }
617
618                         // Must accept or reject at EOS
619                         if (!*++p)
620                         {
621                                 state = mraccept[j];            // (-1 on no terminal match)
622                                 break;
623                         }
624
625                         state = mrtab[j];
626                 }
627
628                 // Call RISC code generator if we found a mnemonic
629                 if (state >= 3000)
630                 {
631                         GenerateRISCCode(state);
632                         goto loop;
633                 }
634         }
635
636         // Invoke macro or complain about bad mnemonic
637         if (state < 0)
638         {
639                 if ((sy = lookup(opname, MACRO, 0)) != NULL) 
640                         InvokeMacro(sy, siz);
641                 else
642                         errors("unknown op '%s'", opname);
643
644                 goto loop;
645         }
646
647         // Call directive handlers
648         if (state < 500)
649         {
650                 (*dirtab[state])(siz);
651                 goto loop;
652         }
653
654         // Do mnemonics
655         // o  can't deposit instrs in BSS or ABS
656         // o  do automatic .EVEN for instrs
657         // o  allocate space for largest possible instr
658         // o  can't do ".b" operations with an address register
659         if (scattr & SBSS)
660         {
661                 error("cannot initialize non-storage (BSS) section");
662                 goto loop;
663         }
664
665         if (sloc & 1)                                                   // Automatic .even
666                 auto_even();
667
668         if (challoc - ch_size < 18)                             // Make sure have space in current chunk
669                 chcheck(0);
670
671         m = &machtab[state - 1000];
672
673         // Call special-mode handler
674         if (m->mnattr & CGSPECIAL)
675         {
676                 (*m->mnfunc)(m->mninst, siz);
677                 goto loop;
678         }
679
680         if (amode(1) < 0)                                               // Parse 0, 1 or 2 addr modes
681                 goto loop;
682
683         if (*tok != EOL)
684                 error(extra_stuff);
685
686         amsk0 = amsktab[am0];
687         amsk1 = amsktab[am1];
688
689         // Catch attempts to use ".B" with an address register (yes, this check
690         // does work at this level)
691         if (siz == SIZB && (am0 == AREG || am1 == AREG))
692         {
693                 error("cannot use '.b' with an address register");
694                 goto loop;
695         }
696
697         for(;;)
698         {
699                 if ((m->mnattr & siz) && (amsk0 & m->mn0) != 0 && (amsk1 & m->mn1) != 0)
700                 {
701                         (*m->mnfunc)(m->mninst, siz);
702                         goto loop;
703                 }
704
705                 m = &machtab[m->mncont];
706         }
707 }
708
709
710 // 
711 // .if, Start Conditional Assembly
712 //
713 int d_if(void)
714 {
715         IFENT * rif;
716         WORD eattr;
717         VALUE eval;
718         SYM * esym;
719
720         // Alloc an IFENTRY
721         if ((rif = f_ifent) == NULL)
722                 rif = (IFENT *)malloc(sizeof(IFENT));
723         else
724                 f_ifent = rif->if_prev;
725
726         rif->if_prev = ifent;
727         ifent = rif;
728
729         if (!disabled)
730         {
731                 if (expr(exprbuf, &eval, &eattr, &esym) != OK)
732                         return 0;
733
734                 if ((eattr & DEFINED) == 0)
735                         return error(undef_error);
736
737                 disabled = !eval;
738         }
739
740         rif->if_state = (WORD)disabled;
741         return 0;
742 }
743
744
745 // 
746 // .else, Do Alternate Case For .if
747 //
748 int d_else(void)
749 {
750         IFENT * rif = ifent;
751
752         if (rif->if_prev == NULL)
753                 return error("mismatched .else");
754
755         if (disabled)
756                 disabled = rif->if_prev->if_state;
757         else
758                 disabled = 1;
759
760         rif->if_state = (WORD)disabled;
761         return 0;
762 }
763
764
765 //
766 // .endif, End of conditional assembly block
767 // This is also called by fpop() to pop levels of IFENTs in case a macro or
768 // include file exits early with `exitm' or `end'.
769 //
770 int d_endif (void)
771 {
772         IFENT * rif = ifent;
773
774         if (rif->if_prev == NULL)
775                 return error("mismatched .endif");
776
777         ifent = rif->if_prev;
778         disabled = rif->if_prev->if_state;
779         rif->if_prev = f_ifent;
780         f_ifent = rif;
781         return 0;
782 }