xref: /titanic_41/usr/src/tools/aw/aw.c (revision 9e86db79b7d1bbc5f2f04e99954cbd5eae0e22bb)
1 /*
2  * CDDL HEADER START
3  *
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.
7  *
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.
12  *
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]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*
28  * Wrapper for the GNU assembler to make it accept the Sun assembler
29  * arguments where possible.
30  *
31  * There are several limitations; the Sun assembler takes multiple
32  * source files, we only take one.
33  *
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).
42  *
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!)
47  */
48 
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>
56 
57 static const char *progname;
58 static int verbose;
59 
60 struct aelist {
61 	int ael_argc;
62 	struct ae {
63 		struct ae *ae_next;
64 		char *ae_arg;
65 	} *ael_head, *ael_tail;
66 };
67 
68 static struct aelist *
69 newael(void)
70 {
71 	return (calloc(sizeof (struct aelist), 1));
72 }
73 
74 static void
75 newae(struct aelist *ael, const char *arg)
76 {
77 	struct ae *ae;
78 
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++;
87 }
88 
89 static void
90 fixae_arg(struct ae *ae, const char *newarg)
91 {
92 	free(ae->ae_arg);
93 	ae->ae_arg = strdup(newarg);
94 }
95 
96 static char **
97 aeltoargv(struct aelist *ael)
98 {
99 	struct ae *ae;
100 	char **argv;
101 	int argc;
102 
103 	argv = calloc(sizeof (*argv), ael->ael_argc + 1);
104 
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;
109 	}
110 
111 	return (argv);
112 }
113 
114 static int
115 error(const char *arg)
116 {
117 	(void) fprintf(stderr,
118 	    "%s: as->gas mapping failed at or near arg '%s'\n", progname, arg);
119 	return (2);
120 }
121 
122 static int
123 usage(const char *arg)
124 {
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);
133 }
134 
135 static void
136 copyuntil(FILE *in, FILE *out, int termchar)
137 {
138 	int c;
139 
140 	while ((c = fgetc(in)) != EOF) {
141 		if (out && fputc(c, out) == EOF)
142 			exit(1);
143 		if (c == termchar)
144 			break;
145 	}
146 }
147 
148 /*
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.
158  */
159 static void
160 copyuntil_path(FILE *in, FILE *out, int termchar,
161     const char *wspace, size_t wspace_len)
162 {
163 #define	PROTO_INC "/proto/root_i386/usr/include/"
164 #define	SYS_INC "/usr/include/"
165 
166 	static const size_t proto_inc_len = sizeof (PROTO_INC) - 1;
167 	static const size_t sys_inc_len = sizeof (SYS_INC) - 1;
168 
169 	/*
170 	 * Dynamically sized buffer for reading paths. Retained
171 	 * and reused between calls.
172 	 */
173 	static char	*buf = NULL;
174 	static size_t	bufsize = 0;
175 
176 	size_t	bufcnt = 0;
177 	char	*bufptr;
178 	int	c;
179 
180 	/* Read the path into the buffer */
181 	while ((c = fgetc(in)) != EOF) {
182 		/*
183 		 * If we need a buffer, or need a larger buffer,
184 		 * fix that here.
185 		 */
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);
192 			}
193 		}
194 
195 		buf[bufcnt++] = c;
196 		if (c == termchar)
197 			break;
198 	}
199 	if (bufcnt == 0)
200 		return;
201 
202 	/*
203 	 * We have a non-empty buffer, and thus the opportunity
204 	 * to do some surgery on it before passing it to the output.
205 	 */
206 	buf[bufcnt] = '\0';
207 	bufptr = buf;
208 
209 	/*
210 	 * If our workspace is at the start, remove it.
211 	 * If not, then look for the system /usr/include instead.
212 	 */
213 	if ((wspace_len > 0) && (wspace_len < bufcnt) &&
214 	    (strncmp(bufptr, wspace, wspace_len) == 0)) {
215 		bufptr += wspace_len;
216 		bufcnt -= wspace_len;
217 
218 		/*
219 		 * Further opportunity: Also clip the prefix
220 		 * that leads to /usr/include in the proto.
221 		 */
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;
226 		}
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;
231 	}
232 
233 	/* Output whatever is left */
234 	if (out && (fwrite(bufptr, 1, bufcnt, out) != bufcnt)) {
235 		perror("fwrite");
236 		exit(1);
237 	}
238 
239 #undef PROTO_INC
240 #undef SYS_INC
241 }
242 
243 /*
244  * The idea here is to take directives like this emitted
245  * by cpp:
246  *
247  *	# num
248  *
249  * and convert them to directives like this that are
250  * understood by the GNU assembler:
251  *
252  *	.line num
253  *
254  * and similarly:
255  *
256  *	# num "string" optional stuff
257  *
258  * is converted to
259  *
260  *	.line num
261  *	.file "string"
262  *
263  * While this could be done with a sequence of sed
264  * commands, this is simpler and faster..
265  */
266 static pid_t
267 filter(int pipein, int pipeout)
268 {
269 	pid_t pid;
270 	FILE *in, *out;
271 	char *wspace;
272 	size_t wspace_len;
273 
274 	if (verbose)
275 		(void) fprintf(stderr, "{#line filter} ");
276 
277 	switch (pid = fork()) {
278 	case 0:
279 		if (dup2(pipein, 0) == -1 ||
280 		    dup2(pipeout, 1) == -1) {
281 			perror("dup2");
282 			exit(1);
283 		}
284 		closefrom(3);
285 		break;
286 	case -1:
287 		perror("fork");
288 	default:
289 		return (pid);
290 	}
291 
292 	in = fdopen(0, "r");
293 	out = fdopen(1, "w");
294 
295 	/*
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.
299 	 */
300 	wspace = getenv("CODEMGR_WS");
301 	if (wspace != NULL)
302 		wspace_len = strlen(wspace);
303 
304 	while (!feof(in)) {
305 		int c, num;
306 
307 		switch (c = fgetc(in)) {
308 		case '#':
309 			switch (fscanf(in, " %d", &num)) {
310 			case 0:
311 				/*
312 				 * discard comment lines completely
313 				 * discard ident strings completely too.
314 				 * (GNU as politely ignores them..)
315 				 */
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:
325 				/*
326 				 * This line has a number at the beginning;
327 				 * if it has a string after the number, then
328 				 * it's a filename.
329 				 *
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.
337 				 */
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);
346 				}
347 				(void) fprintf(out, "\t.line %d\n", num - 1);
348 				/*
349 				 * discard the rest of the line
350 				 */
351 				copyuntil(in, NULL, '\n');
352 				break;
353 			}
354 			break;
355 		case '\n':
356 			/*
357 			 * preserve newlines
358 			 */
359 			(void) fputc(c, out);
360 			break;
361 		case EOF:
362 			/*
363 			 * don't write EOF!
364 			 */
365 			break;
366 		default:
367 			/*
368 			 * lines that don't begin with '#' are copied
369 			 */
370 			(void) fputc(c, out);
371 			copyuntil(in, out, '\n');
372 			break;
373 		}
374 
375 		if (ferror(out))
376 			exit(1);
377 	}
378 
379 	exit(0);
380 	/*NOTREACHED*/
381 }
382 
383 static pid_t
384 invoke(char **argv, int pipein, int pipeout)
385 {
386 	pid_t pid;
387 
388 	if (verbose) {
389 		char **dargv = argv;
390 
391 		while (*dargv)
392 			(void) fprintf(stderr, "%s ", *dargv++);
393 	}
394 
395 	switch (pid = fork()) {
396 	case 0:
397 		if (pipein >= 0 && dup2(pipein, 0) == -1) {
398 			perror("dup2");
399 			exit(1);
400 		}
401 		if (pipeout >= 0 && dup2(pipeout, 1) == -1) {
402 			perror("dup2");
403 			exit(1);
404 		}
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);
415 	}
416 	exit(2);
417 	/*NOTREACHED*/
418 }
419 
420 static int
421 pipeline(char **ppargv, char **asargv)
422 {
423 	int pipedes[4];
424 	int active = 0;
425 	int rval = 0;
426 	pid_t pid_pp, pid_f, pid_as;
427 
428 	if (pipe(pipedes) == -1 || pipe(pipedes + 2) == -1) {
429 		perror("pipe");
430 		return (4);
431 	}
432 
433 	if ((pid_pp = invoke(ppargv, -1, pipedes[0])) > 0)
434 		active++;
435 
436 	if (verbose)
437 		(void) fprintf(stderr, "| ");
438 
439 	if ((pid_f = filter(pipedes[1], pipedes[2])) > 0)
440 		active++;
441 
442 	if (verbose)
443 		(void) fprintf(stderr, "| ");
444 
445 	if ((pid_as = invoke(asargv, pipedes[3], -1)) > 0)
446 		active++;
447 
448 	if (verbose) {
449 		(void) fprintf(stderr, "\n");
450 		(void) fflush(stderr);
451 	}
452 
453 	closefrom(3);
454 
455 	if (active != 3)
456 		return (5);
457 
458 	while (active != 0) {
459 		pid_t pid;
460 		int stat;
461 
462 		if ((pid = wait(&stat)) == -1) {
463 			rval++;
464 			break;
465 		}
466 
467 		if (!WIFEXITED(stat))
468 			continue;
469 
470 		if (pid == pid_pp || pid == pid_f || pid == pid_as) {
471 			active--;
472 			if (WEXITSTATUS(stat) != 0)
473 				rval++;
474 		}
475 	}
476 
477 	return (rval);
478 }
479 
480 int
481 main(int argc, char *argv[])
482 {
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 *as_dir, *as64_dir, *m4_dir, *m4_lib_dir, *cpp_dir;
490 	char *as_pgm, *as64_pgm, *m4_pgm, *m4_cmdefs, *cpp_pgm;
491 	size_t bufsize;
492 	int as64 = 0;
493 	int code;
494 
495 	if ((progname = strrchr(argv[0], '/')) == NULL)
496 		progname = argv[0];
497 	else
498 		progname++;
499 
500 	/*
501 	 * Helpful when debugging, or when changing tool versions..
502 	 */
503 	if ((as_dir = getenv("AW_AS_DIR")) == NULL)
504 		as_dir = DEFAULT_AS_DIR;	/* /usr/sfw/bin */
505 	bufsize = strlen(as_dir) + strlen("/gas") + 1;
506 	as_pgm = malloc(bufsize);
507 	(void) snprintf(as_pgm, bufsize, "%s/gas", as_dir);
508 
509 	if ((as64_dir = getenv("AW_AS64_DIR")) == NULL)
510 		as64_dir = DEFAULT_AS64_DIR;	/* /usr/sfw/bin */
511 	bufsize = strlen(as64_dir) + strlen("/gas") + 1;
512 	as64_pgm = malloc(bufsize);
513 	(void) snprintf(as64_pgm, bufsize, "%s/gas", as64_dir);
514 
515 	if ((m4_dir = getenv("AW_M4_DIR")) == NULL)
516 		m4_dir = DEFAULT_M4_DIR;	/* /usr/ccs/bin */
517 	bufsize = strlen(m4_dir) + strlen("/m4") + 1;
518 	m4_pgm = malloc(bufsize);
519 	(void) snprintf(m4_pgm, bufsize, "%s/m4", m4_dir);
520 
521 	if ((m4_lib_dir = getenv("AW_M4LIB_DIR")) == NULL)
522 		m4_lib_dir = DEFAULT_M4LIB_DIR;	/* /usr/ccs/lib */
523 	bufsize = strlen(m4_lib_dir) + strlen("/cmdefs") + 1;
524 	m4_cmdefs = malloc(bufsize);
525 	(void) snprintf(m4_cmdefs, bufsize, "%s/cmdefs", m4_lib_dir);
526 
527 	if ((cpp_dir = getenv("AW_CPP_DIR")) == NULL)
528 		cpp_dir = DEFAULT_CPP_DIR;	/* /usr/ccs/lib */
529 	bufsize = strlen(cpp_dir) + strlen("/cpp") + 1;
530 	cpp_pgm = malloc(bufsize);
531 	(void) snprintf(cpp_pgm, bufsize, "%s/cpp", cpp_dir);
532 
533 	newae(as, as_pgm);
534 	newae(as, "--warn");
535 	newae(as, "--fatal-warnings");
536 	newae(as, "--traditional-format");
537 
538 	/*
539 	 * This is a support hack to rewrite code for the compiler
540 	 * which should probably cause an assembler programmer to recode
541 	 * - so, generate a warning in this case.
542 	 *
543 	 * -K was dropped begining with version 2.18.
544 	 */
545 	{
546 		struct aelist *as_ver = newael();
547 		struct aelist *ggrep = newael();
548 
549 		newae(as_ver, as_pgm);
550 		newae(as_ver, "--version");
551 		newae(ggrep, "/usr/bin/ggrep");
552 		newae(ggrep, "-q");
553 		newae(ggrep, "-E");
554 		newae(ggrep, "2.1[567]");
555 		code = pipeline(aeltoargv(as_ver), aeltoargv(ggrep));
556 		if (code == 0) {
557 			newae(as, "-K");
558 		}
559 	}
560 
561 	/*
562 	 * Walk the argument list, translating as we go ..
563 	 */
564 	while (--argc > 0) {
565 		char *arg;
566 		int arglen;
567 
568 		arg = *++argv;
569 		arglen = strlen(arg);
570 
571 		if (*arg != '-') {
572 			char *filename;
573 
574 			/*
575 			 * filenames ending in '.s' are taken to be
576 			 * assembler files, and provide the default
577 			 * basename of the output file.
578 			 *
579 			 * other files are passed through to the
580 			 * preprocessor, if present, or to gas if not.
581 			 */
582 			filename = arg;
583 			if (arglen > 2 &&
584 			    strcmp(arg + arglen - 2, ".s") == 0) {
585 				/*
586 				 * Though 'as' allows multiple assembler
587 				 * files to be processed in one invocation
588 				 * of the assembler, ON only processes one
589 				 * file at a time, which makes things a lot
590 				 * simpler!
591 				 */
592 				if (srcfile == NULL)
593 					srcfile = arg;
594 				else
595 					return (usage(
596 					    "one assembler file at a time"));
597 
598 				/*
599 				 * If we haven't seen a -o option yet,
600 				 * default the output to the basename
601 				 * of the input, substituting a .o on the end
602 				 */
603 				if (outfile == NULL) {
604 					char *argcopy;
605 
606 					argcopy = strdup(arg);
607 					argcopy[arglen - 1] = 'o';
608 
609 					if ((outfile = strrchr(
610 					    argcopy, '/')) == NULL)
611 						outfile = argcopy;
612 					else
613 						outfile++;
614 				}
615 			}
616 			if (cpp)
617 				newae(cpp, filename);
618 			else if (m4)
619 				newae(m4, filename);
620 			else
621 				newae(as, filename);
622 			continue;
623 		} else
624 			arglen--;
625 
626 		switch (arg[1]) {
627 		case 'K':
628 			/*
629 			 * -K pic
630 			 * -K PIC
631 			 */
632 			if (arglen == 1) {
633 				if ((arg = *++argv) == NULL || *arg == '\0')
634 					return (usage("malformed -K"));
635 				argc--;
636 			} else {
637 				arg += 2;
638 			}
639 			if (strcmp(arg, "PIC") != 0 && strcmp(arg, "pic") != 0)
640 				return (usage("malformed -K"));
641 			break;		/* just ignore -Kpic for gcc */
642 		case 'Q':
643 			if (strcmp(arg, "-Qn") == 0)
644 				break;
645 			/*FALLTHROUGH*/
646 		case 'b':
647 		case 's':
648 		case 'T':
649 			/*
650 			 * -b	Extra symbol table for source browser ..
651 			 *	not relevant to gas, thus should error.
652 			 * -s	Put stabs in .stabs section not stabs.excl
653 			 *	not clear if there's an equivalent
654 			 * -T	4.x migration option
655 			 */
656 		default:
657 			return (error(arg));
658 		case 'x':
659 			/*
660 			 * Accept -xarch special case to invoke alternate
661 			 * assemblers or assembler flags for different
662 			 * architectures.
663 			 */
664 			if (strcmp(arg, "-xarch=amd64") == 0 ||
665 			    strcmp(arg, "-xarch=generic64") == 0) {
666 				as64++;
667 				fixae_arg(as->ael_head, as64_pgm);
668 				break;
669 			}
670 			/*
671 			 * XX64: Is this useful to gas?
672 			 */
673 			if (strcmp(arg, "-xmodel=kernel") == 0)
674 				break;
675 
676 			/*
677 			 * -xF	Generates performance analysis data
678 			 *	no equivalent
679 			 */
680 			return (error(arg));
681 		case 'V':
682 			newae(as, arg);
683 			break;
684 		case '#':
685 			verbose++;
686 			break;
687 		case 'L':
688 			newae(as, "--keep-locals");
689 			break;
690 		case 'n':
691 			newae(as, "--no-warn");
692 			break;
693 		case 'o':
694 			if (arglen != 1)
695 				return (usage("bad -o flag"));
696 			if ((arg = *++argv) == NULL || *arg == '\0')
697 				return (usage("bad -o flag"));
698 			outfile = arg;
699 			argc--;
700 			arglen = strlen(arg + 1);
701 			break;
702 		case 'm':
703 			if (cpp)
704 				return (usage("-m conflicts with -P"));
705 			if (m4 == NULL) {
706 				m4 = newael();
707 				newae(m4, m4_pgm);
708 				newae(m4, m4_cmdefs);
709 			}
710 			break;
711 		case 'P':
712 			if (m4)
713 				return (usage("-P conflicts with -m"));
714 			if (cpp == NULL) {
715 				cpp = newael();
716 				newae(cpp, cpp_pgm);
717 				newae(cpp, "-D__GNUC_AS__");
718 			}
719 			break;
720 		case 'D':
721 		case 'U':
722 			if (cpp)
723 				newae(cpp, arg);
724 			else if (m4)
725 				newae(m4, arg);
726 			else
727 				newae(as, arg);
728 			break;
729 		case 'I':
730 			if (cpp)
731 				newae(cpp, arg);
732 			else
733 				newae(as, arg);
734 			break;
735 		case '-':	/* a gas-specific option */
736 			newae(as, arg);
737 			break;
738 		}
739 	}
740 
741 #if defined(__i386)
742 	if (as64)
743 		newae(as, "--64");
744 	else
745 		newae(as, "--32");
746 #endif
747 
748 	if (srcfile == NULL)
749 		return (usage("no source file(s) specified"));
750 	if (outfile == NULL)
751 		outfile = "a.out";
752 	newae(as, "-o");
753 	newae(as, outfile);
754 
755 	asargv = aeltoargv(as);
756 	if (cpp) {
757 #if defined(__sparc)
758 		newae(cpp, "-Dsparc");
759 		newae(cpp, "-D__sparc");
760 		if (as64)
761 			newae(cpp, "-D__sparcv9");
762 		else
763 			newae(cpp, "-D__sparcv8");
764 #elif defined(__i386) || defined(__x86)
765 		if (as64) {
766 			newae(cpp, "-D__x86_64");
767 			newae(cpp, "-D__amd64");
768 		} else {
769 			newae(cpp, "-Di386");
770 			newae(cpp, "-D__i386");
771 		}
772 #else
773 #error	"need isa-dependent defines"
774 #endif
775 		code = pipeline(aeltoargv(cpp), asargv);
776 	} else if (m4)
777 		code = pipeline(aeltoargv(m4), asargv);
778 	else {
779 		/*
780 		 * XXX	should arrange to fork/exec so that we
781 		 *	can unlink the output file if errors are
782 		 *	detected..
783 		 */
784 		(void) execvp(asargv[0], asargv);
785 		perror("execvp");
786 		(void) fprintf(stderr, "%s: couldn't run %s\n",
787 		    progname, asargv[0]);
788 		code = 7;
789 	}
790 	if (code != 0)
791 		(void) unlink(outfile);
792 	return (code);
793 }
794