nasm.c
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:34k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. /* The Netwide Assembler main program module
  2.  *
  3.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  4.  * Julian Hall. All rights reserved. The software is
  5.  * redistributable under the licence given in the file "Licence"
  6.  * distributed in the NASM archive.
  7.  */
  8. #include <stdio.h>
  9. #include <stdarg.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <ctype.h>
  13. #include "nasm.h"
  14. #include "nasmlib.h"
  15. #include "preproc.h"
  16. #include "parser.h"
  17. #include "eval.h"
  18. #include "assemble.h"
  19. #include "labels.h"
  20. #include "outform.h"
  21. #include "listing.h"
  22. struct forwrefinfo {        /* info held on forward refs. */
  23.     int lineno;
  24.     int operand;
  25. };
  26. static void report_error (int, char *, ...);
  27. static void parse_cmdline (int, char **);
  28. static void assemble_file (char *);
  29. static int getkw (char *buf, char **value);
  30. static void register_output_formats(void);
  31. static void usage(void);
  32. static int using_debug_info;
  33. static char inname[FILENAME_MAX];
  34. static char outname[FILENAME_MAX];
  35. static char listname[FILENAME_MAX];
  36. static int globallineno;        /* for forward-reference tracking */
  37. static int pass;
  38. static struct ofmt *ofmt = NULL;
  39. static FILE *error_file;        /* Where to write error messages */
  40. static FILE *ofile = NULL;
  41. static int sb = 16;        /* by default */
  42. static loc_t location;
  43. int          in_abs_seg;        /* Flag we are in ABSOLUTE seg */
  44. static long  abs_seg;
  45. static struct RAA *offsets;
  46. static long abs_offset;
  47. static struct SAA *forwrefs;        /* keep track of forward references */
  48. static struct forwrefinfo *forwref;
  49. static Preproc *preproc;
  50. enum op_type {
  51.   op_normal, /* Preprocess and assemble */
  52.   op_preprocess, /* Preprocess only */
  53.   op_depend /* Generate dependencies */
  54. };
  55. static enum op_type operating_mode;
  56. /* used by error function to report location */
  57. /*
  58.  * Which of the suppressible warnings are suppressed. Entry zero
  59.  * doesn't do anything. Initial defaults are given here.
  60.  */
  61. static char suppressed[1+ERR_WARN_MAX] = {
  62.     0, TRUE, TRUE, FALSE
  63. };
  64. /*
  65.  * The option names for the suppressible warnings. As before, entry
  66.  * zero does nothing.
  67.  */
  68. static char *suppressed_names[1+ERR_WARN_MAX] = {
  69.     NULL, "macro-params", "orphan-labels", "number-overflow"
  70. };
  71. /*
  72.  * The explanations for the suppressible warnings. As before, entry
  73.  * zero does nothing.
  74.  */
  75. static char *suppressed_what[1+ERR_WARN_MAX] = {
  76.     NULL, "macro calls with wrong no. of params",
  77.     "labels alone on lines without trailing `:'",
  78.     "numeric constants greater than 0xFFFFFFFF"
  79. };
  80. /*
  81.  * This is a null preprocessor which just copies lines from input
  82.  * to output. It's used when someone explicitly requests that NASM
  83.  * not preprocess their source file.
  84.  */
  85. static void no_pp_reset (char *, int, efunc, evalfunc, ListGen *);
  86. static char *no_pp_getline (void);
  87. static void no_pp_cleanup (void);
  88. static Preproc no_pp = {
  89.     no_pp_reset,
  90.     no_pp_getline,
  91.     no_pp_cleanup
  92. };
  93. /*
  94.  * get/set current offset...
  95.  */
  96. #define get_curr_ofs (in_abs_seg?abs_offset:
  97.       raa_read(offsets,location.segment))
  98. #define set_curr_ofs(x) (in_abs_seg?(void)(abs_offset=(x)):
  99.  (void)(offsets=raa_write(offsets,location.segment,(x))))
  100. static int want_usage;
  101. static int terminate_after_phase;
  102. static void nasm_fputs(char *line, FILE *ofile) 
  103. {
  104.     if (ofile) {
  105. fputs(line, ofile);
  106. fputc('n', ofile);
  107.     } else
  108. puts(line);
  109. }
  110. int main(int argc, char **argv) 
  111. {
  112.     want_usage = terminate_after_phase = FALSE;
  113.     nasm_set_malloc_error (report_error);
  114.     offsets = raa_init();
  115.     forwrefs = saa_init ((long)sizeof(struct forwrefinfo));
  116.     preproc = &nasmpp;
  117.     operating_mode = op_normal;
  118.     
  119.     error_file = stderr;
  120.     seg_init();
  121.     register_output_formats();
  122.     parse_cmdline(argc, argv);
  123.     if (terminate_after_phase) 
  124.     {
  125. if (want_usage)
  126.     usage();
  127. return 1;
  128.     }
  129.     if (ofmt->stdmac)
  130. pp_extra_stdmac (ofmt->stdmac);
  131.     parser_global_info (ofmt, &location);
  132.     eval_global_info (ofmt, lookup_label, &location);
  133.     switch ( operating_mode ) {
  134.     case op_depend:
  135.       {
  136. char *line;
  137. preproc->reset (inname, 0, report_error, evaluate, &nasmlist);
  138. if (outname[0] == '')
  139.   ofmt->filename (inname, outname, report_error);
  140. ofile = NULL;
  141. printf("%s: %s", outname, inname);
  142. while ( (line = preproc->getline()) )
  143.   nasm_free (line);
  144. preproc->cleanup();
  145. putc('n', stdout);
  146.       }
  147.     break;
  148.     case op_preprocess:
  149.     {
  150.       char *line;
  151.       char *file_name = NULL;
  152.       long  prior_linnum=0;
  153.       int   lineinc=0;
  154.       
  155.       if (*outname) {
  156. ofile = fopen(outname, "w");
  157. if (!ofile)
  158.   report_error (ERR_FATAL | ERR_NOFILE,
  159. "unable to open output file `%s'", outname);
  160.       } else
  161. ofile = NULL;
  162.       
  163.       location.known = FALSE;
  164.       
  165.       preproc->reset (inname, 2, report_error, evaluate, &nasmlist);
  166.       while ( (line = preproc->getline()) ) {
  167. /*
  168.  * We generate %line directives if needed for later programs
  169.  */
  170. long linnum = prior_linnum += lineinc;
  171. int  altline = src_get(&linnum, &file_name);
  172. if (altline) {
  173.   if (altline==1 && lineinc==1)
  174.     nasm_fputs("", ofile);
  175.   else {
  176.     lineinc = (altline != -1 || lineinc!=1);
  177.     fprintf(ofile ? ofile : stdout, "%%line %ld+%d %sn",
  178.     linnum, lineinc, file_name);
  179.   }
  180.   prior_linnum = linnum;
  181. }
  182. nasm_fputs(line, ofile);
  183. nasm_free (line);
  184.       }
  185.       nasm_free(file_name);
  186.       preproc->cleanup();
  187.       if (ofile)
  188. fclose(ofile);
  189.       if (ofile && terminate_after_phase)
  190. remove(outname);
  191.     }
  192.     break;
  193.     case op_normal:
  194.       {
  195. /*
  196.  * We must call ofmt->filename _anyway_, even if the user
  197.  * has specified their own output file, because some
  198.  * formats (eg OBJ and COFF) use ofmt->filename to find out
  199.  * the name of the input file and then put that inside the
  200.  * file.
  201.  */
  202. ofmt->filename (inname, outname, report_error);
  203. ofile = fopen(outname, "wb");
  204. if (!ofile) {
  205.   report_error (ERR_FATAL | ERR_NOFILE,
  206. "unable to open output file `%s'", outname);
  207. }
  208. /*
  209.  * We must call init_labels() before ofmt->init() since
  210.  * some object formats will want to define labels in their
  211.  * init routines. (eg OS/2 defines the FLAT group)
  212.  */
  213. init_labels ();
  214. ofmt->init (ofile, report_error, define_label, evaluate);
  215. assemble_file (inname);
  216. if (!terminate_after_phase) {
  217.   ofmt->cleanup (using_debug_info);
  218.   cleanup_labels ();
  219. }
  220. else {
  221.   
  222.   /*
  223.    * We had an fclose on the output file here, but we
  224.    * actually do that in all the object file drivers as well,
  225.    * so we're leaving out the one here.
  226.    *     fclose (ofile);
  227.    */
  228.   
  229.   remove(outname);
  230.   if (listname[0])
  231.     remove(listname);
  232. }
  233.       }
  234.     break;
  235.     }
  236.     
  237.     if (want_usage)
  238.       usage();
  239.     
  240.     raa_free (offsets);
  241.     saa_free (forwrefs);
  242.     eval_cleanup ();
  243.     nasmlib_cleanup ();
  244.     if (terminate_after_phase)
  245. return 1;
  246.     else
  247. return 0;
  248. }
  249. /*
  250.  * Get a parameter for a command line option.
  251.  * First arg must be in the form of e.g. -f...
  252.  */
  253. static char *get_param (char *p, char *q, int *advance)
  254. {
  255.     *advance = 0;
  256.     if (p[2])          /* the parameter's in the option */
  257.     {
  258. p += 2;
  259. while (isspace(*p))
  260.     p++;
  261. return p;
  262.     }
  263.     if (q && q[0])
  264.     {
  265. *advance = 1;
  266. return q;
  267.     }
  268.     report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  269.   "option `-%c' requires an argument",
  270.   p[1]);
  271.     return NULL;
  272. }
  273. int stopoptions = 0;
  274. static int process_arg (char *p, char *q)
  275. {
  276.     char *param;
  277.     int  i, advance = 0;
  278.     if (!p || !p[0])
  279. return 0;
  280.     if (p[0]=='-' && ! stopoptions) 
  281.     {
  282. switch (p[1]) {
  283.      case '-': /* -- => stop processing options */
  284.       stopoptions = 1;
  285.       break;
  286.   case 's':
  287.       error_file = stdout;
  288.       break;
  289.   case 'o':        /* these parameters take values */
  290.   case 'f':
  291.   case 'p':
  292.   case 'd':
  293.   case 'D':
  294.   case 'i':
  295.   case 'l':
  296.   case 'E':
  297.   case 'F':
  298.     if ( !(param = get_param (p, q, &advance)) )
  299. break;
  300.     if (p[1]=='o') {        /* output file */
  301. strcpy (outname, param);
  302.     } else if (p[1]=='f') {    /* output format */
  303. ofmt = ofmt_find(param);
  304. if (!ofmt) {
  305.     report_error (ERR_FATAL | ERR_NOFILE | ERR_USAGE,
  306.   "unrecognised output format `%s' - "
  307.   "use -hf for a list",
  308.   param);
  309. }
  310. else
  311.     ofmt->current_dfmt = ofmt->debug_formats[0];
  312.     } else if (p[1]=='P' || p[1]=='p') {    /* pre-include */
  313. pp_pre_include (param);
  314.     } else if (p[1]=='D' || p[1]=='d') {    /* pre-define */
  315. pp_pre_define (param);
  316.     } else if (p[1]=='U' || p[1]=='u') {    /* un-define */
  317. pp_pre_undefine (param);
  318.     } else if (p[1]=='I' || p[1]=='i') {    /* include search path */
  319. pp_include_path (param);
  320.     } else if (p[1]=='l') {    /* listing file */
  321. strcpy (listname, param);
  322.     } else if (p[1]=='E') {    /* error messages file */
  323.         error_file = fopen(param, "wt");
  324. if ( !error_file ) {
  325.   error_file = stderr; /* Revert to default! */
  326.   report_error (ERR_FATAL | ERR_NOFILE | ERR_USAGE,
  327. "cannot open file `%s' for error messages",
  328. param);
  329. }
  330.     } else if (p[1] == 'F') {  /* specify debug format */
  331.         ofmt->current_dfmt = dfmt_find(ofmt, param);
  332.         if (!ofmt->current_dfmt) {
  333.             report_error (ERR_FATAL | ERR_NOFILE | ERR_USAGE,
  334.             "unrecognized debug format `%s' for"
  335.        " output format `%s'",
  336.   param, ofmt->shortname);
  337.                 }
  338.             }
  339.     break;
  340.   case 'g':
  341.     using_debug_info = TRUE;
  342.     break;
  343.   case 'h':
  344.     printf("usage: nasm [-@ response file] [-o outfile] [-f format] "
  345.    "[-l listfile]n"
  346.    "            [options...] [--] filenamen"
  347.    "    or nasm -r   for version infonn"
  348.    "    -e          preprocess only (writes output to stdout by default)n"
  349.    "    -a          don't preprocess (assemble only)n"
  350.    "    -M          generate Makefile dependencies on stdoutnn"
  351.    "    -E<file>    redirect error messages to filen"
  352.    "    -s          redirect error messages to stdoutnn"
  353.    "    -g          enable debug infon"
  354.    "    -F format   select a debugging formatnn"
  355.    "    -I<path>    adds a pathname to the include file pathn"
  356.    "    -P<file>    pre-includes a filen"
  357.    "    -D<macro>[=<value>] pre-defines a macron"
  358.    "    -U<macro>   undefines a macron"
  359.    "    -w+foo      enables warnings about foo; -w-foo disables themn"
  360.    "where foo can be:n");
  361.     for (i=1; i<=ERR_WARN_MAX; i++)
  362. printf("    %-16s%s (default %s)n",
  363.        suppressed_names[i], suppressed_what[i],
  364.        suppressed[i] ? "off" : "on");
  365.     printf ("nresponse files should contain command line parameters"
  366.     ", one per line.n");
  367.     if (p[2] == 'f') {
  368. printf("nvalid output formats for -f are"
  369.        " (`*' denotes default):n");
  370. ofmt_list(ofmt, stdout);
  371.     }
  372.     else {
  373. printf ("nFor a list of valid output formats, use -hf.n");
  374. printf ("For a list of debug formats, use -f <form> -y.n");
  375.     }
  376.     exit (0);        /* never need usage message here */
  377.     break;
  378.           case 'y':
  379.     printf("nvalid debug formats for '%s' output format are"
  380.    " ('*' denotes default):n",
  381. ofmt->shortname);
  382.     dfmt_list(ofmt, stdout);
  383.     exit(0);
  384.     break;
  385.   case 'r':
  386.     printf("NASM version %sn", NASM_VER);
  387. #ifdef DEBUG
  388.     printf("Compiled with -DDEBUG on " __DATE__ "n");
  389. #endif
  390.     exit (0);        /* never need usage message here */
  391.     break;
  392.   case 'e':        /* preprocess only */
  393.     operating_mode = op_preprocess;
  394.     break;
  395.   case 'a':        /* assemble only - don't preprocess */
  396.     preproc = &no_pp;
  397.     break;
  398.   case 'w':
  399.     if (p[2] != '+' && p[2] != '-') {
  400. report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  401.       "invalid option to `-w'");
  402.     } else {
  403. for (i=1; i<=ERR_WARN_MAX; i++)
  404.     if (!nasm_stricmp(p+3, suppressed_names[i]))
  405. break;
  406. if (i <= ERR_WARN_MAX)
  407.     suppressed[i] = (p[2] == '-');
  408. else
  409.     report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  410.   "invalid option to `-w'");
  411.     }
  412.     break;
  413.           case 'M':
  414.     operating_mode = op_depend;
  415.     break; 
  416.   default:
  417.     if (!ofmt->setinfo(GI_SWITCH,&p))
  418.      report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  419.   "unrecognised option `-%c'",
  420.   p[1]);
  421.     break;
  422. }
  423.     } 
  424.     else 
  425.     {
  426. if (*inname) {
  427.     report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  428.   "more than one input file specified");
  429. } else
  430.     strcpy(inname, p);
  431.     }
  432.     return advance;
  433. }
  434. #define ARG_BUF_DELTA 128
  435. static void process_respfile (FILE *rfile)
  436. {
  437.     char *buffer, *p, *q, *prevarg;
  438.     int bufsize, prevargsize;
  439.     bufsize = prevargsize = ARG_BUF_DELTA;
  440.     buffer = nasm_malloc(ARG_BUF_DELTA);
  441.     prevarg = nasm_malloc(ARG_BUF_DELTA);
  442.     prevarg[0] = '';
  443.     while (1) {   /* Loop to handle all lines in file */
  444. p = buffer;
  445. while (1) {  /* Loop to handle long lines */
  446.     q = fgets(p, bufsize-(p-buffer), rfile);
  447.     if (!q)
  448. break;
  449.     p += strlen(p);
  450.     if (p > buffer && p[-1] == 'n')
  451. break;
  452.     if (p-buffer > bufsize-10) {
  453. int offset;
  454. offset = p - buffer;
  455. bufsize += ARG_BUF_DELTA;
  456. buffer = nasm_realloc(buffer, bufsize);
  457. p = buffer + offset;
  458.     }
  459. }
  460. if (!q && p == buffer) {
  461.     if (prevarg[0])
  462. process_arg (prevarg, NULL);
  463.     nasm_free (buffer);
  464.     nasm_free (prevarg);
  465.     return;
  466. }
  467. /*
  468.  * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
  469.  * them are present at the end of the line.
  470.  */
  471. *(p = &buffer[strcspn(buffer, "rn32")]) = '';
  472. while (p > buffer && isspace(p[-1]))
  473.     *--p = '';
  474. p = buffer;
  475. while (isspace(*p))
  476.     p++;
  477. if (process_arg (prevarg, p))
  478.     *p = '';
  479. if (strlen(p) > prevargsize-10) {
  480.     prevargsize += ARG_BUF_DELTA;
  481.     prevarg = nasm_realloc(prevarg, prevargsize);
  482. }
  483. strcpy (prevarg, p);
  484.     }
  485. }
  486. static void parse_cmdline(int argc, char **argv)
  487. {
  488.     FILE *rfile;
  489.     char *envreal, *envcopy=NULL, *p, *q, *arg, *prevarg;
  490.     char separator = ' ';
  491.     *inname = *outname = *listname = '';
  492.     /*
  493.      * First, process the NASM environment variable.
  494.      */
  495.     envreal = getenv("NASM");
  496.     arg = NULL;
  497.     if (envreal) {
  498. envcopy = nasm_strdup(envreal);
  499. p = envcopy;
  500. if (*p && *p != '-')
  501.     separator = *p++;
  502. while (*p) {
  503.     q = p;
  504.     while (*p && *p != separator) p++;
  505.     while (*p == separator) *p++ = '';
  506.     prevarg = arg;
  507.     arg = q;
  508.     if (process_arg (prevarg, arg))
  509. arg = NULL;
  510. }
  511. if (arg)
  512.     process_arg (arg, NULL);
  513. nasm_free (envcopy);
  514.     }
  515.     /*
  516.      * Now process the actual command line.
  517.      */
  518.     while (--argc)
  519.     {
  520. int i;
  521. argv++;
  522. if (!stopoptions && argv[0][0] == '-' && argv[0][1] == '@') {
  523.     if ((p = get_param (argv[0], argc > 1 ? argv[1] : NULL, &i)))
  524. if ((rfile = fopen(p, "r"))) {
  525.     process_respfile (rfile);
  526.     fclose(rfile);
  527. } else
  528.     report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  529.     "unable to open response file `%s'", p);
  530. } else
  531.     i = process_arg (argv[0], argc > 1 ? argv[1] : NULL);
  532. argv += i, argc -= i;
  533.     }
  534.     if (!*inname)
  535. report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
  536.       "no input file specified");
  537. }
  538. static void assemble_file (char *fname)
  539. {
  540.     char   * value, * p, * q, * special, * line, debugid[80];
  541.     insn   output_ins;
  542.     int    i, rn_error, validid;
  543.     long   seg, offs;
  544.     struct tokenval tokval;
  545.     expr   * e;
  546.     /*
  547.      * pass one 
  548.      */
  549.     pass = 1;
  550.     in_abs_seg = FALSE;
  551.     location.segment = ofmt->section(NULL, pass, &sb);
  552.     preproc->reset(fname, 1, report_error, evaluate, &nasmlist);
  553.     globallineno = 0;
  554.     location.known = TRUE;
  555.     location.offset = offs = get_curr_ofs;
  556.     while ( (line = preproc->getline()) ) 
  557.     {
  558. globallineno++;
  559. /* here we parse our directives; this is not handled by the 'real'
  560.  * parser. */
  561. if ( (i = getkw (line, &value)) ) 
  562. {
  563.     switch (i) {
  564.       case 1:        /* [SEGMENT n] */
  565. seg = ofmt->section (value, pass, &sb);
  566. if (seg == NO_SEG) {
  567.     report_error (ERR_NONFATAL,
  568.   "segment name `%s' not recognised",
  569.   value);
  570. } else {
  571.     in_abs_seg = FALSE;
  572.     location.segment = seg;
  573. }
  574. break;
  575.       case 2:        /* [EXTERN label:special] */
  576. if (*value == '$')
  577.     value++;        /* skip initial $ if present */
  578. q = value;
  579. validid = TRUE;
  580. if (!isidstart(*q))
  581.     validid = FALSE;
  582. while (*q && *q != ':') {
  583.     if (!isidchar(*q))
  584. validid = FALSE;
  585.     q++;
  586. }
  587. if (!validid) {
  588.     report_error (ERR_NONFATAL,
  589.   "identifier expected after EXTERN");
  590.     break;
  591. }
  592. if (*q == ':') {
  593.     *q++ = '';
  594.     special = q;
  595. } else
  596.     special = NULL;
  597. if (!is_extern(value)) {   /* allow re-EXTERN to be ignored */
  598.     declare_as_global (value, special, report_error);
  599.     define_label (value, seg_alloc(), 0L, NULL, FALSE, TRUE,
  600.   ofmt, report_error);
  601. }
  602. break;
  603.       case 3:        /* [BITS bits] */
  604. switch (atoi(value)) {
  605.   case 16:
  606.   case 32:
  607.     sb = atoi(value);
  608.     break;
  609.   default:
  610.     report_error(ERR_NONFATAL,
  611.  "`%s' is not a valid argument to [BITS]",
  612.  value);
  613.     break;
  614. }
  615. break;
  616.       case 4:        /* [GLOBAL symbol:special] */
  617. if (*value == '$')
  618.     value++;        /* skip initial $ if present */
  619. q = value;
  620. validid = TRUE;
  621. if (!isidstart(*q))
  622.     validid = FALSE;
  623. while (*q && *q != ':') {
  624.     if (!isidchar(*q))
  625. validid = FALSE;
  626.     q++;
  627. }
  628. if (!validid) {
  629.     report_error (ERR_NONFATAL,
  630.   "identifier expected after GLOBAL");
  631.     break;
  632. }
  633. if (*q == ':') {
  634.     *q++ = '';
  635.     special = q;
  636. } else
  637.     special = NULL;
  638. declare_as_global (value, special, report_error);
  639. break;
  640.       case 5:        /* [COMMON symbol size:special] */
  641. p = value;
  642. validid = TRUE;
  643. if (!isidstart(*p))
  644.     validid = FALSE;
  645. while (*p && !isspace(*p)) {
  646.     if (!isidchar(*p))
  647. validid = FALSE;
  648.     p++;
  649. }
  650. if (!validid) {
  651.     report_error (ERR_NONFATAL,
  652.   "identifier expected after COMMON");
  653.     break;
  654. }
  655. if (*p) {
  656.     long size;
  657.     while (*p && isspace(*p))
  658. *p++ = '';
  659.     q = p;
  660.     while (*q && *q != ':')
  661. q++;
  662.     if (*q == ':') {
  663. *q++ = '';
  664. special = q;
  665.     } else
  666. special = NULL;
  667.     size = readnum (p, &rn_error);
  668.     if (rn_error)
  669. report_error (ERR_NONFATAL, "invalid size specified"
  670.       " in COMMON declaration");
  671.     else
  672. define_common (value, seg_alloc(), size,
  673.        special, ofmt, report_error);
  674. } else
  675.     report_error (ERR_NONFATAL, "no size specified in"
  676.   " COMMON declaration");
  677. break;
  678.       case 6:        /* [ABSOLUTE address] */
  679. stdscan_reset();
  680. stdscan_bufptr = value;
  681. tokval.t_type = TOKEN_INVALID;
  682. e = evaluate(stdscan, NULL, &tokval, NULL, 1, report_error,
  683.      NULL);
  684. if (e) {
  685.     if (!is_reloc(e))
  686. report_error (ERR_NONFATAL, "cannot use non-"
  687.       "relocatable expression as ABSOLUTE"
  688.       " address");
  689.     else {
  690. abs_seg = reloc_seg(e);
  691. abs_offset = reloc_value(e);
  692.     }
  693. } else
  694.     abs_offset = 0x100;/* don't go near zero in case of / */
  695. in_abs_seg = TRUE;
  696. location.segment = abs_seg;
  697. break;
  698.       case 7:
  699. p = value;
  700. validid = TRUE;
  701. if (!isidstart(*p))
  702.     validid = FALSE;
  703. while (*p && !isspace(*p)) {
  704.     if (!isidchar(*p))
  705. validid = FALSE;
  706.                     p++;
  707. }
  708. if (!validid) {
  709.     report_error (ERR_NONFATAL,
  710.   "identifier expected after DEBUG");
  711.     break;
  712. }
  713.                 while (*p && isspace(*p)) p++;
  714. break;
  715.       default:
  716. if (!ofmt->directive (line+1, value, 1))
  717.     report_error (ERR_NONFATAL, "unrecognised directive [%s]",
  718.   line+1);
  719. break;
  720.     }
  721. }
  722. else  /* it isn't a directive */
  723. {
  724.     parse_line (1, line, &output_ins,
  725. report_error, evaluate, define_label);
  726.     if (output_ins.forw_ref) 
  727.     {
  728. for(i = 0; i < output_ins.operands; i++) 
  729. {
  730.     if (output_ins.oprs[i].opflags & OPFLAG_FORWARD) 
  731.     {
  732.      struct forwrefinfo *fwinf =
  733.          (struct forwrefinfo *)saa_wstruct(forwrefs);
  734. fwinf->lineno = globallineno;
  735. fwinf->operand = i;
  736.     }
  737. }
  738.     }
  739.     if (output_ins.opcode == I_EQU) 
  740.     {
  741. /*
  742.  * Special `..' EQUs get processed in pass two,
  743.  * except `..@' macro-processor EQUs which are done
  744.  * in the normal place.
  745.  */
  746. if (!output_ins.label)
  747.     report_error (ERR_NONFATAL,
  748.   "EQU not preceded by label");
  749. else if (output_ins.label[0] != '.' ||
  750.  output_ins.label[1] != '.' ||
  751.  output_ins.label[2] == '@') 
  752. {
  753.     if (output_ins.operands == 1 &&
  754. (output_ins.oprs[0].type & IMMEDIATE) &&
  755. output_ins.oprs[0].wrt == NO_SEG) 
  756.     {
  757.       int isext = output_ins.oprs[0].opflags & OPFLAG_EXTERN;
  758.       define_label (output_ins.label,
  759.     output_ins.oprs[0].segment,
  760.     output_ins.oprs[0].offset,
  761.     NULL, FALSE, isext, ofmt, report_error);
  762.     } 
  763.     else if (output_ins.operands == 2 &&
  764.        (output_ins.oprs[0].type & IMMEDIATE) &&
  765.        (output_ins.oprs[0].type & COLON) &&
  766.        output_ins.oprs[0].segment == NO_SEG &&
  767.        output_ins.oprs[0].wrt == NO_SEG &&
  768.        (output_ins.oprs[1].type & IMMEDIATE) &&
  769.        output_ins.oprs[1].segment == NO_SEG &&
  770.        output_ins.oprs[1].wrt == NO_SEG) 
  771.     {
  772. define_label (output_ins.label,
  773.       output_ins.oprs[0].offset | SEG_ABS,
  774.       output_ins.oprs[1].offset,
  775.       NULL, FALSE, FALSE, ofmt, report_error);
  776.     } 
  777.     else
  778. report_error(ERR_NONFATAL, "bad syntax for EQU");
  779. }
  780.     } 
  781.     else  /* instruction isn't an EQU */
  782.     {
  783. long l = insn_size (location.segment, offs, sb,
  784.    &output_ins, report_error);
  785. if (using_debug_info && output_ins.opcode != -1) {
  786.     /* this is done here so we can do debug type info */
  787.                     long typeinfo = TYS_ELEMENTS(output_ins.operands);
  788.     switch (output_ins.opcode) {
  789.      case I_RESB:
  790.              typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_BYTE;  
  791.     break;
  792.      case I_RESW:
  793.              typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_WORD;  
  794.     break;
  795.      case I_RESD:
  796.              typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_DWORD;  
  797.     break;
  798.      case I_RESQ:
  799.              typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_QWORD;  
  800.     break;
  801.      case I_REST:
  802.              typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_TBYTE;  
  803.     break;
  804.           case I_DB:
  805.          typeinfo |= TY_BYTE;
  806.          break;
  807.              case I_DW:
  808.          typeinfo |= TY_WORD;
  809.          break;
  810.              case I_DD:
  811.          if (output_ins.eops_float)
  812.           typeinfo |= TY_FLOAT;
  813.                          else
  814.           typeinfo |= TY_DWORD;
  815.          break;
  816.              case I_DQ:
  817.          typeinfo |= TY_QWORD;
  818.          break;
  819.           case I_DT:
  820.          typeinfo |= TY_TBYTE;
  821.          break;
  822.           default:
  823.          typeinfo = TY_LABEL;
  824.     }
  825.     ofmt->current_dfmt->debug_typevalue(typeinfo);
  826. }
  827. if (l != -1) {
  828.     offs += l;
  829.     set_curr_ofs (offs);
  830. }
  831. /* 
  832.  * else l == -1 => invalid instruction, which will be
  833.  * flagged as an error on pass 2
  834.  */
  835.     }
  836.     cleanup_insn (&output_ins);
  837. }
  838. nasm_free (line);
  839. location.offset = offs = get_curr_ofs;
  840.     }
  841.     preproc->cleanup();
  842.     if (terminate_after_phase) {
  843. fclose(ofile);
  844. remove(outname);
  845. if (want_usage)
  846.     usage();
  847. exit (1);
  848.     }
  849.     /*
  850.      * pass two 
  851.      */
  852.     pass = 2;
  853.     saa_rewind (forwrefs);
  854.     if (*listname)
  855. nasmlist.init(listname, report_error);
  856.     forwref = saa_rstruct (forwrefs);
  857.     in_abs_seg = FALSE;
  858.     location.segment = ofmt->section(NULL, pass, &sb);
  859.     raa_free (offsets);
  860.     offsets = raa_init();
  861.     preproc->reset(fname, 2, report_error, evaluate, &nasmlist);
  862.     globallineno = 0;
  863.     location.offset = offs = get_curr_ofs;
  864.     while ( (line = preproc->getline()) ) 
  865.     {
  866. globallineno++;
  867. /* here we parse our directives; this is not handled by
  868.  * the 'real' parser. */
  869. if ( (i = getkw (line, &value)) ) {
  870.     switch (i) {
  871.       case 1:        /* [SEGMENT n] */
  872. seg = ofmt->section (value, pass, &sb);
  873. if (seg == NO_SEG) {
  874.     report_error (ERR_PANIC,
  875.   "invalid segment name on pass two");
  876. } else
  877.     in_abs_seg = FALSE;
  878.     location.segment = seg;
  879. break;
  880.       case 2:        /* [EXTERN label] */
  881. q = value;
  882. while (*q && *q != ':')
  883.     q++;
  884. if (*q == ':') {
  885.     *q++ = '';
  886.     ofmt->symdef(value, 0L, 0L, 3, q);
  887. }
  888. break;
  889.       case 3:        /* [BITS bits] */
  890. switch (atoi(value)) {
  891.   case 16:
  892.   case 32:
  893.     sb = atoi(value);
  894.     break;
  895.   default:
  896.     report_error(ERR_PANIC,
  897.  "invalid [BITS] value on pass two",
  898.  value);
  899.     break;
  900. }
  901. break;
  902.       case 4:        /* [GLOBAL symbol] */
  903. q = value;
  904. while (*q && *q != ':')
  905.     q++;
  906. if (*q == ':') {
  907.     *q++ = '';
  908.     ofmt->symdef(value, 0L, 0L, 3, q);
  909. }
  910. break;
  911.       case 5:        /* [COMMON symbol size] */
  912. q = value;
  913. while (*q && *q != ':') {
  914.     if (isspace(*q))
  915. *q = '';
  916.     q++;
  917. }
  918. if (*q == ':') {
  919.     *q++ = '';
  920.     ofmt->symdef(value, 0L, 0L, 3, q);
  921. }
  922. break;
  923.       case 6:        /* [ABSOLUTE addr] */
  924. stdscan_reset();
  925. stdscan_bufptr = value;
  926. tokval.t_type = TOKEN_INVALID;
  927. e = evaluate(stdscan, NULL, &tokval, NULL, 2, report_error,
  928.      NULL);
  929. if (e) {
  930.     if (!is_reloc(e))
  931. report_error (ERR_PANIC, "non-reloc ABSOLUTE address"
  932.       " in pass two");
  933.     else {
  934. abs_seg = reloc_seg(e);
  935. abs_offset = reloc_value(e);
  936.     }
  937. } else
  938.     report_error (ERR_PANIC, "invalid ABSOLUTE address "
  939.   "in pass two");
  940. in_abs_seg = TRUE;
  941. location.segment = abs_seg;
  942. break;
  943.       case 7:
  944. p = value;
  945.                 q = debugid;
  946. validid = TRUE;
  947. if (!isidstart(*p))
  948.     validid = FALSE;
  949. while (*p && !isspace(*p)) {
  950.     if (!isidchar(*p))
  951. validid = FALSE;
  952.     *q++ = *p++;
  953. }
  954. *q++ = 0;
  955. if (!validid) {
  956.     report_error (ERR_PANIC,
  957.   "identifier expected after DEBUG in pass 2");
  958.     break;
  959. }
  960.                 while (*p && isspace(*p)) 
  961.     p++;
  962. ofmt->current_dfmt->debug_directive (debugid, p);
  963. break;
  964.       default:
  965. if (!ofmt->directive (line+1, value, 2))
  966.     report_error (ERR_PANIC, "invalid directive on pass two");
  967. break;
  968.     }
  969. else  /* not a directive */
  970. {
  971.     parse_line (2, line, &output_ins,
  972. report_error, evaluate, redefine_label);
  973.     if (forwref != NULL && globallineno == forwref->lineno) {
  974. output_ins.forw_ref = TRUE;
  975. do {
  976.     output_ins.oprs[forwref->operand].opflags|= OPFLAG_FORWARD;
  977.     forwref = saa_rstruct (forwrefs);
  978. } while (forwref != NULL && forwref->lineno == globallineno);
  979.     } else
  980. output_ins.forw_ref = FALSE;
  981.     /*
  982.      * Hack to prevent phase error in the code
  983.      *   rol ax,x
  984.      *   x equ 1
  985.      *
  986.      * If the second operand is a forward reference,
  987.      * the UNITY property of the number 1 in that
  988.      * operand is cancelled. Otherwise the above
  989.      * sequence will cause a phase error.
  990.      *
  991.      * This hack means that the above code will
  992.      * generate 286+ code.
  993.      *
  994.      * The forward reference will mean that the
  995.      * operand will not have the UNITY property on
  996.      * the first pass, so the pass behaviours will
  997.      * be consistent.
  998.      */
  999.     if (output_ins.forw_ref &&
  1000. output_ins.operands >= 2 &&
  1001. (output_ins.oprs[1].opflags & OPFLAG_FORWARD)) 
  1002.     {
  1003.     output_ins.oprs[1].type &= ~ONENESS;
  1004.     }
  1005.     if (output_ins.opcode == I_EQU) 
  1006.     {
  1007. /*
  1008.  * Special `..' EQUs get processed here, except
  1009.  * `..@' macro processor EQUs which are done above.
  1010.  */
  1011. if (output_ins.label[0] == '.' &&
  1012.     output_ins.label[1] == '.' &&
  1013.     output_ins.label[2] != '@') 
  1014. {
  1015.     if (output_ins.operands == 1 &&
  1016. (output_ins.oprs[0].type & IMMEDIATE)) {
  1017. define_label (output_ins.label,
  1018.       output_ins.oprs[0].segment,
  1019.       output_ins.oprs[0].offset,
  1020.       NULL, FALSE, FALSE, ofmt, report_error);
  1021.     } 
  1022.     else if (output_ins.operands == 2 &&
  1023.        (output_ins.oprs[0].type & IMMEDIATE) &&
  1024.        (output_ins.oprs[0].type & COLON) &&
  1025.        output_ins.oprs[0].segment == NO_SEG &&
  1026.        (output_ins.oprs[1].type & IMMEDIATE) &&
  1027.        output_ins.oprs[1].segment == NO_SEG) 
  1028.     {
  1029. define_label (output_ins.label,
  1030.       output_ins.oprs[0].offset | SEG_ABS,
  1031.       output_ins.oprs[1].offset,
  1032.       NULL, FALSE, FALSE, ofmt, report_error);
  1033.     } 
  1034.     else
  1035. report_error(ERR_NONFATAL, "bad syntax for EQU");
  1036. }
  1037.     }
  1038.     offs += assemble (location.segment, offs, sb,
  1039.       &output_ins, ofmt, report_error, &nasmlist);
  1040.     cleanup_insn (&output_ins);
  1041.     set_curr_ofs (offs);
  1042. }
  1043. nasm_free (line);
  1044. location.offset = offs = get_curr_ofs;
  1045.     }
  1046.     preproc->cleanup();
  1047.     nasmlist.cleanup();
  1048. }
  1049. static int getkw (char *buf, char **value) 
  1050. {
  1051.     char *p, *q;
  1052.     if (*buf!='[')
  1053.      return 0;
  1054.     p = buf;
  1055.     while (*p && *p != ']') p++;
  1056.     if (!*p)
  1057. return 0;
  1058.     q = p++;
  1059.     while (*p && *p != ';') {
  1060. if (!isspace(*p))
  1061.     return 0;
  1062. p++;
  1063.     }
  1064.     q[1] = '';
  1065.     p = buf+1;
  1066.     while (*buf && *buf!=' ' && *buf!=']' && *buf!='t')
  1067.      buf++;
  1068.     if (*buf==']') {
  1069. *buf = '';
  1070. *value = buf;
  1071.     } else {
  1072. *buf++ = '';
  1073.         while (isspace(*buf)) buf++;   /* beppu - skip leading whitespace */
  1074. *value = buf;
  1075. while (*buf!=']') buf++;
  1076. *buf++ = '';
  1077.     }
  1078.     for (q=p; *q; q++)
  1079. *q = tolower(*q);
  1080.     if (!strcmp(p, "segment") || !strcmp(p, "section"))
  1081.      return 1;
  1082.     if (!strcmp(p, "extern"))
  1083.      return 2;
  1084.     if (!strcmp(p, "bits"))
  1085.      return 3;
  1086.     if (!strcmp(p, "global"))
  1087.      return 4;
  1088.     if (!strcmp(p, "common"))
  1089.      return 5;
  1090.     if (!strcmp(p, "absolute"))
  1091.      return 6;
  1092.     if (!strcmp(p, "debug"))
  1093. return 7;
  1094.     return -1;
  1095. }
  1096. static void report_error (int severity, char *fmt, ...) 
  1097. {
  1098.     va_list ap;
  1099.     /*
  1100.      * See if it's a suppressed warning.
  1101.      */
  1102.     if ((severity & ERR_MASK) == ERR_WARNING &&
  1103. (severity & ERR_WARN_MASK) != 0 &&
  1104. suppressed[ (severity & ERR_WARN_MASK) >> ERR_WARN_SHR ])
  1105. return;        /* and bail out if so */
  1106.     /*
  1107.      * See if it's a pass-one only warning and we're not in pass one.
  1108.      */
  1109.     if ((severity & ERR_PASS1) && pass != 1)
  1110. return;
  1111.     if (severity & ERR_NOFILE)
  1112. fputs ("nasm: ", error_file);
  1113.     else {
  1114. char * currentfile = NULL;
  1115. long lineno = 0;
  1116. src_get (&lineno, &currentfile);
  1117. fprintf (error_file, "%s:%ld: ", currentfile, lineno);
  1118. nasm_free (currentfile);
  1119.     }
  1120.     if ( (severity & ERR_MASK) == ERR_WARNING)
  1121. fputs ("warning: ", error_file);
  1122.     else if ( (severity & ERR_MASK) == ERR_PANIC)
  1123. fputs ("panic: ", error_file);
  1124.     va_start (ap, fmt);
  1125.     vfprintf (error_file, fmt, ap);
  1126.     fputc ('n', error_file);
  1127.     if (severity & ERR_USAGE)
  1128. want_usage = TRUE;
  1129.     switch (severity & ERR_MASK) {
  1130.       case ERR_WARNING:
  1131. /* no further action, by definition */
  1132. break;
  1133.       case ERR_NONFATAL:
  1134. terminate_after_phase = TRUE;
  1135. break;
  1136.       case ERR_FATAL:
  1137. if (ofile) {
  1138.     fclose(ofile);
  1139.     remove(outname);
  1140. }
  1141. if (want_usage)
  1142.     usage();
  1143. exit(1);        /* instantly die */
  1144. break;        /* placate silly compilers */
  1145.       case ERR_PANIC:
  1146. fflush(NULL);
  1147. abort();        /* halt, catch fire, and dump core */
  1148. break;
  1149.     }
  1150. }
  1151. static void usage(void) 
  1152. {
  1153.     fputs("type `nasm -h' for helpn", error_file);
  1154. }
  1155. static void register_output_formats(void) 
  1156. {
  1157.     ofmt = ofmt_register (report_error);
  1158. }
  1159. #define BUF_DELTA 512
  1160. static FILE *no_pp_fp;
  1161. static efunc no_pp_err;
  1162. static ListGen *no_pp_list;
  1163. static long no_pp_lineinc;
  1164. static void no_pp_reset (char *file, int pass, efunc error, evalfunc eval,
  1165.  ListGen *listgen) 
  1166. {
  1167.     src_set_fname(nasm_strdup(file));
  1168.     src_set_linnum(0);
  1169.     no_pp_lineinc = 1;
  1170.     no_pp_err = error;
  1171.     no_pp_fp = fopen(file, "r");
  1172.     if (!no_pp_fp)
  1173. no_pp_err (ERR_FATAL | ERR_NOFILE,
  1174.    "unable to open input file `%s'", file);
  1175.     no_pp_list = listgen;
  1176.     (void) pass;        /* placate compilers */
  1177.     (void) eval;        /* placate compilers */
  1178. }
  1179. static char *no_pp_getline (void) 
  1180. {
  1181.     char *buffer, *p, *q;
  1182.     int bufsize;
  1183.     bufsize = BUF_DELTA;
  1184.     buffer = nasm_malloc(BUF_DELTA);
  1185.     src_set_linnum(src_get_linnum() + no_pp_lineinc);
  1186.     while (1) {   /* Loop to handle %line */
  1187. p = buffer;
  1188. while (1) {  /* Loop to handle long lines */
  1189.     q = fgets(p, bufsize-(p-buffer), no_pp_fp);
  1190.     if (!q)
  1191. break;
  1192.     p += strlen(p);
  1193.     if (p > buffer && p[-1] == 'n')
  1194. break;
  1195.     if (p-buffer > bufsize-10) {
  1196. int offset;
  1197. offset = p - buffer;
  1198. bufsize += BUF_DELTA;
  1199. buffer = nasm_realloc(buffer, bufsize);
  1200. p = buffer + offset;
  1201.     }
  1202. }
  1203. if (!q && p == buffer) {
  1204.     nasm_free (buffer);
  1205.     return NULL;
  1206. }
  1207. /*
  1208.  * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
  1209.  * them are present at the end of the line.
  1210.  */
  1211. buffer[strcspn(buffer, "rn32")] = '';
  1212. if (!strncmp(buffer, "%line", 5)) {
  1213.     long ln;
  1214.     int  li;
  1215.     char *nm = nasm_malloc(strlen(buffer));
  1216.     if (sscanf(buffer+5, "%ld+%d %s", &ln, &li, nm) == 3) {
  1217. nasm_free( src_set_fname(nm) );
  1218. src_set_linnum(ln);
  1219. no_pp_lineinc = li;
  1220. continue;
  1221.     }
  1222.     nasm_free(nm);
  1223. }
  1224. break;
  1225.     }
  1226.     no_pp_list->line (LIST_READ, buffer);
  1227.     return buffer;
  1228. }
  1229. static void no_pp_cleanup (void) 
  1230. {
  1231.     fclose(no_pp_fp);
  1232. }