aw: remove support for -b -s and -T
[unleashed.git] / usr / src / tools / aw / aw.c
blob5907902833388c4c5e8c823c6e43954fa104cf2b
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
28 * Wrapper for the GNU assembler to make it accept the Sun assembler
29 * arguments where possible.
31 * There are several limitations; the Sun assembler takes multiple
32 * source files, we only take one.
34 * -b, -s, -xF, -T plain not supported.
35 * -S isn't supported either, because while GNU as does generate
36 * listings with -a, there's no obvious mapping between sub-options.
37 * -K pic, -K PIC not supported either, though it's not clear what
38 * these actually do ..
39 * -Qy (not supported) adds a string to the .comment section
40 * describing the assembler version, while
41 * -Qn (supported) suppresses the string (also the default).
43 * We also add '-#' support to see invocation lines..
44 * We also add '-xarch=amd64' in case we need to feed the assembler
45 * something different (or in case we need to invoke a different binary
46 * altogether!)
49 #include <sys/types.h>
50 #include <sys/wait.h>
51 #include <stdio.h>
52 #include <unistd.h>
53 #include <string.h>
54 #include <stdlib.h>
55 #include <sys/param.h>
57 static const char *progname;
58 static int verbose;
60 struct aelist {
61 int ael_argc;
62 struct ae {
63 struct ae *ae_next;
64 char *ae_arg;
65 } *ael_head, *ael_tail;
68 static struct aelist *
69 newael(void)
71 return (calloc(sizeof (struct aelist), 1));
74 static void
75 newae(struct aelist *ael, const char *arg)
77 struct ae *ae;
79 ae = calloc(sizeof (*ae), 1);
80 ae->ae_arg = strdup(arg);
81 if (ael->ael_tail == NULL)
82 ael->ael_head = ae;
83 else
84 ael->ael_tail->ae_next = ae;
85 ael->ael_tail = ae;
86 ael->ael_argc++;
89 static void
90 fixae_arg(struct ae *ae, const char *newarg)
92 free(ae->ae_arg);
93 ae->ae_arg = strdup(newarg);
96 static char **
97 aeltoargv(struct aelist *ael)
99 struct ae *ae;
100 char **argv;
101 int argc;
103 argv = calloc(sizeof (*argv), ael->ael_argc + 1);
105 for (argc = 0, ae = ael->ael_head; ae; ae = ae->ae_next, argc++) {
106 argv[argc] = ae->ae_arg;
107 if (ae == ael->ael_tail)
108 break;
111 return (argv);
114 static int
115 error(const char *arg)
117 (void) fprintf(stderr,
118 "%s: as->gas mapping failed at or near arg '%s'\n", progname, arg);
119 return (2);
122 static int
123 usage(const char *arg)
125 if (arg != NULL)
126 (void) fprintf(stderr, "error: %s\n", arg);
127 (void) fprintf(stderr, "Usage: %s [-V] [-#]\n"
128 "\t[-xarch=architecture]\n"
129 "\t[-o objfile] [-L]\n"
130 "\t[-P [[-Ipath] [-Dname] [-Dname=def] [-Uname]]...]\n"
131 "\t[-m] [-n] file.s ...\n", progname);
132 return (3);
135 static void
136 copyuntil(FILE *in, FILE *out, int termchar)
138 int c;
140 while ((c = fgetc(in)) != EOF) {
141 if (out && fputc(c, out) == EOF)
142 exit(1);
143 if (c == termchar)
144 break;
149 * Variant of copyuntil(), used for copying the path used
150 * for .file directives. This version removes the workspace
151 * from the head of the path, or failing that, attempts to remove
152 * /usr/include. This is a workaround for the way gas handles
153 * these directives. The objects produced by gas contain STT_FILE
154 * symbols for every .file directive. These FILE symbols contain our
155 * workspace paths, leading to wsdiff incorrectly flagging them as
156 * having changed. By clipping off the workspace from these paths,
157 * we eliminate these false positives.
159 static void
160 copyuntil_path(FILE *in, FILE *out, int termchar,
161 const char *wspace, size_t wspace_len)
163 #define PROTO_INC "/proto/root_i386/usr/include/"
164 #define SYS_INC "/usr/include/"
166 static const size_t proto_inc_len = sizeof (PROTO_INC) - 1;
167 static const size_t sys_inc_len = sizeof (SYS_INC) - 1;
170 * Dynamically sized buffer for reading paths. Retained
171 * and reused between calls.
173 static char *buf = NULL;
174 static size_t bufsize = 0;
176 size_t bufcnt = 0;
177 char *bufptr;
178 int c;
180 /* Read the path into the buffer */
181 while ((c = fgetc(in)) != EOF) {
183 * If we need a buffer, or need a larger buffer,
184 * fix that here.
186 if (bufcnt >= bufsize) {
187 bufsize = (bufsize == 0) ? MAXPATHLEN : (bufsize * 2);
188 buf = realloc(buf, bufsize + 1); /* + room for NULL */
189 if (buf == NULL) {
190 perror("realloc");
191 exit(1);
195 buf[bufcnt++] = c;
196 if (c == termchar)
197 break;
199 if (bufcnt == 0)
200 return;
203 * We have a non-empty buffer, and thus the opportunity
204 * to do some surgery on it before passing it to the output.
206 buf[bufcnt] = '\0';
207 bufptr = buf;
210 * If our workspace is at the start, remove it.
211 * If not, then look for the system /usr/include instead.
213 if ((wspace_len > 0) && (wspace_len < bufcnt) &&
214 (strncmp(bufptr, wspace, wspace_len) == 0)) {
215 bufptr += wspace_len;
216 bufcnt -= wspace_len;
219 * Further opportunity: Also clip the prefix
220 * that leads to /usr/include in the proto.
222 if ((proto_inc_len < bufcnt) &&
223 (strncmp(bufptr, PROTO_INC, proto_inc_len) == 0)) {
224 bufptr += proto_inc_len;
225 bufcnt -= proto_inc_len;
227 } else if ((sys_inc_len < bufcnt) &&
228 (strncmp(bufptr, SYS_INC, sys_inc_len) == 0)) {
229 bufptr += sys_inc_len;
230 bufcnt -= sys_inc_len;
233 /* Output whatever is left */
234 if (out && (fwrite(bufptr, 1, bufcnt, out) != bufcnt)) {
235 perror("fwrite");
236 exit(1);
239 #undef PROTO_INC
240 #undef SYS_INC
244 * The idea here is to take directives like this emitted
245 * by cpp:
247 * # num
249 * and convert them to directives like this that are
250 * understood by the GNU assembler:
252 * .line num
254 * and similarly:
256 * # num "string" optional stuff
258 * is converted to
260 * .line num
261 * .file "string"
263 * While this could be done with a sequence of sed
264 * commands, this is simpler and faster..
266 static pid_t
267 filter(int pipein, int pipeout)
269 pid_t pid;
270 FILE *in, *out;
271 char *wspace;
272 size_t wspace_len;
274 if (verbose)
275 (void) fprintf(stderr, "{#line filter} ");
277 switch (pid = fork()) {
278 case 0:
279 if (dup2(pipein, 0) == -1 ||
280 dup2(pipeout, 1) == -1) {
281 perror("dup2");
282 exit(1);
284 closefrom(3);
285 break;
286 case -1:
287 perror("fork");
288 default:
289 return (pid);
292 in = fdopen(0, "r");
293 out = fdopen(1, "w");
296 * Key off the CODEMGR_WS environment variable to detect
297 * if we're in an activated workspace, and to get the
298 * path to the workspace.
300 wspace = getenv("CODEMGR_WS");
301 if (wspace != NULL)
302 wspace_len = strlen(wspace);
304 while (!feof(in)) {
305 int c, num;
307 switch (c = fgetc(in)) {
308 case '#':
309 switch (fscanf(in, " %d", &num)) {
310 case 0:
312 * discard comment lines completely
313 * discard ident strings completely too.
314 * (GNU as politely ignores them..)
316 copyuntil(in, NULL, '\n');
317 break;
318 default:
319 (void) fprintf(stderr, "fscanf botch?");
320 /*FALLTHROUGH*/
321 case EOF:
322 exit(1);
323 /*NOTREACHED*/
324 case 1:
326 * This line has a number at the beginning;
327 * if it has a string after the number, then
328 * it's a filename.
330 * If this is an activated workspace, use
331 * copyuntil_path() to do path rewriting
332 * that will prevent workspace paths from
333 * being burned into the resulting object.
334 * If not in an activated workspace, then
335 * copy the existing path straight through
336 * without interpretation.
338 if (fgetc(in) == ' ' && fgetc(in) == '"') {
339 (void) fprintf(out, "\t.file \"");
340 if (wspace != NULL)
341 copyuntil_path(in, out, '"',
342 wspace, wspace_len);
343 else
344 copyuntil(in, out, '"');
345 (void) fputc('\n', out);
347 (void) fprintf(out, "\t.line %d\n", num - 1);
349 * discard the rest of the line
351 copyuntil(in, NULL, '\n');
352 break;
354 break;
355 case '\n':
357 * preserve newlines
359 (void) fputc(c, out);
360 break;
361 case EOF:
363 * don't write EOF!
365 break;
366 default:
368 * lines that don't begin with '#' are copied
370 (void) fputc(c, out);
371 copyuntil(in, out, '\n');
372 break;
375 if (ferror(out))
376 exit(1);
379 exit(0);
380 /*NOTREACHED*/
383 static pid_t
384 invoke(char **argv, int pipein, int pipeout)
386 pid_t pid;
388 if (verbose) {
389 char **dargv = argv;
391 while (*dargv)
392 (void) fprintf(stderr, "%s ", *dargv++);
395 switch (pid = fork()) {
396 case 0:
397 if (pipein >= 0 && dup2(pipein, 0) == -1) {
398 perror("dup2");
399 exit(1);
401 if (pipeout >= 0 && dup2(pipeout, 1) == -1) {
402 perror("dup2");
403 exit(1);
405 closefrom(3);
406 (void) execvp(argv[0], argv);
407 perror("execvp");
408 (void) fprintf(stderr, "%s: couldn't run %s\n",
409 progname, argv[0]);
410 break;
411 case -1:
412 perror("fork");
413 default:
414 return (pid);
416 exit(2);
417 /*NOTREACHED*/
420 static int
421 pipeline(char **ppargv, char **asargv)
423 int pipedes[4];
424 int active = 0;
425 int rval = 0;
426 pid_t pid_pp, pid_f, pid_as;
428 if (pipe(pipedes) == -1 || pipe(pipedes + 2) == -1) {
429 perror("pipe");
430 return (4);
433 if ((pid_pp = invoke(ppargv, -1, pipedes[0])) > 0)
434 active++;
436 if (verbose)
437 (void) fprintf(stderr, "| ");
439 if ((pid_f = filter(pipedes[1], pipedes[2])) > 0)
440 active++;
442 if (verbose)
443 (void) fprintf(stderr, "| ");
445 if ((pid_as = invoke(asargv, pipedes[3], -1)) > 0)
446 active++;
448 if (verbose) {
449 (void) fprintf(stderr, "\n");
450 (void) fflush(stderr);
453 closefrom(3);
455 if (active != 3)
456 return (5);
458 while (active != 0) {
459 pid_t pid;
460 int stat;
462 if ((pid = wait(&stat)) == -1) {
463 rval++;
464 break;
467 if (!WIFEXITED(stat))
468 continue;
470 if (pid == pid_pp || pid == pid_f || pid == pid_as) {
471 active--;
472 if (WEXITSTATUS(stat) != 0)
473 rval++;
477 return (rval);
481 main(int argc, char *argv[])
483 struct aelist *cpp = NULL;
484 struct aelist *m4 = NULL;
485 struct aelist *as = newael();
486 char **asargv;
487 char *outfile = NULL;
488 char *srcfile = NULL;
489 const char *dir, *cmd;
490 static char as_pgm[MAXPATHLEN];
491 static char as64_pgm[MAXPATHLEN];
492 static char m4_pgm[MAXPATHLEN];
493 static char m4_cmdefs[MAXPATHLEN];
494 static char cpp_pgm[MAXPATHLEN];
495 int as64 = 0;
496 int code;
498 if ((progname = strrchr(argv[0], '/')) == NULL)
499 progname = argv[0];
500 else
501 progname++;
504 * Helpful when debugging, or when changing tool versions..
506 if ((cmd = getenv("AW_AS")) != NULL)
507 strlcpy(as_pgm, cmd, sizeof (as_pgm));
508 else {
509 if ((dir = getenv("AW_AS_DIR")) == NULL)
510 dir = DEFAULT_AS_DIR; /* /usr/sfw/bin */
511 (void) snprintf(as_pgm, sizeof (as_pgm), "%s/gas", dir);
514 if ((cmd = getenv("AW_AS64")) != NULL)
515 strlcpy(as64_pgm, cmd, sizeof (as64_pgm));
516 else {
517 if ((dir = getenv("AW_AS64_DIR")) == NULL)
518 dir = DEFAULT_AS64_DIR; /* /usr/sfw/bin */
519 (void) snprintf(as64_pgm, sizeof (as_pgm), "%s/gas", dir);
522 if ((cmd = getenv("AW_M4")) != NULL)
523 strlcpy(m4_pgm, cmd, sizeof (m4_pgm));
524 else {
525 if ((dir = getenv("AW_M4_DIR")) == NULL)
526 dir = DEFAULT_M4_DIR; /* /usr/ccs/bin */
527 (void) snprintf(m4_pgm, sizeof (m4_pgm), "%s/m4", dir);
530 if ((cmd = getenv("AW_M4LIB")) != NULL)
531 strlcpy(m4_cmdefs, cmd, sizeof (m4_cmdefs));
532 else {
533 if ((dir = getenv("AW_M4LIB_DIR")) == NULL)
534 dir = DEFAULT_M4LIB_DIR; /* /usr/ccs/lib */
535 (void) snprintf(m4_cmdefs, sizeof (m4_cmdefs),
536 "%s/cm4defs", dir);
539 if ((cmd = getenv("AW_CPP")) != NULL)
540 strlcpy(cpp_pgm, cmd, sizeof (cpp_pgm));
541 else {
542 if ((dir = getenv("AW_CPP_DIR")) == NULL)
543 dir = DEFAULT_CPP_DIR; /* /usr/ccs/lib */
544 (void) snprintf(cpp_pgm, sizeof (cpp_pgm), "%s/cpp", dir);
547 newae(as, as_pgm);
548 newae(as, "--warn");
549 newae(as, "--fatal-warnings");
550 newae(as, "--traditional-format");
553 * Walk the argument list, translating as we go ..
555 while (--argc > 0) {
556 char *arg;
557 int arglen;
559 arg = *++argv;
560 arglen = strlen(arg);
562 if (*arg != '-') {
563 char *filename;
566 * filenames ending in '.s' are taken to be
567 * assembler files, and provide the default
568 * basename of the output file.
570 * other files are passed through to the
571 * preprocessor, if present, or to gas if not.
573 filename = arg;
574 if ((arglen > 2) &&
575 ((strcmp(arg + arglen - 2, ".s") == 0) ||
576 (strcmp(arg + arglen - 2, ".S") == 0))) {
578 * Though 'as' allows multiple assembler
579 * files to be processed in one invocation
580 * of the assembler, ON only processes one
581 * file at a time, which makes things a lot
582 * simpler!
584 if (srcfile == NULL)
585 srcfile = arg;
586 else
587 return (usage(
588 "one assembler file at a time"));
591 * If we haven't seen a -o option yet,
592 * default the output to the basename
593 * of the input, substituting a .o on the end
595 if (outfile == NULL) {
596 char *argcopy;
598 argcopy = strdup(arg);
599 argcopy[arglen - 1] = 'o';
601 if ((outfile = strrchr(
602 argcopy, '/')) == NULL)
603 outfile = argcopy;
604 else
605 outfile++;
608 if (cpp)
609 newae(cpp, filename);
610 else if (m4)
611 newae(m4, filename);
612 else
613 newae(as, filename);
614 continue;
615 } else
616 arglen--;
618 switch (arg[1]) {
619 case 'K':
621 * -K pic
622 * -K PIC
624 if (arglen == 1) {
625 if ((arg = *++argv) == NULL || *arg == '\0')
626 return (usage("malformed -K"));
627 argc--;
628 } else {
629 arg += 2;
631 if (strcmp(arg, "PIC") != 0 && strcmp(arg, "pic") != 0)
632 return (usage("malformed -K"));
633 break; /* just ignore -Kpic for gcc */
634 default:
635 return (error(arg));
636 case 'x':
638 * Accept -xarch special case to invoke alternate
639 * assemblers or assembler flags for different
640 * architectures.
642 if (strcmp(arg, "-xarch=amd64") == 0 ||
643 strcmp(arg, "-xarch=generic64") == 0) {
644 as64++;
645 fixae_arg(as->ael_head, as64_pgm);
646 break;
649 * XX64: Is this useful to gas?
651 if (strcmp(arg, "-xmodel=kernel") == 0)
652 break;
655 * -xF Generates performance analysis data
656 * no equivalent
658 return (error(arg));
659 case 'V':
660 newae(as, arg);
661 break;
662 case '#':
663 verbose++;
664 break;
665 case 'L':
666 newae(as, "--keep-locals");
667 break;
668 case 'n':
669 newae(as, "--no-warn");
670 break;
671 case 'o':
672 if (arglen != 1)
673 return (usage("bad -o flag"));
674 if ((arg = *++argv) == NULL || *arg == '\0')
675 return (usage("bad -o flag"));
676 outfile = arg;
677 argc--;
678 arglen = strlen(arg + 1);
679 break;
680 case 'm':
681 if (cpp)
682 return (usage("-m conflicts with -P"));
683 if (m4 == NULL) {
684 m4 = newael();
685 newae(m4, m4_pgm);
686 newae(m4, m4_cmdefs);
688 break;
689 case 'P':
690 if (m4)
691 return (usage("-P conflicts with -m"));
692 if (cpp == NULL) {
693 cpp = newael();
694 newae(cpp, cpp_pgm);
695 newae(cpp, "-D__GNUC_AS__");
697 break;
698 case 'D':
699 case 'U':
700 if (cpp)
701 newae(cpp, arg);
702 else if (m4)
703 newae(m4, arg);
704 else
705 newae(as, arg);
706 break;
707 case 'I':
708 if (cpp)
709 newae(cpp, arg);
710 else
711 newae(as, arg);
712 break;
713 case '-': /* a gas-specific option */
714 newae(as, arg);
715 break;
719 #if defined(__i386)
720 if (as64)
721 newae(as, "--64");
722 else
723 newae(as, "--32");
724 #endif
726 if (srcfile == NULL)
727 return (usage("no source file(s) specified"));
728 if (outfile == NULL)
729 outfile = "a.out";
730 newae(as, "-o");
731 newae(as, outfile);
733 asargv = aeltoargv(as);
734 if (cpp) {
735 #if defined(__sparc)
736 newae(cpp, "-Dsparc");
737 newae(cpp, "-D__sparc");
738 if (as64)
739 newae(cpp, "-D__sparcv9");
740 else
741 newae(cpp, "-D__sparcv8");
742 #elif defined(__i386) || defined(__x86)
743 if (as64) {
744 newae(cpp, "-D__x86_64");
745 newae(cpp, "-D__amd64");
746 } else {
747 newae(cpp, "-Di386");
748 newae(cpp, "-D__i386");
750 #else
751 #error "need isa-dependent defines"
752 #endif
753 code = pipeline(aeltoargv(cpp), asargv);
754 } else if (m4)
755 code = pipeline(aeltoargv(m4), asargv);
756 else {
758 * XXX should arrange to fork/exec so that we
759 * can unlink the output file if errors are
760 * detected..
762 (void) execvp(asargv[0], asargv);
763 perror("execvp");
764 (void) fprintf(stderr, "%s: couldn't run %s\n",
765 progname, asargv[0]);
766 code = 7;
768 if (code != 0)
769 (void) unlink(outfile);
770 return (code);