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