ack/mach/vax4/ce/output.c

283 lines
6.5 KiB
C
Raw Normal View History

1988-09-15 09:49:22 +00:00
#include <system.h>
#include <em.h>
#include <out.h>
#include "mach.h"
#include "back.h"
#include "data.h"
/* Unportable code. Written for VAX, meant to be run on a VAX.
*/
#ifndef vax
Read above comment ...
#endif
1988-09-15 09:49:22 +00:00
extern File *out_file;
1988-09-15 09:49:22 +00:00
#include <a.out.h>
#include <alloc.h>
1988-09-15 09:49:22 +00:00
static struct exec u_header;
1988-09-15 09:49:22 +00:00
long ntext, ndata, nrelo, nchar, base_address();
static int trsize=0, drsize=0;
static struct relocation_info *u_reloc;
static reduce_name_table();
1988-09-15 09:49:22 +00:00
output()
{
register int i;
register struct nlist *u_name;
1988-09-15 09:49:22 +00:00
/*
* Convert relocation data structures. This also requires
* some re-ordering, as SUN .o format needs has text relocation
* structures in front of the data relocation structures, whereas in
* ACK they can be in any order.
*/
nrelo = relo - reloc_info;
u_reloc = (struct relocation_info *)
Malloc((unsigned)nrelo*sizeof(struct relocation_info));
1988-09-15 09:49:22 +00:00
for (i = 0; i < nrelo; i++) {
if ( ( reloc_info[i].or_sect-S_MIN) == SEGTXT &&
convert_reloc( &reloc_info[i], u_reloc)) {
trsize++;
u_reloc++;
1988-09-15 09:49:22 +00:00
}
}
for (i = 0; i < nrelo; i++) {
if ( ( reloc_info[i].or_sect-S_MIN) != SEGTXT &&
convert_reloc( &reloc_info[i], u_reloc)) {
u_reloc++;
drsize++;
1988-09-15 09:49:22 +00:00
}
}
nrelo = trsize + drsize;
u_reloc -= nrelo;
reduce_name_table();
init_unixheader();
putbuf( (char *) &u_header, sizeof(struct exec));
putbuf( (char *) text_area, ntext);
putbuf( (char *) data_area, ndata);
putbuf((char *) u_reloc, sizeof(struct relocation_info)*nrelo);
free(u_reloc);
u_name = (struct nlist *)
Malloc((unsigned)nname * sizeof(struct nlist));
1988-09-15 09:49:22 +00:00
for (i = 0; i < nname ; i++) { /* The segment names can be omitted */
convert_name( &symbol_table[i], u_name++);
1988-09-15 09:49:22 +00:00
}
u_name -= nname;
putbuf((char *) u_name, sizeof(struct nlist)*nname);
free(u_name);
1988-09-15 09:49:22 +00:00
/* print( "size string_area %d\n", nchar); */
put_stringtablesize( nchar + 4);
putbuf((char *) string_area, nchar);
}
static
reduce_name_table()
1988-09-15 09:49:22 +00:00
{
/*
* Reduce the name table size. This is done by first marking
* the name-table entries that are needed for relocation, then
* removing the entries that are compiler-generated and not
* needed for relocation, while remembering how many entries were
* removed at each point, and then updating the relocation info.
* After that, the string table is reduced.
*/
#define S_NEEDED 0x8000
#define removable(nm) (!(nm.on_type & S_NEEDED) && *(nm.on_foff+string_area) == GENLAB)
register int *diff_index =
(int *) Malloc((unsigned)(nname + 1) * sizeof(int));
1988-09-15 09:49:22 +00:00
register int i;
char *new_str;
register char *p, *q;
1988-09-15 09:49:22 +00:00
*diff_index++ = 0;
for (i = 0; i < nrelo; i++) {
if (u_reloc[i].r_extern) {
symbol_table[u_reloc[i].r_symbolnum].on_type |= S_NEEDED;
}
}
for (i = 0; i < nname; i++) {
int old_diff_index = diff_index[i-1];
if (removable(symbol_table[i])) {
diff_index[i] = old_diff_index + 1;
}
else {
diff_index[i] = old_diff_index;
if (old_diff_index) {
symbol_table[i - old_diff_index] = symbol_table[i];
}
}
}
nname -= diff_index[nname - 1];
for (i = 0; i < nrelo; i++) {
register struct relocation_info *rp = &u_reloc[i];
if (rp->r_extern) {
rp->r_symbolnum -= diff_index[rp->r_symbolnum];
}
}
1988-09-15 09:49:22 +00:00
free((char *)(diff_index-1));
new_str = q = Malloc((unsigned)(string - string_area));
for (i = 0; i < nname; i++) {
p = symbol_table[i].on_foff + string_area;
symbol_table[i].on_foff = q - new_str;
while (*q++ = *p) p++;
}
free(string_area);
string_area = new_str;
string = q;
}
init_unixheader()
{
1988-09-15 09:49:22 +00:00
ntext = text - text_area;
ndata = data - data_area;
nchar = string - string_area;
u_header.a_magic = OMAGIC;
u_header.a_text = ntext;
u_header.a_data = ndata;
u_header.a_bss = nbss;
u_header.a_syms = nname * sizeof(struct nlist);
1988-09-15 09:49:22 +00:00
u_header.a_entry = 0;
u_header.a_trsize = trsize * sizeof(struct relocation_info);
u_header.a_drsize = drsize * sizeof(struct relocation_info);
1988-09-15 09:49:22 +00:00
/* print( "header %o %d %d %d %d %d %d %d\n",
u_header.a_magic, u_header.a_text, u_header.a_data,
u_header.a_bss, u_header.a_syms, u_header.a_entry,
u_header.a_trsize, u_header.a_drsize);
*/
}
convert_reloc( a_relo, u_relo)
struct outrelo *a_relo;
struct relocation_info *u_relo;
{
int retval = 1;
1988-09-15 09:49:22 +00:00
u_relo->r_address = a_relo->or_addr;
u_relo->r_symbolnum = a_relo->or_nami;
u_relo->r_pcrel = (a_relo->or_type & RELPC) >> 3;
u_relo->r_length = 2;
if ( symbol_table[ a_relo->or_nami].on_valu == -1 ||
(symbol_table[ a_relo->or_nami].on_type & S_COM))
1988-09-15 09:49:22 +00:00
u_relo->r_extern = 1;
else
u_relo->r_extern = 0;
if ( u_relo->r_extern == 0) {
1988-09-15 09:49:22 +00:00
switch ( (symbol_table[ a_relo->or_nami].on_type & S_TYP) - S_MIN) {
case SEGTXT : u_relo->r_symbolnum = N_TEXT;
if (u_relo->r_pcrel &&
(a_relo->or_sect-S_MIN == SEGTXT))
retval = 0;
1988-09-15 09:49:22 +00:00
break;
case SEGCON : u_relo->r_symbolnum = N_DATA;
break;
case SEGBSS : u_relo->r_symbolnum = N_BSS;
break;
default : fprint( STDERR,
"convert_relo(): bad segment %d\n",
(symbol_table[ a_relo->or_nami].on_type & S_TYP) - S_MIN);
}
}
return retval;
1988-09-15 09:49:22 +00:00
}
#define n_mptr n_un.n_name
#define n_str n_un.n_strx
convert_name( a_name, u_name)
struct outname *a_name;
struct nlist *u_name;
{
/* print( "naam is %s\n", a_name->on_foff + string_area); */
u_name->n_str = a_name->on_foff + 4;
fill_type( &(u_name->n_type), &(a_name->on_type), a_name->on_valu);
u_name->n_other = '\0';
u_name->n_desc = 0;
if (a_name->on_type & S_COM)
u_name->n_value = a_name->on_valu;
else if ( a_name->on_valu != -1)
1988-09-15 09:49:22 +00:00
u_name->n_value = a_name->on_valu +
base_address( ( a_name->on_type & S_TYP) - S_MIN);
else
u_name->n_value = 0;
}
fill_type( u_type, a_type, valu)
unsigned char *u_type;
ushort *a_type;
long valu;
{
int sect;
*u_type = ((*a_type&S_TYP) == S_UND || (*a_type & S_EXT)) ? N_EXT : 0;
1988-09-15 09:49:22 +00:00
if ( valu != -1 && (! (*a_type & S_COM))) {
1988-09-15 09:49:22 +00:00
sect = ( *a_type & S_TYP ) - S_MIN;
switch ( sect) {
case SEGTXT: *u_type |= N_TEXT;
break;
case SEGCON : *u_type |= N_DATA;
break;
case SEGBSS : *u_type |= N_BSS;
break;
default: fprint(STDERR,
"fill_type() : bad section %d\n", sect);
}
}
}
long base_address( seg)
int seg;
{
switch ( seg) {
case SEGTXT : return( 0);
break;
case SEGCON : return( text - text_area);
break;
case SEGBSS : return( text - text_area + data - data_area);
break;
default : fprint( STDERR,
"base_adres() : bad section %d\n", seg);
}
}
put_stringtablesize( n)
long n;
1988-09-15 09:49:22 +00:00
{
putbuf( (char *)&n, 4L);
1988-09-15 09:49:22 +00:00
}
putbuf(buf,n)
char *buf;
long n;
{
sys_write( out_file, buf, n);
}