X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.c;h=155fa3fb360821bc945bb0e8e3a79ffd6fe973a9;hp=d535c4842b40870f794dfeb424e28093b96c6dea;hb=eace4e1b294ccec54a5c476619f616f5da0bf8a9;hpb=f3c7d186a15b89c39e360b9cc89545a0d24bd6a4 diff --git a/direct.c b/direct.c index d535c48..155fa3f 100644 --- a/direct.c +++ b/direct.c @@ -26,10 +26,8 @@ #define DEF_KW #include "kwtab.h" -// N.B.: It's perfectly fine to keep exprbuf as an array of TOKENS and to cast -// to a TOKENPTR where needed. But this works too. :-P -TOKEN _exprbuf[128]; // Expression buffer -TOKENPTR exprbuf = (TOKENPTR)_exprbuf; // Expression buffer point + +TOKEN exprbuf[128]; // Expression buffer SYM * symbolPtr[1000000]; // Symbol pointers table static long unused; // For supressing 'write' warnings char buffer[256]; // Scratch buffer for messages @@ -176,14 +174,14 @@ void SetLargestAlignment(int size) // int d_error(char *str) { - if (*tok.u32 == EOL) + if (*tok == EOL) return error("error directive encountered - aborting assembling"); else { - switch(*tok.u32) + switch(*tok) { case STRING: - return error(string[tok.u32[1]]); + return error(string[tok[1]]); break; default: return error("error directive encountered--aborting assembly"); @@ -197,14 +195,14 @@ int d_error(char *str) // int d_warn(char *str) { - if (*tok.u32 == EOL) + if (*tok == EOL) return warn("WARNING WARNING WARNING"); else { - switch(*tok.u32) + switch(*tok) { case STRING: - return warn(string[tok.u32[1]]); + return warn(string[tok[1]]); break; default: return warn("WARNING WARNING WARNING"); @@ -276,27 +274,27 @@ int d_print(void) SYM * esym; // External symbol involved in expr. TOKEN r_expr[EXPRSIZE]; - while (*tok.u32 != EOL) + while (*tok != EOL) { - switch(*tok.u32) + switch(*tok) { case STRING: - sprintf(prntstr, "%s", string[tok.u32[1]]); + sprintf(prntstr, "%s", string[tok[1]]); printf("%s", prntstr); if (list_fd) unused = write(list_fd, prntstr, (LONG)strlen(prntstr)); - tok.u32 += 2; + tok += 2; break; case '/': formatting = 1; - if (tok.u32[1] != SYMBOL) + if (tok[1] != SYMBOL) goto token_err; -// strcpy(prntstr, (char *)tok.u32[2]); - strcpy(prntstr, string[tok.u32[2]]); +// strcpy(prntstr, (char *)tok[2]); + strcpy(prntstr, string[tok[2]]); switch(prntstr[0]) { @@ -310,13 +308,13 @@ int d_print(void) return ERROR; } - tok.u32 += 3; + tok += 3; break; case ',': - tok.u32++; + tok++; break; default: - if (expr((TOKENPTR)r_expr, &eval, &eattr, &esym) != OK) + if (expr(r_expr, &eval, &eattr, &esym) != OK) goto token_err; else { @@ -370,13 +368,13 @@ int d_ccundef(void) return ERROR; } - if (*tok.u32 != SYMBOL) + if (*tok != SYMBOL) { error("syntax error; expected symbol"); return ERROR; } - ccname = lookup(string[tok.u32[1]], LABEL, 0); + ccname = lookup(string[tok[1]], LABEL, 0); // Make sure symbol is a valid ccdef if (!ccname || !(ccname->sattre & EQUATEDCC)) @@ -402,18 +400,18 @@ int d_equrundef(void) if (!rgpu && !rdsp) return error(".equrundef/.regundef must be defined in .gpu/.dsp section"); - while (*tok.u32 != EOL) + while (*tok != EOL) { // Skip preceeding or seperating commas (if any) - if (*tok.u32 == ',') - tok.u32++; + if (*tok == ',') + tok++; // Check we are dealing with a symbol - if (*tok.u32 != SYMBOL) + if (*tok != SYMBOL) return error("syntax error; expected symbol"); // Lookup and undef if equated register - regname = lookup(string[tok.u32[1]], LABEL, 0); + regname = lookup(string[tok[1]], LABEL, 0); if (regname && (regname->sattre & EQUATEDREG)) { @@ -424,7 +422,7 @@ int d_equrundef(void) } // Skip over symbol token and address - tok.u32 += 2; + tok += 2; } return 0; @@ -455,11 +453,11 @@ int d_incbin(void) // Check to see if we're in BSS, and, if so, throw an error if (scattr & SBSS) { - error("cannot include binary file \"%s\" in BSS section", string[tok.u32[1]]); + error("cannot include binary file \"%s\" in BSS section", string[tok[1]]); return ERROR; } - if (*tok.u32 != STRING) + if (*tok != STRING) { error("syntax error; string missing"); return ERROR; @@ -468,7 +466,7 @@ int d_incbin(void) // Attempt to open the include file in the current directory, then (if that // failed) try list of include files passed in the enviroment string or by // the "-d" option. - if ((fd = open(string[tok.u32[1]], _OPEN_INC)) < 0) + if ((fd = open(string[tok[1]], _OPEN_INC)) < 0) { for(i=0; nthpath("RMACPATH", i, buf1)!=0; i++) { @@ -478,13 +476,13 @@ int d_incbin(void) if (fd > 0 && buf1[fd - 1] != SLASHCHAR) strcat(buf1, SLASHSTRING); - strcat(buf1, string[tok.u32[1]]); + strcat(buf1, string[tok[1]]); if ((fd = open(buf1, _OPEN_INC)) >= 0) goto allright; } - return error("cannot open: \"%s\"", string[tok.u32[1]]); + return error("cannot open: \"%s\"", string[tok[1]]); } allright: @@ -493,14 +491,14 @@ allright: pos = lseek(fd, 0L, SEEK_SET); chcheck(size); - DEBUG { printf("INCBIN: File '%s' is %li bytes.\n", string[tok.u32[1]], size); } + DEBUG { printf("INCBIN: File '%s' is %li bytes.\n", string[tok[1]], size); } char * fileBuffer = (char *)malloc(size); bytesRead = read(fd, fileBuffer, size); if (bytesRead != size) { - error("was only able to read %li bytes from binary file (%s, %li bytes)", bytesRead, string[tok.u32[1]], size); + error("was only able to read %li bytes from binary file (%s, %li bytes)", bytesRead, string[tok[1]], size); return ERROR; } @@ -718,21 +716,21 @@ int symlist(int(* func)()) for(;;) { - if (*tok.u32 != SYMBOL) + if (*tok != SYMBOL) return error(em); - if ((*func)(string[tok.u32[1]]) != OK) + if ((*func)(string[tok[1]]) != OK) break; - tok.u32 += 2; + tok += 2; - if (*tok.u32 == EOL) + if (*tok == EOL) break; - if (*tok.u32 != ',') + if (*tok != ',') return error(em); - tok.u32++; + tok++; } return 0; @@ -750,11 +748,11 @@ int d_include(void) char buf[128]; char buf1[128]; - if (*tok.u32 == STRING) // Leave strings ALONE - fn = string[*++tok.u32]; - else if (*tok.u32 == SYMBOL) // Try to append ".s" to symbols + if (*tok == STRING) // Leave strings ALONE + fn = string[*++tok]; + else if (*tok == SYMBOL) // Try to append ".s" to symbols { - strcpy(buf, string[*++tok.u32]); + strcpy(buf, string[*++tok]); fext(buf, ".s", 0); fn = &buf[0]; } @@ -763,7 +761,7 @@ int d_include(void) // Make sure the user didn't try anything like: // .include equates.s - if (*++tok.u32 != EOL) + if (*++tok != EOL) return error("extra stuff after filename--enclose it in quotes"); // Attempt to open the include file in the current directory, then (if that @@ -802,7 +800,7 @@ int d_assert(void) WORD eattr; uint64_t eval; - for(; expr(exprbuf, &eval, &eattr, NULL)==OK; ++tok.u32) + for(; expr(exprbuf, &eval, &eattr, NULL)==OK; ++tok) { if (!(eattr & DEFINED)) return error("forward or undefined .assert"); @@ -810,7 +808,7 @@ int d_assert(void) if (!eval) return error("assert failure"); - if (*tok.u32 != ',') + if (*tok != ',') break; } @@ -860,7 +858,7 @@ int d_prgflags(void) { uint64_t eval; - if (*tok.u32 == EOL) + if (*tok == EOL) return error("PRGFLAGS requires value"); else if (abs_expr(&eval) == OK) { @@ -886,7 +884,7 @@ int d_abs(void) SaveSection(); - if (*tok.u32 == EOL) + if (*tok == EOL) eval = 0; else if (abs_expr(&eval) != OK) return 0; @@ -992,7 +990,7 @@ int d_ds(WORD siz) } else { - dep_block(eval, siz, 0, (WORD)(DEFINED | ABS), (TOKENPTR){NULL}); + dep_block(eval, siz, 0, (WORD)(DEFINED | ABS), NULL); } at_eol(); @@ -1023,24 +1021,24 @@ int d_dc(WORD siz) || (rdsp && (orgaddr >= 0xF1B000) && (orgaddr <= 0xF1CFFFF)))) warn("depositing LONGs on a non-long address in local RAM"); - for(;; tok.u32++) + for(;; tok++) { // dc.b 'string' [,] ... - if (siz == SIZB && (*tok.u32 == STRING || *tok.u32 == STRINGA8) && (tok.u32[2] == ',' || tok.u32[2] == EOL)) + if (siz == SIZB && (*tok == STRING || *tok == STRINGA8) && (tok[2] == ',' || tok[2] == EOL)) { - uint32_t i = strlen(string[tok.u32[1]]); + uint32_t i = strlen(string[tok[1]]); if ((challoc - ch_size) < i) chcheck(i); - if (*tok.u32 == STRING) + if (*tok == STRING) { - for(p=string[tok.u32[1]]; *p!=EOS; p++) + for(p=string[tok[1]]; *p!=EOS; p++) D_byte(*p); } - else if(*tok.u32 == STRINGA8) + else if(*tok == STRINGA8) { - for(p=string[tok.u32[1]]; *p!=EOS; p++) + for(p=string[tok[1]]; *p!=EOS; p++) D_byte(strtoa8[*p]); } else @@ -1048,16 +1046,16 @@ int d_dc(WORD siz) error("String format not supported... yet"); } - tok.u32 += 2; + tok += 2; goto comma; } int movei = 0; // MOVEI flag for dc.i - if (*tok.u32 == DOTI) + if (*tok == DOTI) { movei = 1; - tok.u32++; + tok++; siz = SIZL; } @@ -1215,7 +1213,7 @@ int d_dc(WORD siz) } comma: - if (*tok.u32 != ',') + if (*tok != ',') break; } @@ -1240,7 +1238,7 @@ int d_dcb(WORD siz) if (abs_expr(&evalc) != OK) return 0; - if (*tok.u32++ != ',') + if (*tok++ != ',') return error("missing comma"); if (expr(exprbuf, &eval, &eattr, NULL) < 0) @@ -1280,14 +1278,14 @@ int d_init(WORD def_siz) for(;;) { // Get repeat count (defaults to 1) - if (*tok.u32 == '#') + if (*tok == '#') { - tok.u32++; + tok++; if (abs_expr(&count) != OK) return 0; - if (*tok.u32++ != ',') + if (*tok++ != ',') return error(comma_error); } else @@ -1297,25 +1295,25 @@ int d_init(WORD def_siz) if (expr(exprbuf, &eval, &eattr, NULL) < 0) return 0; - switch (*tok.u32++) + switch (*tok++) { // Determine size of object to deposit case DOTB: siz = SIZB; break; case DOTW: siz = SIZB; break; case DOTL: siz = SIZL; break; default: siz = def_siz; - tok.u32--; + tok--; break; } dep_block((uint32_t)count, siz, (uint32_t)eval, eattr, exprbuf); - switch (*tok.u32) + switch (*tok) { case EOL: return 0; case ',': - tok.u32++; + tok++; continue; default: return error(comma_error); @@ -1327,7 +1325,7 @@ int d_init(WORD def_siz) // // Deposit 'count' values of size 'siz' in the current (non-BSS) segment // -int dep_block(uint32_t count, WORD siz, uint32_t eval, WORD eattr, TOKENPTR exprbuf) +int dep_block(uint32_t count, WORD siz, uint32_t eval, WORD eattr, TOKEN * exprbuf) { WORD tdb; WORD defined; @@ -1421,11 +1419,11 @@ int d_comm(void) if (m6502) return error(in_6502mode); - if (*tok.u32 != SYMBOL) + if (*tok != SYMBOL) return error("missing symbol"); - p = string[tok.u32[1]]; - tok.u32 += 2; + p = string[tok[1]]; + tok += 2; if (*p == '.') // Cannot .comm a local symbol return error(locgl_error); @@ -1440,7 +1438,7 @@ int d_comm(void) sym->sattr = GLOBAL | COMMON | BSS; - if (*tok.u32++ != ',') + if (*tok++ != ',') return error(comma_error); if (abs_expr(&eval) != OK) // Parse size of common region @@ -1652,23 +1650,23 @@ int d_cargs(void) if (rgpu || rdsp) return error("directive forbidden in gpu/dsp mode"); - if (*tok.u32 == '#') + if (*tok == '#') { - tok.u32++; + tok++; if (abs_expr(&eval) != OK) return 0; // Eat the comma, if it's there - if (*tok.u32 == ',') - tok.u32++; + if (*tok == ',') + tok++; } for(;;) { - if (*tok.u32 == SYMBOL) + if (*tok == SYMBOL) { - p = string[tok.u32[1]]; + p = string[tok[1]]; // Set env to either local (dot prefixed) or global scope env = (*p == '.' ? curenv : 0); @@ -1687,23 +1685,23 @@ int d_cargs(void) symbol->sattr |= (ABS | DEFINED | EQUATED); symbol->svalue = (uint32_t)eval; - tok.u32 += 2; + tok += 2; // What this does is eat any dot suffixes attached to a symbol. If // it's a .L, it adds 4 to eval; if it's .W or .B, it adds 2. If // there is no dot suffix, it assumes a size of 2. - switch ((int)*tok.u32) + switch ((int)*tok) { case DOTL: eval += 2; case DOTB: case DOTW: - tok.u32++; + tok++; } eval += 2; } - else if (*tok.u32 >= KW_D0 && *tok.u32 <= KW_A7) + else if (*tok >= KW_D0 && *tok <= KW_A7) { if (reglist(&rlist) < 0) return 0; @@ -1716,7 +1714,7 @@ int d_cargs(void) } else { - switch ((int)*tok.u32) + switch ((int)*tok) { case KW_USP: case KW_SSP: @@ -1726,7 +1724,7 @@ int d_cargs(void) case KW_SR: case KW_CCR: eval += 2; - tok.u32++; + tok++; break; case EOL: return 0; @@ -1736,8 +1734,8 @@ int d_cargs(void) } // Eat commas in between each argument, if they exist - if (*tok.u32 == ',') - tok.u32++; + if (*tok == ',') + tok++; } } @@ -1766,23 +1764,23 @@ int d_cstruct(void) if (rgpu || rdsp) return error("directive forbidden in gpu/dsp mode"); - if (*tok.u32 == '#') + if (*tok == '#') { - tok.u32++; + tok++; if (abs_expr(&eval) != OK) return 0; // Eat the comma, if it's there - if (*tok.u32 == ',') - tok.u32++; + if (*tok == ',') + tok++; } for(;;) { - if (*tok.u32 == SYMBOL) + if (*tok == SYMBOL) { - symbolName = string[tok.u32[1]]; + symbolName = string[tok[1]]; // Set env to either local (dot prefixed) or global scope env = (symbolName[0] == '.' ? curenv : 0); @@ -1801,11 +1799,11 @@ int d_cstruct(void) // Put symbol in "order of definition" list AddToSymbolDeclarationList(symbol); - tok.u32 += 2; + tok += 2; // Adjust label start address if it's a word or a long, as a byte // label might have left us on an odd address. - switch ((int)*tok.u32) + switch ((int)*tok) { case DOTW: case DOTL: @@ -1818,7 +1816,7 @@ int d_cstruct(void) // Check for dot suffixes and adjust space accordingly (longs and // words on an odd boundary get bumped to the next word aligned // address). If no suffix, then throw an error. - switch ((int)*tok.u32) + switch ((int)*tok) { case DOTL: eval += 4; @@ -1833,9 +1831,9 @@ int d_cstruct(void) return error("Symbol missing dot suffix in .cstruct construct"); } - tok.u32++; + tok++; } - else if (*tok.u32 >= KW_D0 && *tok.u32 <= KW_A7) + else if (*tok >= KW_D0 && *tok <= KW_A7) { if (reglist(&rlist) < 0) return 0; @@ -1848,7 +1846,7 @@ int d_cstruct(void) } else { - switch ((int)*tok.u32) + switch ((int)*tok) { case KW_USP: case KW_SSP: @@ -1858,7 +1856,7 @@ int d_cstruct(void) case KW_SR: case KW_CCR: eval += 2; - tok.u32++; + tok++; break; case EOL: return 0; @@ -1868,8 +1866,8 @@ int d_cstruct(void) } // Eat commas in between each argument, if they exist - if (*tok.u32 == ',') - tok.u32++; + if (*tok == ',') + tok++; } } @@ -1921,12 +1919,12 @@ int d_gpumain(void) // int d_opt(void) { - while (*tok.u32 != EOL) + while (*tok != EOL) { - if (*tok.u32 == STRING) + if (*tok == STRING) { - tok.u32++; - char * tmpstr = string[*tok.u32++]; + tok++; + char * tmpstr = string[*tok++]; if (ParseOptimization(tmpstr) != OK) return error("unknown optimization flag '%s'", tmpstr);