aicasm.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:19k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Aic7xxx SCSI host adapter firmware asssembler
  3.  *
  4.  * Copyright (c) 1997, 1998, 2000, 2001 Justin T. Gibbs.
  5.  * Copyright (c) 2001 Adaptec Inc.
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions, and the following disclaimer,
  13.  *    without modification.
  14.  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  15.  *    substantially similar to the "NO WARRANTY" disclaimer below
  16.  *    ("Disclaimer") and any redistribution must be conditioned upon
  17.  *    including a substantially similar Disclaimer requirement for further
  18.  *    binary redistribution.
  19.  * 3. Neither the names of the above-listed copyright holders nor the names
  20.  *    of any contributors may be used to endorse or promote products derived
  21.  *    from this software without specific prior written permission.
  22.  *
  23.  * Alternatively, this software may be distributed under the terms of the
  24.  * GNU General Public License ("GPL") version 2 as published by the Free
  25.  * Software Foundation.
  26.  *
  27.  * NO WARRANTY
  28.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  31.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  32.  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  33.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  34.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  36.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  37.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  38.  * POSSIBILITY OF SUCH DAMAGES.
  39.  *
  40.  * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm.c#15 $
  41.  *
  42.  * $FreeBSD: src/sys/dev/aic7xxx/aicasm/aicasm.c,v 1.29 2000/10/05 04:25:42 gibbs Exp $
  43.  */
  44. #include <sys/types.h>
  45. #include <sys/mman.h>
  46. #include <ctype.h>
  47. #include <inttypes.h>
  48. #include <regex.h>
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include <string.h>
  52. #include <sysexits.h>
  53. #include <unistd.h>
  54. #if linux
  55. #include <endian.h>
  56. #else
  57. #include <machine/endian.h>
  58. #endif
  59. #include "aicasm.h"
  60. #include "aicasm_symbol.h"
  61. #include "aicasm_insformat.h"
  62. typedef struct patch {
  63. STAILQ_ENTRY(patch) links;
  64. int patch_func;
  65. u_int begin;
  66. u_int skip_instr;
  67. u_int skip_patch;
  68. } patch_t;
  69. STAILQ_HEAD(patch_list, patch) patches;
  70. static void usage(void);
  71. static void back_patch(void);
  72. static void output_code(void);
  73. static void output_listing(char *ifilename);
  74. static void dump_scope(scope_t *scope);
  75. static void emit_patch(scope_t *scope, int patch);
  76. static int check_patch(patch_t **start_patch, int start_instr,
  77.        int *skip_addr, int *func_vals);
  78. struct path_list search_path;
  79. int includes_search_curdir;
  80. char *appname;
  81. FILE *ofile;
  82. char *ofilename;
  83. char *regfilename;
  84. FILE *regfile;
  85. char *listfilename;
  86. FILE *listfile;
  87. int   src_mode;
  88. int   dst_mode;
  89. static STAILQ_HEAD(,instruction) seq_program;
  90. struct cs_tailq cs_tailq;
  91. struct scope_list scope_stack;
  92. symlist_t patch_functions;
  93. #if DEBUG
  94. extern int yy_flex_debug;
  95. extern int mm_flex_debug;
  96. extern int yydebug;
  97. extern int mmdebug;
  98. #endif
  99. extern FILE *yyin;
  100. extern int yyparse(void);
  101. int main(int argc, char *argv[]);
  102. int
  103. main(int argc, char *argv[])
  104. {
  105. extern char *optarg;
  106. extern int optind;
  107. int  ch;
  108. int  retval;
  109. char *inputfilename;
  110. scope_t *sentinal;
  111. STAILQ_INIT(&patches);
  112. SLIST_INIT(&search_path);
  113. STAILQ_INIT(&seq_program);
  114. TAILQ_INIT(&cs_tailq);
  115. SLIST_INIT(&scope_stack);
  116. /* Set Sentinal scope node */
  117. sentinal = scope_alloc();
  118. sentinal->type = SCOPE_ROOT;
  119. includes_search_curdir = 1;
  120. appname = *argv;
  121. regfile = NULL;
  122. listfile = NULL;
  123. #if DEBUG
  124. yy_flex_debug = 0;
  125. mm_flex_debug = 0;
  126. yydebug = 0;
  127. mmdebug = 0;
  128. #endif
  129. while ((ch = getopt(argc, argv, "d:l:n:o:r:I:O:")) != -1) {
  130. switch(ch) {
  131. case 'd':
  132. #if DEBUG
  133. if (strcmp(optarg, "s") == 0) {
  134. yy_flex_debug = 1;
  135. mm_flex_debug = 1;
  136. } else if (strcmp(optarg, "p") == 0) {
  137. yydebug = 1;
  138. mmdebug = 1;
  139. } else {
  140. fprintf(stderr, "%s: -d Requires either an "
  141. "'s' or 'p' argumentn", appname);
  142. usage();
  143. }
  144. #else
  145. stop("-d: Assembler not built with debugging "
  146.      "information", EX_SOFTWARE);
  147. #endif
  148. break;
  149. case 'l':
  150. /* Create a program listing */
  151. if ((listfile = fopen(optarg, "w")) == NULL) {
  152. perror(optarg);
  153. stop(NULL, EX_CANTCREAT);
  154. }
  155. listfilename = optarg;
  156. break;
  157. case 'n':
  158. /* Don't complain about the -nostdinc directrive */
  159. if (strcmp(optarg, "ostdinc")) {
  160. fprintf(stderr, "%s: Unknown option -%c%sn",
  161. appname, ch, optarg);
  162. usage();
  163. /* NOTREACHED */
  164. }
  165. break;
  166. case 'o':
  167. if ((ofile = fopen(optarg, "w")) == NULL) {
  168. perror(optarg);
  169. stop(NULL, EX_CANTCREAT);
  170. }
  171. ofilename = optarg;
  172. break;
  173. case 'r':
  174. if ((regfile = fopen(optarg, "w")) == NULL) {
  175. perror(optarg);
  176. stop(NULL, EX_CANTCREAT);
  177. }
  178. regfilename = optarg;
  179. break;
  180. case 'I':
  181. {
  182. path_entry_t include_dir;
  183. if (strcmp(optarg, "-") == 0) {
  184. if (includes_search_curdir == 0) {
  185. fprintf(stderr, "%s: Warning - '-I-' "
  186. "specified multiple "
  187. "timesn", appname);
  188. }
  189. includes_search_curdir = 0;
  190. for (include_dir = SLIST_FIRST(&search_path);
  191.      include_dir != NULL;
  192.      include_dir = SLIST_NEXT(include_dir,
  193.       links))
  194. /*
  195.  * All entries before a '-I-' only
  196.  * apply to includes specified with
  197.  * quotes instead of "<>".
  198.  */
  199. include_dir->quoted_includes_only = 1;
  200. } else {
  201. include_dir =
  202.     (path_entry_t)malloc(sizeof(*include_dir));
  203. if (include_dir == NULL) {
  204. perror(optarg);
  205. stop(NULL, EX_OSERR);
  206. }
  207. include_dir->directory = strdup(optarg);
  208. if (include_dir->directory == NULL) {
  209. perror(optarg);
  210. stop(NULL, EX_OSERR);
  211. }
  212. include_dir->quoted_includes_only = 0;
  213. SLIST_INSERT_HEAD(&search_path, include_dir,
  214.   links);
  215. }
  216. break;
  217. }
  218. case '?':
  219. default:
  220. usage();
  221. /* NOTREACHED */
  222. }
  223. }
  224. argc -= optind;
  225. argv += optind;
  226. if (argc != 1) {
  227. fprintf(stderr, "%s: No input file specifiledn", appname);
  228. usage();
  229. /* NOTREACHED */
  230. }
  231. symtable_open();
  232. inputfilename = *argv;
  233. include_file(*argv, SOURCE_FILE);
  234. retval = yyparse();
  235. if (retval == 0) {
  236. if (SLIST_FIRST(&scope_stack) == NULL
  237.  || SLIST_FIRST(&scope_stack)->type != SCOPE_ROOT) {
  238. stop("Unterminated conditional expression", EX_DATAERR);
  239. /* NOTREACHED */
  240. }
  241. /* Process outmost scope */
  242. process_scope(SLIST_FIRST(&scope_stack));
  243. /*
  244.  * Decend the tree of scopes and insert/emit
  245.  * patches as appropriate.  We perform a depth first
  246.  * tranversal, recursively handling each scope.
  247.  */
  248. /* start at the root scope */
  249. dump_scope(SLIST_FIRST(&scope_stack));
  250. /* Patch up forward jump addresses */
  251. back_patch();
  252. if (ofile != NULL)
  253. output_code();
  254. if (regfile != NULL) {
  255. symtable_dump(regfile);
  256. }
  257. if (listfile != NULL)
  258. output_listing(inputfilename);
  259. }
  260. stop(NULL, 0);
  261. /* NOTREACHED */
  262. return (0);
  263. }
  264. static void
  265. usage()
  266. {
  267. (void)fprintf(stderr,
  268. "usage: %-16s [-nostdinc] [-I-] [-I directory] [-o output_file]
  269. [-r register_output_file] [-l program_list_file]
  270. input_filen",
  271. appname);
  272. exit(EX_USAGE);
  273. }
  274. static void
  275. back_patch()
  276. {
  277. struct instruction *cur_instr;
  278. for (cur_instr = STAILQ_FIRST(&seq_program);
  279.      cur_instr != NULL;
  280.      cur_instr = STAILQ_NEXT(cur_instr, links)) {
  281. if (cur_instr->patch_label != NULL) {
  282. struct ins_format3 *f3_instr;
  283. u_int address;
  284. if (cur_instr->patch_label->type != LABEL) {
  285. char buf[255];
  286. snprintf(buf, sizeof(buf),
  287.  "Undefined label %s",
  288.  cur_instr->patch_label->name);
  289. stop(buf, EX_DATAERR);
  290. /* NOTREACHED */
  291. }
  292. f3_instr = &cur_instr->format.format3;
  293. address = f3_instr->address;
  294. address += cur_instr->patch_label->info.linfo->address;
  295. f3_instr->address = address;
  296. }
  297. }
  298. }
  299. static void
  300. output_code()
  301. {
  302. struct instruction *cur_instr;
  303. patch_t *cur_patch;
  304. critical_section_t *cs;
  305. symbol_node_t *cur_node;
  306. int instrcount;
  307. instrcount = 0;
  308. fprintf(ofile,
  309. "/*
  310.  * DO NOT EDIT - This file is automatically generated
  311.  *  from the following source files:
  312.  *
  313. %s */n", versions);
  314. fprintf(ofile, "static uint8_t seqprog[] = {n");
  315. for (cur_instr = STAILQ_FIRST(&seq_program);
  316.      cur_instr != NULL;
  317.      cur_instr = STAILQ_NEXT(cur_instr, links)) {
  318. fprintf(ofile, "%st0x%02x, 0x%02x, 0x%02x, 0x%02x",
  319. cur_instr == STAILQ_FIRST(&seq_program) ? "" : ",n",
  320. #if BYTE_ORDER == LITTLE_ENDIAN
  321. cur_instr->format.bytes[0],
  322. cur_instr->format.bytes[1],
  323. cur_instr->format.bytes[2],
  324. cur_instr->format.bytes[3]);
  325. #else
  326. cur_instr->format.bytes[3],
  327. cur_instr->format.bytes[2],
  328. cur_instr->format.bytes[1],
  329. cur_instr->format.bytes[0]);
  330. #endif
  331. instrcount++;
  332. }
  333. fprintf(ofile, "n};nn");
  334. if (patch_arg_list == NULL)
  335. stop("Patch argument list not defined",
  336.      EX_DATAERR);
  337. /*
  338.  *  Output patch information.  Patch functions first.
  339.  */
  340. for (cur_node = SLIST_FIRST(&patch_functions);
  341.      cur_node != NULL;
  342.      cur_node = SLIST_NEXT(cur_node,links)) {
  343. fprintf(ofile,
  344. "static int aic_patch%d_func(%s);
  345. static int
  346. aic_patch%d_func(%s)
  347. {
  348. return (%s);
  349. }nn",
  350. cur_node->symbol->info.condinfo->func_num,
  351. patch_arg_list,
  352. cur_node->symbol->info.condinfo->func_num,
  353. patch_arg_list,
  354. cur_node->symbol->name);
  355. }
  356. fprintf(ofile,
  357. "typedef int patch_func_t (%s);
  358. static struct patch {
  359. patch_func_t *patch_func;
  360. uint32_t begin    :10,
  361. skip_instr :10,
  362. skip_patch :12;
  363. } patches[] = {n", patch_arg_list);
  364. for (cur_patch = STAILQ_FIRST(&patches);
  365.      cur_patch != NULL;
  366.      cur_patch = STAILQ_NEXT(cur_patch,links)) {
  367. fprintf(ofile, "%st{ aic_patch%d_func, %d, %d, %d }",
  368. cur_patch == STAILQ_FIRST(&patches) ? "" : ",n",
  369. cur_patch->patch_func, cur_patch->begin,
  370. cur_patch->skip_instr, cur_patch->skip_patch);
  371. }
  372. fprintf(ofile, "n};n");
  373. fprintf(ofile,
  374. "static struct cs {
  375. u_int16_t begin;
  376. u_int16_t end;
  377. } critical_sections[] = {n");
  378. for (cs = TAILQ_FIRST(&cs_tailq);
  379.      cs != NULL;
  380.      cs = TAILQ_NEXT(cs, links)) {
  381. fprintf(ofile, "%st{ %d, %d }",
  382. cs == TAILQ_FIRST(&cs_tailq) ? "" : ",n",
  383. cs->begin_addr, cs->end_addr);
  384. }
  385. fprintf(ofile, "n};n");
  386. fprintf(ofile,
  387. "static const int num_critical_sections = sizeof(critical_sections)
  388.        / sizeof(*critical_sections);n");
  389. fprintf(stderr, "%s: %d instructions usedn", appname, instrcount);
  390. }
  391. static void
  392. dump_scope(scope_t *scope)
  393. {
  394. scope_t *cur_scope;
  395. /*
  396.  * Emit the first patch for this scope
  397.  */
  398. emit_patch(scope, 0);
  399. /*
  400.  * Dump each scope within this one.
  401.  */
  402. cur_scope = TAILQ_FIRST(&scope->inner_scope);
  403. while (cur_scope != NULL) {
  404. dump_scope(cur_scope);
  405. cur_scope = TAILQ_NEXT(cur_scope, scope_links);
  406. }
  407. /*
  408.  * Emit the second, closing, patch for this scope
  409.  */
  410. emit_patch(scope, 1);
  411. }
  412. void
  413. emit_patch(scope_t *scope, int patch)
  414. {
  415. patch_info_t *pinfo;
  416. patch_t *new_patch;
  417. pinfo = &scope->patches[patch];
  418. if (pinfo->skip_instr == 0)
  419. /* No-Op patch */
  420. return;
  421. new_patch = (patch_t *)malloc(sizeof(*new_patch));
  422. if (new_patch == NULL)
  423. stop("Could not malloc patch structure", EX_OSERR);
  424. memset(new_patch, 0, sizeof(*new_patch));
  425. if (patch == 0) {
  426. new_patch->patch_func = scope->func_num;
  427. new_patch->begin = scope->begin_addr;
  428. } else {
  429. new_patch->patch_func = 0;
  430. new_patch->begin = scope->end_addr;
  431. }
  432. new_patch->skip_instr = pinfo->skip_instr;
  433. new_patch->skip_patch = pinfo->skip_patch;
  434. STAILQ_INSERT_TAIL(&patches, new_patch, links);
  435. }
  436. void
  437. output_listing(char *ifilename)
  438. {
  439. char buf[1024];
  440. FILE *ifile;
  441. struct instruction *cur_instr;
  442. patch_t *cur_patch;
  443. symbol_node_t *cur_func;
  444. int *func_values;
  445. int instrcount;
  446. int instrptr;
  447. int line;
  448. int func_count;
  449. int skip_addr;
  450. instrcount = 0;
  451. instrptr = 0;
  452. line = 1;
  453. skip_addr = 0;
  454. if ((ifile = fopen(ifilename, "r")) == NULL) {
  455. perror(ifilename);
  456. stop(NULL, EX_DATAERR);
  457. }
  458. /*
  459.  * Determine which options to apply to this listing.
  460.  */
  461. for (func_count = 0, cur_func = SLIST_FIRST(&patch_functions);
  462.     cur_func != NULL;
  463.     cur_func = SLIST_NEXT(cur_func, links))
  464. func_count++;
  465. func_values = NULL;
  466. if (func_count != 0) {
  467. func_values = (int *)malloc(func_count * sizeof(int));
  468. if (func_values == NULL)
  469. stop("Could not malloc", EX_OSERR);
  470. func_values[0] = 0; /* FALSE func */
  471. func_count--;
  472. /*
  473.  * Ask the user to fill in the return values for
  474.  * the rest of the functions.
  475.  */
  476. for (cur_func = SLIST_FIRST(&patch_functions);
  477.      cur_func != NULL && SLIST_NEXT(cur_func, links) != NULL;
  478.      cur_func = SLIST_NEXT(cur_func, links), func_count--) {
  479. int input;
  480. fprintf(stdout, "n(%s)n", cur_func->symbol->name);
  481. fprintf(stdout,
  482. "Enter the return value for "
  483. "this expression[T/F]:");
  484. while (1) {
  485. input = getchar();
  486. input = toupper(input);
  487. if (input == 'T') {
  488. func_values[func_count] = 1;
  489. break;
  490. } else if (input == 'F') {
  491. func_values[func_count] = 0;
  492. break;
  493. }
  494. }
  495. if (isatty(fileno(stdin)) == 0)
  496. putchar(input);
  497. }
  498. fprintf(stdout, "nThanks!n");
  499. }
  500. /* Now output the listing */
  501. cur_patch = STAILQ_FIRST(&patches);
  502. for (cur_instr = STAILQ_FIRST(&seq_program);
  503.      cur_instr != NULL;
  504.      cur_instr = STAILQ_NEXT(cur_instr, links), instrcount++) {
  505. if (check_patch(&cur_patch, instrcount,
  506. &skip_addr, func_values) == 0) {
  507. /* Don't count this instruction as it is in a patch
  508.  * that was removed.
  509.  */
  510.                         continue;
  511. }
  512. while (line < cur_instr->srcline) {
  513. fgets(buf, sizeof(buf), ifile);
  514. fprintf(listfile, "tt%s", buf);
  515. line++;
  516. }
  517. fprintf(listfile, "%03x %02x%02x%02x%02x", instrptr,
  518. #if BYTE_ORDER == LITTLE_ENDIAN
  519. cur_instr->format.bytes[0],
  520. cur_instr->format.bytes[1],
  521. cur_instr->format.bytes[2],
  522. cur_instr->format.bytes[3]);
  523. #else
  524. cur_instr->format.bytes[3],
  525. cur_instr->format.bytes[2],
  526. cur_instr->format.bytes[1],
  527. cur_instr->format.bytes[0]);
  528. #endif
  529. fgets(buf, sizeof(buf), ifile);
  530. fprintf(listfile, "t%s", buf);
  531. line++;
  532. instrptr++;
  533. }
  534. /* Dump the remainder of the file */
  535. while(fgets(buf, sizeof(buf), ifile) != NULL)
  536. fprintf(listfile, "tt%s", buf);
  537. fclose(ifile);
  538. }
  539. static int
  540. check_patch(patch_t **start_patch, int start_instr,
  541.     int *skip_addr, int *func_vals)
  542. {
  543. patch_t *cur_patch;
  544. cur_patch = *start_patch;
  545. while (cur_patch != NULL && start_instr == cur_patch->begin) {
  546. if (func_vals[cur_patch->patch_func] == 0) {
  547. int skip;
  548. /* Start rejecting code */
  549. *skip_addr = start_instr + cur_patch->skip_instr;
  550. for (skip = cur_patch->skip_patch;
  551.      skip > 0 && cur_patch != NULL;
  552.      skip--)
  553. cur_patch = STAILQ_NEXT(cur_patch, links);
  554. } else {
  555. /* Accepted this patch.  Advance to the next
  556.  * one and wait for our intruction pointer to
  557.  * hit this point.
  558.  */
  559. cur_patch = STAILQ_NEXT(cur_patch, links);
  560. }
  561. }
  562. *start_patch = cur_patch;
  563. if (start_instr < *skip_addr)
  564. /* Still skipping */
  565. return (0);
  566. return (1);
  567. }
  568. /*
  569.  * Print out error information if appropriate, and clean up before
  570.  * terminating the program.
  571.  */
  572. void
  573. stop(const char *string, int err_code)
  574. {
  575. if (string != NULL) {
  576. fprintf(stderr, "%s: ", appname);
  577. if (yyfilename != NULL) {
  578. fprintf(stderr, "Stopped at file %s, line %d - ",
  579. yyfilename, yylineno);
  580. }
  581. fprintf(stderr, "%sn", string);
  582. }
  583. if (ofile != NULL) {
  584. fclose(ofile);
  585. if (err_code != 0) {
  586. fprintf(stderr, "%s: Removing %s due to errorn",
  587. appname, ofilename);
  588. unlink(ofilename);
  589. }
  590. }
  591. if (regfile != NULL) {
  592. fclose(regfile);
  593. if (err_code != 0) {
  594. fprintf(stderr, "%s: Removing %s due to errorn",
  595. appname, regfilename);
  596. unlink(regfilename);
  597. }
  598. }
  599. if (listfile != NULL) {
  600. fclose(listfile);
  601. if (err_code != 0) {
  602. fprintf(stderr, "%s: Removing %s due to errorn",
  603. appname, listfilename);
  604. unlink(listfilename);
  605. }
  606. }
  607. symlist_free(&patch_functions);
  608. symtable_close();
  609. exit(err_code);
  610. }
  611. struct instruction *
  612. seq_alloc()
  613. {
  614. struct instruction *new_instr;
  615. new_instr = (struct instruction *)malloc(sizeof(struct instruction));
  616. if (new_instr == NULL)
  617. stop("Unable to malloc instruction object", EX_SOFTWARE);
  618. memset(new_instr, 0, sizeof(*new_instr));
  619. STAILQ_INSERT_TAIL(&seq_program, new_instr, links);
  620. new_instr->srcline = yylineno;
  621. return new_instr;
  622. }
  623. critical_section_t *
  624. cs_alloc()
  625. {
  626. critical_section_t *new_cs;
  627. new_cs= (critical_section_t *)malloc(sizeof(critical_section_t));
  628. if (new_cs == NULL)
  629. stop("Unable to malloc critical_section object", EX_SOFTWARE);
  630. memset(new_cs, 0, sizeof(*new_cs));
  631. TAILQ_INSERT_TAIL(&cs_tailq, new_cs, links);
  632. return new_cs;
  633. }
  634. scope_t *
  635. scope_alloc()
  636. {
  637. scope_t *new_scope;
  638. new_scope = (scope_t *)malloc(sizeof(scope_t));
  639. if (new_scope == NULL)
  640. stop("Unable to malloc scope object", EX_SOFTWARE);
  641. memset(new_scope, 0, sizeof(*new_scope));
  642. TAILQ_INIT(&new_scope->inner_scope);
  643. if (SLIST_FIRST(&scope_stack) != NULL) {
  644. TAILQ_INSERT_TAIL(&SLIST_FIRST(&scope_stack)->inner_scope,
  645.   new_scope, scope_links);
  646. }
  647. /* This patch is now the current scope */
  648. SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links);
  649. return new_scope;
  650. }
  651. void
  652. process_scope(scope_t *scope)
  653. {
  654. /*
  655.  * We are "leaving" this scope.  We should now have
  656.  * enough information to process the lists of scopes
  657.  * we encapsulate.
  658.  */
  659. scope_t *cur_scope;
  660. u_int skip_patch_count;
  661. u_int skip_instr_count;
  662. cur_scope = TAILQ_LAST(&scope->inner_scope, scope_tailq);
  663. skip_patch_count = 0;
  664. skip_instr_count = 0;
  665. while (cur_scope != NULL) {
  666. u_int patch0_patch_skip;
  667. patch0_patch_skip = 0;
  668. switch (cur_scope->type) {
  669. case SCOPE_IF:
  670. case SCOPE_ELSE_IF:
  671. if (skip_instr_count != 0) {
  672. /* Create a tail patch */
  673. patch0_patch_skip++;
  674. cur_scope->patches[1].skip_patch =
  675.     skip_patch_count + 1;
  676. cur_scope->patches[1].skip_instr =
  677.     skip_instr_count;
  678. }
  679. /* Count Head patch */
  680. patch0_patch_skip++;
  681. /* Count any patches contained in our inner scope */
  682. patch0_patch_skip += cur_scope->inner_scope_patches;
  683. cur_scope->patches[0].skip_patch = patch0_patch_skip;
  684. cur_scope->patches[0].skip_instr =
  685.     cur_scope->end_addr - cur_scope->begin_addr;
  686. skip_instr_count += cur_scope->patches[0].skip_instr;
  687. skip_patch_count += patch0_patch_skip;
  688. if (cur_scope->type == SCOPE_IF) {
  689. scope->inner_scope_patches += skip_patch_count;
  690. skip_patch_count = 0;
  691.         skip_instr_count = 0;
  692. }
  693. break;
  694. case SCOPE_ELSE:
  695. /* Count any patches contained in our innter scope */
  696. skip_patch_count += cur_scope->inner_scope_patches;
  697. skip_instr_count += cur_scope->end_addr
  698.   - cur_scope->begin_addr;
  699. break;
  700. case SCOPE_ROOT:
  701. stop("Unexpected scope type encountered", EX_SOFTWARE);
  702. /* NOTREACHED */
  703. }
  704. cur_scope = TAILQ_PREV(cur_scope, scope_tailq, scope_links);
  705. }
  706. }