obj.c 19.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
// Inferno utils/8l/obj.c
// http://code.google.com/p/inferno-os/source/browse/utils/8l/obj.c
//
//	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
//	Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
//	Portions Copyright © 1997-1999 Vita Nuova Limited
//	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
//	Portions Copyright © 2004,2006 Bruce Ellis
//	Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net)
//	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
//	Portions Copyright © 2009 The Go Authors.  All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

#define	EXTERN
#include	"l.h"
33
#include	"../ld/lib.h"
Russ Cox's avatar
Russ Cox committed
34
#include	"../ld/elf.h"
35
#include	"../ld/macho.h"
Hector Chu's avatar
Hector Chu committed
36
#include	"../ld/pe.h"
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#include	<ar.h>

#ifndef	DEFAULT
#define	DEFAULT	'9'
#endif

char	*noname		= "<none>";
char	thechar		= '8';
char	*thestring 	= "386";

/*
 *	-H0 -T0x40004C -D0x10000000	is garbage unix
 *	-H1 -T0xd0 -R4			is unix coff
 *	-H2 -T4128 -R4096		is plan9 format
 *	-H3 -Tx -Rx			is MS-DOS .COM
 *	-H4 -Tx -Rx			is fake MS-DOS .EXE
Devon H. O'Dell's avatar
Devon H. O'Dell committed
53 54 55 56
 *	-H6 -Tx -Rx			is Apple Mach-O
 *	-H7 -Tx -Rx			is Linux ELF32
 *	-H8 -Tx -Rx			is Google Native Client
 *	-H9 -Tx -Rx			is FreeBSD ELF32
57 58
 */

Russ Cox's avatar
Russ Cox committed
59 60 61
void
usage(void)
{
Ian Lance Taylor's avatar
Ian Lance Taylor committed
62
	fprint(2, "usage: 8l [-options] [-E entry] [-H head] [-L dir] [-T text] [-R rnd] [-r path] [-o out] main.8\n");
Russ Cox's avatar
Russ Cox committed
63 64 65
	exits("usage");
}

66 67 68 69 70 71 72 73 74 75
void
main(int argc, char *argv[])
{
	int i, c;

	Binit(&bso, 1, OWRITE);
	cout = -1;
	listinit();
	memset(debug, 0, sizeof(debug));
	nerrors = 0;
Hector Chu's avatar
Hector Chu committed
76
	outfile = nil;
77 78 79 80 81
	HEADTYPE = -1;
	INITTEXT = -1;
	INITDAT = -1;
	INITRND = -1;
	INITENTRY = 0;
Rob Pike's avatar
Rob Pike committed
82

83 84 85
	ARGBEGIN {
	default:
		c = ARGC();
86 87 88
		if(c == 'l')
			usage();
 		if(c >= 0 && c < sizeof(debug))
89 90 91
			debug[c]++;
		break;
	case 'o': /* output to (next arg) */
Russ Cox's avatar
Russ Cox committed
92
		outfile = EARGF(usage());
93 94
		break;
	case 'E':
Russ Cox's avatar
Russ Cox committed
95
		INITENTRY = EARGF(usage());
96 97
		break;
	case 'H':
Russ Cox's avatar
Russ Cox committed
98 99 100
		HEADTYPE = atolwhex(EARGF(usage()));
		break;
	case 'L':
101
		Lflag(EARGF(usage()));
102 103
		break;
	case 'T':
Russ Cox's avatar
Russ Cox committed
104
		INITTEXT = atolwhex(EARGF(usage()));
105 106
		break;
	case 'D':
Russ Cox's avatar
Russ Cox committed
107
		INITDAT = atolwhex(EARGF(usage()));
108 109
		break;
	case 'R':
Russ Cox's avatar
Russ Cox committed
110 111
		INITRND = atolwhex(EARGF(usage()));
		break;
Ian Lance Taylor's avatar
Ian Lance Taylor committed
112 113
	case 'r':
		rpath = EARGF(usage());
114
		break;
115 116 117
	case 'V':
		print("%cl version %s\n", thechar, getgoversion());
		errorexit();
118
	} ARGEND
119 120

	if(argc != 1)
Russ Cox's avatar
Russ Cox committed
121
		usage();
122

Hector Chu's avatar
Hector Chu committed
123
	mywhatsys();	// get goos
Rob Pike's avatar
Rob Pike committed
124

125
	if(HEADTYPE == -1) {
126 127 128 129 130 131
		HEADTYPE = 2;
		if(strcmp(goos, "linux") == 0)
			HEADTYPE = 7;
		else
		if(strcmp(goos, "darwin") == 0)
			HEADTYPE = 6;
Russ Cox's avatar
Russ Cox committed
132 133 134
		else
		if(strcmp(goos, "nacl") == 0)
			HEADTYPE = 8;
135
		else
136
		if(strcmp(goos, "freebsd") == 0)
Devon H. O'Dell's avatar
Devon H. O'Dell committed
137
			HEADTYPE = 9;
138
		else
139
		if(strcmp(goos, "windows") == 0)
Hector Chu's avatar
Hector Chu committed
140
			HEADTYPE = 10;
141
		else
142
		if(strcmp(goos, "tiny") == 0)
143
			HEADTYPE = 11;
Hector Chu's avatar
Hector Chu committed
144 145 146 147 148 149 150 151 152
		else
			print("goos is not known: %s\n", goos);
	}

	if(outfile == nil) {
		if(HEADTYPE == 10)
			outfile = "8.out.exe";
		else
			outfile = "8.out";
153
	}
154

Hector Chu's avatar
Hector Chu committed
155
	libinit();
156 157
	if(rpath == nil)
		rpath = smprint("%s/pkg/%s_%s", goroot, goos, goarch);
Hector Chu's avatar
Hector Chu committed
158

159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
	switch(HEADTYPE) {
	default:
		diag("unknown -H option");
		errorexit();

	case 0:	/* this is garbage */
		HEADR = 20L+56L;
		if(INITTEXT == -1)
			INITTEXT = 0x40004CL;
		if(INITDAT == -1)
			INITDAT = 0x10000000L;
		if(INITRND == -1)
			INITRND = 0;
		break;
	case 1:	/* is unix coff */
		HEADR = 0xd0L;
		if(INITTEXT == -1)
			INITTEXT = 0xd0;
		if(INITDAT == -1)
			INITDAT = 0x400000;
		if(INITRND == -1)
			INITRND = 0;
		break;
	case 2:	/* plan 9 */
		HEADR = 32L;
		if(INITTEXT == -1)
			INITTEXT = 4096+32;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = 4096;
		break;
	case 3:	/* MS-DOS .COM */
		HEADR = 0;
		if(INITTEXT == -1)
			INITTEXT = 0x0100;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = 4;
		break;
	case 4:	/* fake MS-DOS .EXE */
		HEADR = 0x200;
		if(INITTEXT == -1)
			INITTEXT = 0x0100;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = 4;
		HEADR += (INITTEXT & 0xFFFF);
		if(debug['v'])
			Bprint(&bso, "HEADR = 0x%ld\n", HEADR);
		break;
212
	case 6:	/* apple MACH */
Russ Cox's avatar
Russ Cox committed
213 214 215 216 217
		/*
		 * OS X system constant - offset from %gs to our TLS.
		 * Explained in ../../libcgo/darwin_386.c.
		 */
		tlsoffset = 0x468;
218 219
		machoinit();
		HEADR = MACHORESERVE;
220 221 222 223 224 225 226 227
		if(INITTEXT == -1)
			INITTEXT = 4096+HEADR;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = 4096;
		break;
	case 7:	/* elf32 executable */
Devon H. O'Dell's avatar
Devon H. O'Dell committed
228
	case 9:
Russ Cox's avatar
Russ Cox committed
229 230 231 232 233 234
		/*
		 * Linux ELF uses TLS offsets negative from %gs.
		 * Translate 0(GS) and 4(GS) into -8(GS) and -4(GS).
		 * Also known to ../../pkg/runtime/linux/386/sys.s
		 * and ../../libcgo/linux_386.c.
		 */
235
		tlsoffset = -8;
Russ Cox's avatar
Russ Cox committed
236 237
		elfinit();
		HEADR = ELFRESERVE;
238 239 240 241 242 243 244
		if(INITTEXT == -1)
			INITTEXT = 0x08048000+HEADR;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = 4096;
		break;
Russ Cox's avatar
Russ Cox committed
245
	case 8:	/* native client elf32 executable */
Russ Cox's avatar
Russ Cox committed
246
		elfinit();
Russ Cox's avatar
Russ Cox committed
247 248 249 250 251 252
		HEADR = 4096;
		if(INITTEXT == -1)
			INITTEXT = 0x20000;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
253 254 255 256 257 258
			INITRND = 65536;
		
		// 512 kB of address space for closures.
		// (Doesn't take any space in the binary file.)
		// Closures are 64 bytes each, so this is 8,192 closures.
		textpad = 512*1024;
Russ Cox's avatar
Russ Cox committed
259
		break;
Hector Chu's avatar
Hector Chu committed
260 261 262 263 264 265 266 267 268 269
	case 10: /* PE executable */
		peinit();
		HEADR = PERESERVE;
		if(INITTEXT == -1)
			INITTEXT = PEBASE+0x1000;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = PEALIGN;
		break;
270 271 272 273 274 275 276 277 278 279 280
	case 11:
		tlsoffset = 0;
		elfinit();
		HEADR = ELFRESERVE;
		if(INITTEXT == -1)
			INITTEXT = 0x100000+HEADR;
		if(INITDAT == -1)
			INITDAT = 0;
		if(INITRND == -1)
			INITRND = 4096;
		break;
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	}
	if(INITDAT != 0 && INITRND != 0)
		print("warning: -D0x%lux is ignored because of -R0x%lux\n",
			INITDAT, INITRND);
	if(debug['v'])
		Bprint(&bso, "HEADER = -H0x%ld -T0x%lux -D0x%lux -R0x%lux\n",
			HEADTYPE, INITTEXT, INITDAT, INITRND);
	Bflush(&bso);
	for(i=1; optab[i].as; i++)
		if(i != optab[i].as) {
			diag("phase error in optab: %d", i);
			errorexit();
		}
	maxop = i;

	for(i=0; i<Ymax; i++)
		ycover[i*Ymax + i] = 1;

	ycover[Yi0*Ymax + Yi8] = 1;
	ycover[Yi1*Ymax + Yi8] = 1;

	ycover[Yi0*Ymax + Yi32] = 1;
	ycover[Yi1*Ymax + Yi32] = 1;
	ycover[Yi8*Ymax + Yi32] = 1;

	ycover[Yal*Ymax + Yrb] = 1;
	ycover[Ycl*Ymax + Yrb] = 1;
	ycover[Yax*Ymax + Yrb] = 1;
	ycover[Ycx*Ymax + Yrb] = 1;
	ycover[Yrx*Ymax + Yrb] = 1;

	ycover[Yax*Ymax + Yrx] = 1;
	ycover[Ycx*Ymax + Yrx] = 1;

	ycover[Yax*Ymax + Yrl] = 1;
	ycover[Ycx*Ymax + Yrl] = 1;
	ycover[Yrx*Ymax + Yrl] = 1;

	ycover[Yf0*Ymax + Yrf] = 1;

	ycover[Yal*Ymax + Ymb] = 1;
	ycover[Ycl*Ymax + Ymb] = 1;
	ycover[Yax*Ymax + Ymb] = 1;
	ycover[Ycx*Ymax + Ymb] = 1;
	ycover[Yrx*Ymax + Ymb] = 1;
	ycover[Yrb*Ymax + Ymb] = 1;
	ycover[Ym*Ymax + Ymb] = 1;

	ycover[Yax*Ymax + Yml] = 1;
	ycover[Ycx*Ymax + Yml] = 1;
	ycover[Yrx*Ymax + Yml] = 1;
	ycover[Yrl*Ymax + Yml] = 1;
	ycover[Ym*Ymax + Yml] = 1;

	for(i=0; i<D_NONE; i++) {
		reg[i] = -1;
		if(i >= D_AL && i <= D_BH)
			reg[i] = (i-D_AL) & 7;
		if(i >= D_AX && i <= D_DI)
			reg[i] = (i-D_AX) & 7;
		if(i >= D_F0 && i <= D_F0+7)
			reg[i] = (i-D_F0) & 7;
	}

	zprg.link = P;
	zprg.pcond = P;
	zprg.back = 2;
	zprg.as = AGOK;
	zprg.from.type = D_NONE;
	zprg.from.index = D_NONE;
	zprg.from.scale = 1;
	zprg.to = zprg.from;

	pcstr = "%.6lux ";
	nuxiinit();
	histgen = 0;
	textp = P;
	datap = P;
	edatap = P;
	pc = 0;
	dtype = 4;
	version = 0;
	cbp = buf.cbuf;
	cbc = sizeof(buf.cbuf);
	firstp = prg();
	lastp = firstp;

368
	addlibpath("command line", "command line", argv[0], "main");
369
	loadlib();
370

Russ Cox's avatar
Russ Cox committed
371 372
	deadcode();

373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
	firstp = firstp->link;
	if(firstp == P)
		errorexit();
	if(doexp || dlm){
		EXPTAB = "_exporttab";
		zerosig(EXPTAB);
		zerosig("etext");
		zerosig("edata");
		zerosig("end");
		if(dlm){
			import();
			HEADTYPE = 2;
			INITTEXT = INITDAT = 0;
			INITRND = 8;
			INITENTRY = EXPTAB;
		}
		export();
	}
	patch();
	follow();
Russ Cox's avatar
Russ Cox committed
393
	doelf();
Russ Cox's avatar
Russ Cox committed
394 395
	if(HEADTYPE == 6)
		domacho();
396 397 398 399 400 401 402 403 404
	dodata();
	dostkoff();
	if(debug['p'])
		if(debug['1'])
			doprof1();
		else
			doprof2();
	span();
	doinit();
Hector Chu's avatar
Hector Chu committed
405 406
	if(HEADTYPE == 10)
		dope();
407 408 409 410 411 412 413 414 415 416 417 418 419
	asmb();
	undef();
	if(debug['v']) {
		Bprint(&bso, "%5.2f cpu time\n", cputime());
		Bprint(&bso, "%ld symbols\n", nsymbol);
		Bprint(&bso, "%d sizeof adr\n", sizeof(Adr));
		Bprint(&bso, "%d sizeof prog\n", sizeof(Prog));
	}
	Bflush(&bso);

	errorexit();
}

Russ Cox's avatar
Russ Cox committed
420 421 422 423 424 425 426 427 428 429 430
Sym*
zsym(char *pn, Biobuf *f, Sym *h[])
{	
	int o;
	
	o = Bgetc(f);
	if(o < 0 || o >= NSYM || h[o] == nil)
		mangle(pn);
	return h[o];
}

431
void
432
zaddr(char *pn, Biobuf *f, Adr *a, Sym *h[])
433
{
434
	int o, t;
435
	int32 l;
436 437 438
	Sym *s;
	Auto *u;

439
	t = Bgetc(f);
Ken Thompson's avatar
Ken Thompson committed
440 441
	a->index = D_NONE;
	a->scale = 0;
442
	if(t & T_INDEX) {
443 444
		a->index = Bgetc(f);
		a->scale = Bgetc(f);
445
	}
446
	a->type = D_NONE;
447
	a->offset = 0;
448 449 450 451 452 453
	if(t & T_OFFSET)
		a->offset = Bget4(f);
	a->offset2 = 0;
	if(t & T_OFFSET2) {
		a->offset2 = Bget4(f);
		a->type = D_CONST2;
454 455
	}
	a->sym = S;
Russ Cox's avatar
Russ Cox committed
456 457
	if(t & T_SYM)
		a->sym = zsym(pn, f, h);
458
	if(t & T_FCONST) {
459 460
		a->ieee.l = Bget4(f);
		a->ieee.h = Bget4(f);
461 462 463
		a->type = D_FCONST;
	} else
	if(t & T_SCONST) {
464
		Bread(f, a->scon, NSNAME);
465 466
		a->type = D_SCONST;
	}
467 468
	if(t & T_TYPE)
		a->type = Bgetc(f);
Ken Thompson's avatar
Ken Thompson committed
469
	adrgotype = S;
Russ Cox's avatar
Russ Cox committed
470
	if(t & T_GOTYPE)
Russ Cox's avatar
Russ Cox committed
471
		adrgotype = zsym(pn, f, h);
Russ Cox's avatar
Russ Cox committed
472 473 474 475 476

	t = a->type;
	if(t == D_INDIR+D_GS)
		a->offset += tlsoffset;

477 478
	s = a->sym;
	if(s == S)
479
		return;
Russ Cox's avatar
Russ Cox committed
480
	if(t != D_AUTO && t != D_PARAM) {
Ken Thompson's avatar
Ken Thompson committed
481 482
		if(adrgotype)
			s->gotype = adrgotype;
483
		return;
Russ Cox's avatar
Russ Cox committed
484
	}
485 486 487 488 489 490
	l = a->offset;
	for(u=curauto; u; u=u->link) {
		if(u->asym == s)
		if(u->type == t) {
			if(u->aoffset > l)
				u->aoffset = l;
Ken Thompson's avatar
Ken Thompson committed
491 492
			if(adrgotype)
				u->gotype = adrgotype;
493
			return;
494 495 496
		}
	}

497
	u = mal(sizeof(*u));
498 499 500 501 502
	u->link = curauto;
	curauto = u;
	u->asym = s;
	u->aoffset = l;
	u->type = t;
Ken Thompson's avatar
Ken Thompson committed
503
	u->gotype = adrgotype;
504 505 506 507 508 509 510 511 512 513 514
}

void
nopout(Prog *p)
{
	p->as = ANOP;
	p->from.type = D_NONE;
	p->to.type = D_NONE;
}

void
515
ldobj1(Biobuf *f, char *pkg, int64 len, char *pn)
516
{
517
	int32 ipc;
518 519 520
	Prog *p, *t;
	int v, o, r, skip;
	Sym *h[NSYM], *s, *di;
521
	uint32 sig;
522
	int ntext;
523
	int32 eof;
524
	char *name, *x;
525 526 527
	char src[1024];

	ntext = 0;
528
	eof = Boffset(f) + len;
529
	di = S;
530
	src[0] = 0;
531

532

533 534 535 536 537 538 539 540
newloop:
	memset(h, 0, sizeof(h));
	version++;
	histfrogp = 0;
	ipc = pc;
	skip = 0;

loop:
541
	if(f->state == Bracteof || Boffset(f) >= eof)
542
		goto eof;
543 544 545 546
	o = Bgetc(f);
	if(o == Beof)
		goto eof;
	o |= Bgetc(f) << 8;
547 548 549
	if(o <= AXXX || o >= ALAST) {
		if(o < 0)
			goto eof;
550 551
		diag("%s:#%lld: opcode out of range: %#ux", pn, Boffset(f), o);
		print("	probably not a .%c file\n", thechar);
552 553 554 555 556
		errorexit();
	}

	if(o == ANAME || o == ASIGNAME) {
		sig = 0;
557 558 559 560 561 562 563 564 565 566
		if(o == ASIGNAME)
			sig = Bget4(f);
		v = Bgetc(f);	/* type */
		o = Bgetc(f);	/* sym */
		r = 0;
		if(v == D_STATIC)
			r = version;
		name = Brdline(f, '\0');
		if(name == nil) {
			if(Blinelen(f) > 0) {
567 568 569
				fprint(2, "%s: name too long\n", pn);
				errorexit();
			}
570
			goto eof;
571
		}
572 573 574 575 576
		x = expandpkg(name, pkg);
		s = lookup(x, r);
		if(x != name)
			free(x);
		name = nil;
577 578 579 580 581

		if(debug['S'] && r == 0)
			sig = 1729;
		if(sig != 0){
			if(s->sig != 0 && s->sig != sig)
582 583
				diag("incompatible type signatures"
					"%lux(%s) and %lux(%s) for %s",
584
					s->sig, s->file, sig, pn, s->name);
585
			s->sig = sig;
586
			s->file = pn;
587 588 589 590
		}

		if(debug['W'])
			print("	ANAME	%s\n", s->name);
Russ Cox's avatar
Russ Cox committed
591 592
		if(o < 0 || o >= nelem(h))
			mangle(pn);
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
		h[o] = s;
		if((v == D_EXTERN || v == D_STATIC) && s->type == 0)
			s->type = SXREF;
		if(v == D_FILE) {
			if(s->type != SFILE) {
				histgen++;
				s->type = SFILE;
				s->value = histgen;
			}
			if(histfrogp < MAXHIST) {
				histfrog[histfrogp] = s;
				histfrogp++;
			} else
				collapsefrog(s);
		}
		goto loop;
	}

611
	p = mal(sizeof(*p));
612
	p->as = o;
613
	p->line = Bget4(f);
614
	p->back = 2;
Ken Thompson's avatar
Ken Thompson committed
615 616
	p->ft = 0;
	p->tt = 0;
617
	zaddr(pn, f, &p->from, h);
Ken Thompson's avatar
Ken Thompson committed
618
	fromgotype = adrgotype;
619
	zaddr(pn, f, &p->to, h);
620 621 622 623 624 625 626

	if(debug['W'])
		print("%P\n", p);

	switch(p->as) {
	case AHISTORY:
		if(p->to.offset == -1) {
627
			addlib(src, pn);
628 629 630
			histfrogp = 0;
			goto loop;
		}
631 632
		if(src[0] == '\0')
			copyhistfrog(src, sizeof src);
633 634 635 636 637 638 639 640 641 642 643 644
		addhist(p->line, D_FILE);		/* 'z' */
		if(p->to.offset)
			addhist(p->to.offset, D_FILE1);	/* 'Z' */
		histfrogp = 0;
		goto loop;

	case AEND:
		histtoauto();
		if(curtext != P)
			curtext->to.autom = curauto;
		curauto = 0;
		curtext = P;
645 646 647
		if(Boffset(f) == eof)
			return;
		goto newloop;
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662

	case AGLOBL:
		s = p->from.sym;
		if(s->type == 0 || s->type == SXREF) {
			s->type = SBSS;
			s->value = 0;
		}
		if(s->type != SBSS) {
			diag("%s: redefinition: %s in %s",
				pn, s->name, TNAME);
			s->type = SBSS;
			s->value = 0;
		}
		if(p->to.offset > s->value)
			s->value = p->to.offset;
Russ Cox's avatar
Russ Cox committed
663 664
		if(p->from.scale & DUPOK)
			s->dupok = 1;
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
		goto loop;

	case ADYNT:
		if(p->to.sym == S) {
			diag("DYNT without a sym\n%P", p);
			break;
		}
		di = p->to.sym;
		p->from.scale = 4;
		if(di->type == SXREF) {
			if(debug['z'])
				Bprint(&bso, "%P set to %d\n", p, dtype);
			di->type = SCONST;
			di->value = dtype;
			dtype += 4;
		}
		if(p->from.sym == S)
			break;

		p->from.offset = di->value;
		p->from.sym->type = SDATA;
		if(curtext == P) {
			diag("DYNT not in text: %P", p);
			break;
		}
		p->to.sym = curtext->from.sym;
		p->to.type = D_ADDR;
		p->to.index = D_EXTERN;
		goto data;

	case AINIT:
		if(p->from.sym == S) {
			diag("INIT without a sym\n%P", p);
			break;
		}
		if(di == S) {
			diag("INIT without previous DYNT\n%P", p);
			break;
		}
		p->from.offset = di->value;
		p->from.sym->type = SDATA;
		goto data;

	case ADATA:
	data:
Russ Cox's avatar
Russ Cox committed
710 711 712 713 714 715
		// Assume that AGLOBL comes after ADATA.
		// If we've seen an AGLOBL that said this sym was DUPOK,
		// ignore any more ADATA we see, which must be
		// redefinitions.
		s = p->from.sym;
		if(s != S && s->dupok) {
Ken Thompson's avatar
Ken Thompson committed
716 717
//			if(debug['v'])
//				Bprint(&bso, "skipping %s in %s: dupok\n", s->name, pn);
Russ Cox's avatar
Russ Cox committed
718 719 720 721 722
			goto loop;
		}
		if(s != S) {
			p->dlink = s->data;
			s->data = p;
723 724 725 726 727 728
			if(s->file == nil)
				s->file = pn;
			else if(s->file != pn) {
				diag("multiple initialization for %s: in both %s and %s", s->name, s->file, pn);
				errorexit();
			}			
Russ Cox's avatar
Russ Cox committed
729
		}
730 731 732 733 734 735 736 737 738 739 740 741 742 743
		if(edatap == P)
			datap = p;
		else
			edatap->link = p;
		edatap = p;
		p->link = P;
		goto loop;

	case AGOK:
		diag("%s: GOK opcode in %s", pn, TNAME);
		pc++;
		goto loop;

	case ATEXT:
744 745 746 747 748 749 750 751 752 753 754
		s = p->from.sym;
		if(s == S) {
			diag("%s: no TEXT symbol: %P", pn, p);
			errorexit();
		}
		if(ntext++ == 0 && s->type != 0 && s->type != SXREF) {
			/* redefinition, so file has probably been seen before */
			if(debug['v'])
				diag("skipping: %s: redefinition: %s", pn, s->name);
			return;
		}
755 756 757 758 759 760 761 762 763 764 765 766 767 768
		if(curtext != P) {
			histtoauto();
			curtext->to.autom = curauto;
			curauto = 0;
		}
		skip = 0;
		curtext = p;
		if(s->type != 0 && s->type != SXREF) {
			if(p->from.scale & DUPOK) {
				skip = 1;
				goto casdef;
			}
			diag("%s: redefinition: %s\n%P", pn, s->name, p);
		}
Russ Cox's avatar
Russ Cox committed
769
		newtext(p, s);
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
		goto loop;

	case AFMOVF:
	case AFADDF:
	case AFSUBF:
	case AFSUBRF:
	case AFMULF:
	case AFDIVF:
	case AFDIVRF:
	case AFCOMF:
	case AFCOMFP:
		if(skip)
			goto casdef;
		if(p->from.type == D_FCONST) {
			/* size sb 9 max */
			sprint(literal, "$%lux", ieeedtof(&p->from.ieee));
			s = lookup(literal, 0);
			if(s->type == 0) {
				s->type = SBSS;
				s->value = 4;
				t = prg();
				t->as = ADATA;
				t->line = p->line;
				t->from.type = D_EXTERN;
				t->from.sym = s;
				t->from.scale = 4;
				t->to = p->from;
				if(edatap == P)
					datap = t;
				else
					edatap->link = t;
				edatap = t;
				t->link = P;
			}
			p->from.type = D_EXTERN;
			p->from.sym = s;
			p->from.offset = 0;
		}
		goto casdef;

	case AFMOVD:
	case AFADDD:
	case AFSUBD:
	case AFSUBRD:
	case AFMULD:
	case AFDIVD:
	case AFDIVRD:
	case AFCOMD:
	case AFCOMDP:
		if(skip)
			goto casdef;
		if(p->from.type == D_FCONST) {
			/* size sb 18 max */
			sprint(literal, "$%lux.%lux",
				p->from.ieee.l, p->from.ieee.h);
			s = lookup(literal, 0);
			if(s->type == 0) {
				s->type = SBSS;
				s->value = 8;
				t = prg();
				t->as = ADATA;
				t->line = p->line;
				t->from.type = D_EXTERN;
				t->from.sym = s;
				t->from.scale = 8;
				t->to = p->from;
				if(edatap == P)
					datap = t;
				else
					edatap->link = t;
				edatap = t;
				t->link = P;
			}
			p->from.type = D_EXTERN;
			p->from.sym = s;
			p->from.offset = 0;
		}
		goto casdef;

	casdef:
	default:
		if(skip)
			nopout(p);

		if(p->to.type == D_BRANCH)
			p->to.offset += ipc;
		lastp->link = p;
		lastp = p;
		p->pc = pc;
		pc++;
		goto loop;
	}
	goto loop;

eof:
	diag("truncated object file: %s", pn);
}

Prog*
prg(void)
{
	Prog *p;

873
	p = mal(sizeof(Prog));
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903
	*p = zprg;
	return p;
}

Prog*
copyp(Prog *q)
{
	Prog *p;

	p = prg();
	*p = *q;
	return p;
}

Prog*
appendp(Prog *q)
{
	Prog *p;

	p = prg();
	p->link = q->link;
	q->link = p;
	p->line = q->line;
	return p;
}

void
doprof1(void)
{
	Sym *s;
904
	int32 n;
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
	Prog *p, *q;

	if(debug['v'])
		Bprint(&bso, "%5.2f profile 1\n", cputime());
	Bflush(&bso);
	s = lookup("__mcount", 0);
	n = 1;
	for(p = firstp->link; p != P; p = p->link) {
		if(p->as == ATEXT) {
			q = prg();
			q->line = p->line;
			q->link = datap;
			datap = q;
			q->as = ADATA;
			q->from.type = D_EXTERN;
			q->from.offset = n*4;
			q->from.sym = s;
			q->from.scale = 4;
			q->to = p->from;
			q->to.type = D_CONST;

			q = prg();
			q->line = p->line;
			q->pc = p->pc;
			q->link = p->link;
			p->link = q;
			p = q;
			p->as = AADDL;
			p->from.type = D_CONST;
			p->from.offset = 1;
			p->to.type = D_EXTERN;
			p->to.sym = s;
			p->to.offset = n*4 + 4;

			n += 2;
			continue;
		}
	}
	q = prg();
	q->line = 0;
	q->link = datap;
	datap = q;

	q->as = ADATA;
	q->from.type = D_EXTERN;
	q->from.sym = s;
	q->from.scale = 4;
	q->to.type = D_CONST;
	q->to.offset = n;

	s->type = SBSS;
	s->value = n*4;
}

void
doprof2(void)
{
	Sym *s2, *s4;
	Prog *p, *q, *ps2, *ps4;

	if(debug['v'])
		Bprint(&bso, "%5.2f profile 2\n", cputime());
	Bflush(&bso);

	s2 = lookup("_profin", 0);
	s4 = lookup("_profout", 0);
	if(s2->type != STEXT || s4->type != STEXT) {
		diag("_profin/_profout not defined");
		return;
	}

	ps2 = P;
	ps4 = P;
	for(p = firstp; p != P; p = p->link) {
		if(p->as == ATEXT) {
			if(p->from.sym == s2) {
				p->from.scale = 1;
				ps2 = p;
			}
			if(p->from.sym == s4) {
				p->from.scale = 1;
				ps4 = p;
			}
		}
	}
	for(p = firstp; p != P; p = p->link) {
		if(p->as == ATEXT) {
			curtext = p;

			if(p->from.scale & NOPROF) {	/* dont profile */
				for(;;) {
					q = p->link;
					if(q == P)
						break;
					if(q->as == ATEXT)
						break;
					p = q;
				}
				continue;
			}

			/*
			 * JMPL	profin
			 */
			q = prg();
			q->line = p->line;
			q->pc = p->pc;
			q->link = p->link;
			p->link = q;
			p = q;
			p->as = ACALL;
			p->to.type = D_BRANCH;
			p->pcond = ps2;
			p->to.sym = s2;

			continue;
		}
		if(p->as == ARET) {
			/*
			 * RET
			 */
			q = prg();
			q->as = ARET;
			q->from = p->from;
			q->to = p->to;
			q->link = p->link;
			p->link = q;

			/*
			 * JAL	profout
			 */
			p->as = ACALL;
			p->from = zprg.from;
			p->to = zprg.to;
			p->to.type = D_BRANCH;
			p->pcond = ps4;
			p->to.sym = s4;

			p = q;

			continue;
		}
	}
}