X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=blobdiff_plain;f=rln.c;h=2fa5be420c93d4369b77c89ae9f561f0b83b62ee;hp=05760020e4b5a7a69e66d54d13069ae185de261c;hb=f60139df3c5542d83c5938568ccf207f99e6c8bd;hpb=d35d0e7e982f30c5a7352c3276f9a587ace8389d diff --git a/rln.c b/rln.c index 0576002..2fa5be4 100644 --- a/rln.c +++ b/rln.c @@ -1,84 +1,89 @@ // // RLN - Reboot's Linker for the Atari Jaguar Console System // RLN.C - Application Code -// Copyright (C) 199x, Allan K. Pratt, 2011 Reboot & Friends +// Copyright (C) 199x, Allan K. Pratt, 2014 Reboot & Friends // #include "rln.h" -unsigned errflag = 0; // Error flag, goes TRUE on error -unsigned waitflag = 0; // Wait for any keypress flag -unsigned versflag = 0; // Version banner has been shown flag -unsigned aflag = 0; // Absolute linking flag -unsigned bflag = 0; // Don't remove mulitply def locals flag -unsigned cflag = 0; // COF executable -unsigned dflag = 0; // Wait for key after link flag -unsigned gflag = 0; // Source level debug include flag -unsigned lflag = 0; // Add local symbols to output flag -unsigned mflag = 0; // Produce symbol load map flag -unsigned oflag = 0; // Output filename specified -unsigned rflag = 0; // Segment alignment size flag -unsigned sflag = 0; // Output only global symbols -unsigned vflag = 0; // Verbose flag -unsigned zflag = 0; // Suppress banner flag -unsigned pflag, uflag, wflag = 1; // Unimplemented flags -unsigned hd = 0; // Index of next file handle to fill -unsigned secalign = 7; // Section Alignment (8=phrase) -unsigned tbase = 0; // TEXT base address -unsigned dbase = 0; // DATA base address -unsigned bbase = 0; // BSS base address -unsigned textoffset = 0; // COF TEXT segment offset -unsigned dataoffset = 0; // COF DATA segment offset -unsigned bssoffset = 0; // COF BSS segment offset -unsigned displaybanner = 1; // Display version banner -unsigned symoffset = 0; // Symbol table offset in output file -unsigned dosymi = 0; // Dosym() processing iterator -unsigned dbgsymbase = 0; // Debug symbol base address -//unsigned symtrunc = 0; // Symbol truncation -i and -ii -int noheaderflag = 0; // No header flag for ABS files -int hflags; // Value of the arg to -h option -int ttype, dtype, btype; // Type flag: 0, -1, -2, -3, -4 -int tval, dval, bval; // Values of these abs bases -int hflag[NHANDLES]; // True for include files -int handle[NHANDLES]; // Open file handles -int textsize, datasize, bsssize; // Cumulative segment sizes -char libdir[FARGSIZE * 3]; // Library directory to search -char ofile[FARGSIZE]; // Output file name (.o) -char * name[NHANDLES]; // Associated file names -char * cmdlnexec = NULL; // Executable name - pointer to ARGV[0] -char * hsym1[SYMLEN]; // First symbol for include files -char * hsym2[SYMLEN]; // Second symbol for include files -struct OFILE * plist = NULL; // Object image list pointer -struct OFILE * plast; // Last object image list pointer -struct OFILE * olist = NULL; // Pointer to first object file in list -struct OFILE * olast; // Pointer to last object file in list -char obj_fname[512][FNLEN]; // Object file names -unsigned obj_segsize[512][3]; // Object file seg sizes; TEXT,DATA,BSS -unsigned obj_index = 0; // Object file index/count -struct HREC * htable[NBUCKETS]; // Hash table -struct HREC * unresolved = NULL; // Pointer to unresolved hash list -struct HREC * lookup(char *); // Hash lookup -char * ost; // Output symbol table -char * ost_ptr; // Output symbol table; current pointer -char * ost_end; // Output symbol table; end pointer -char * oststr; // Output string table -char * oststr_ptr; // Output string table; current pointer -char * oststr_end; // Output string table; end pointer -int ost_index = 0; // Index of next ost addition -int endian; // Processor endianess +unsigned errflag = 0; // Error flag, goes TRUE on error +unsigned waitflag = 0; // Wait for any keypress flag +unsigned versflag = 0; // Version banner has been shown flag +unsigned aflag = 0; // Absolute linking flag +unsigned bflag = 0; // Don't remove mulitply def locals flag +unsigned cflag = 0; // COF executable +unsigned dflag = 0; // Wait for key after link flag +unsigned gflag = 0; // Source level debug include flag +unsigned lflag = 0; // Add local symbols to output flag +unsigned mflag = 0; // Produce symbol load map flag +unsigned oflag = 0; // Output filename specified +unsigned rflag = 0; // Segment alignment size flag +unsigned sflag = 0; // Output only global symbols +unsigned vflag = 0; // Verbose flag +unsigned wflag = 0; // Show warnings flag +unsigned zflag = 0; // Suppress banner flag +unsigned pflag, uflag; // Unimplemented flags +unsigned hd = 0; // Index of next file handle to fill +unsigned secalign = 7; // Section Alignment (8=phrase) +unsigned tbase = 0; // TEXT base address +unsigned dbase = 0; // DATA base address +unsigned bbase = 0; // BSS base address +unsigned textoffset = 0; // COF TEXT segment offset +unsigned dataoffset = 0; // COF DATA segment offset +unsigned bssoffset = 0; // COF BSS segment offset +unsigned displaybanner = 1; // Display version banner +unsigned symoffset = 0; // Symbol table offset in output file +unsigned dosymi = 0; // Dosym() processing iterator +unsigned dbgsymbase = 0; // Debug symbol base address +//unsigned symtrunc = 0; // Symbol truncation -i and -ii +int noheaderflag = 0; // No header flag for ABS files +int hflags; // Value of the arg to -h option +int ttype, dtype, btype; // Type flag: 0, -1, -2, -3, -4 +int tval, dval, bval; // Values of these abs bases +int hflag[NHANDLES]; // True for include files +int handle[NHANDLES]; // Open file handles +int textsize, datasize, bsssize; // Cumulative segment sizes +char libdir[FARGSIZE * 3]; // Library directory to search +char ofile[FARGSIZE]; // Output file name (.o) +char * name[NHANDLES]; // Associated file names +char * cmdlnexec = NULL; // Executable name - pointer to ARGV[0] +char * hsym1[SYMLEN]; // First symbol for include files +char * hsym2[SYMLEN]; // Second symbol for include files +struct OFILE * plist = NULL; // Object image list pointer +struct OFILE * plast; // Last object image list pointer +struct OFILE * olist = NULL; // Pointer to first object file in list +struct OFILE * olast; // Pointer to last object file in list +char obj_fname[512][FNLEN]; // Object file names +unsigned obj_segsize[512][3]; // Object file seg sizes; TEXT,DATA,BSS +unsigned obj_index = 0; // Object file index/count +struct HREC * htable[NBUCKETS]; // Hash table +struct HREC * unresolved = NULL; // Pointer to unresolved hash list +struct HREC * lookup(char *); // Hash lookup +char * ost; // Output symbol table +char * ost_ptr; // Output symbol table; current pointer +char * ost_end; // Output symbol table; end pointer +char * oststr; // Output string table +char * oststr_ptr; // Output string table; current pointer +char * oststr_end; // Output string table; end pointer +int ost_index = 0; // Index of next ost addition +int endian; // Processor endianess + +// Some human readable defines for endianess +#define ENDIANNESS_BIG 1 +#define ENDIANNESS_LITTLE 0 // // Get a Long Word from Memory // -unsigned getlong(char * src) +uint32_t getlong(uint8_t * src) { - unsigned temp; - char * out; - - out = (char *)&temp; + uint32_t temp; + uint8_t * out; - if (endian == 1) + out = (uint8_t *)&temp; + + if (endian == ENDIANNESS_BIG) { *out++ = src[0]; *out++ = src[1]; @@ -100,28 +105,33 @@ unsigned getlong(char * src) // // Put a Long Word into Memory // -void putlong(char * dest, unsigned val) +void putlong(uint8_t * dest, uint32_t val) { - *dest++ = (char)(val >> 24); - *dest++ = (char)(val >> 16); - *dest++ = (char)(val >> 8); - *dest = (char)val; + *dest++ = (uint8_t)(val >> 24); + *dest++ = (uint8_t)(val >> 16); + *dest++ = (uint8_t)(val >> 8); + *dest = (uint8_t)val; } // // Get a Word from Memory // -int getword(char * src) +uint16_t getword(uint8_t * src) { - unsigned temp; - char * out; + uint16_t temp; + uint8_t * out = (uint8_t *)&temp; - out = (char *)&temp; - *out++ = src[1]; - *out++ = src[0]; - *out++ = 0; - *out = 0; + if (endian == ENDIANNESS_BIG) + { + out[0] = src[0]; + out[1] = src[1]; + } + else + { + out[0] = src[1]; + out[1] = src[0]; + } return temp; } @@ -130,10 +140,10 @@ int getword(char * src) // // Put a Word into Memory // -void putword(char * dest, int val) +void putword(uint8_t * dest, uint16_t val) { - *dest++ = (char)(val >> 8); - *dest = (char)val; + *dest++ = (uint8_t)(val >> 8); + *dest = (uint8_t)val; } @@ -158,18 +168,18 @@ long FSIZE(int fd) // int dosym(struct OFILE * ofile) { - char * symptr; // Symbol pointer - char * symend; // Symbol end pointer - int type; // Symbol type - long value; // Symbol value - int index; // Symbol index - int j; // Iterator - int ssidx; // Segment size table index - unsigned tsegoffset; // Cumulative TEXT segment offset - unsigned dsegoffset; // Cumulative DATA segment offset - unsigned bsegoffset; // Cumulative BSS segment offset - struct HREC * hptr; // Hash table pointer for globl/extrn - char sym[SYMLEN]; // String for symbol name/hash search + char * symptr; // Symbol pointer + char * symend; // Symbol end pointer + int type; // Symbol type + long value; // Symbol value + int index; // Symbol index + int j; // Iterator + int ssidx; // Segment size table index + unsigned tsegoffset; // Cumulative TEXT segment offset + unsigned dsegoffset; // Cumulative DATA segment offset + unsigned bsegoffset; // Cumulative BSS segment offset + struct HREC * hptr; // Hash table pointer for globl/extrn + char sym[SYMLEN]; // String for symbol name/hash search // Point to first symbol record in the object file symptr = (ofile->o_image + 32 @@ -179,22 +189,23 @@ int dosym(struct OFILE * ofile) + ofile->o_header.absrel.reloc.dsize); // Point to end of symbol record in the object file - symend = symptr + ofile->o_header.ssize; + symend = symptr + ofile->o_header.ssize; - // Search through object segment size table to accumulated segment sizes to ensure + // Search through object segment size table to accumulated segment sizes to ensure // the correct offsets are used in the resulting COF file. - ssidx = -1; // Initialise segment index - tsegoffset = dsegoffset = bsegoffset = 0; // Initialise segment offsets + ssidx = -1; // Initialise segment index + tsegoffset = dsegoffset = bsegoffset = 0; // Initialise segment offsets + // Search for object file name for(j=0; j<(int)obj_index; j++) - { // Search for object file name + { if (!strcmp(ofile->o_name, obj_fname[j])) { - ssidx = j; // Object file name found + ssidx = j; // Object file name found break; } - tsegoffset += obj_segsize[j][0]; // Accumulate segment sizes + tsegoffset += obj_segsize[j][0]; // Accumulate segment sizes dsegoffset += obj_segsize[j][1]; bsegoffset += obj_segsize[j][2]; } @@ -203,22 +214,23 @@ int dosym(struct OFILE * ofile) { printf("dosym() : Cannot get object file segment size : %s\n", ofile->o_name); return 1; - } + } // Process each record in the symbol table for(; symptr!=symend; symptr+=12) { - index = getlong(symptr + 0); // Obtain symbol string index - type = getlong(symptr + 4); // Obtain symbol type - value = getlong(symptr + 8); // Obtain symbol value + index = getlong(symptr + 0); // Obtain symbol string index + type = getlong(symptr + 4); // Obtain symbol type + value = getlong(symptr + 8); // Obtain symbol value // Global/External symbols have a pre-processing stage if (type & 0x01000000) { - // Obtain the string table index for the relocation symbol, look for it in the globals - // hash table to obtain information on that symbol. For the hash calculation to work - // correctly it must be placed in a 'clean' string before looking it up. - memset(sym, 0, SYMLEN); + // Obtain the string table index for the relocation symbol, look + // for it in the globals hash table to obtain information on that + // symbol. For the hash calculation to work correctly it must be + // placed in a 'clean' string before looking it up. + memset(sym, 0, SYMLEN); strcpy(sym, symend + index); hptr = lookup(sym); @@ -228,53 +240,55 @@ int dosym(struct OFILE * ofile) return 1; } - // Search through object segment size table to obtain segment sizes for the object - // that has the required external/global as a local symbol. As each object is - // interrogated the segment sizes are accumulated to ensure the correct offsets are - // used in the resulting COF file. This is effectively 'done again' only as we + // Search through object segment size table to obtain segment sizes + // for the object that has the required external/global as a local + // symbol. As each object is interrogated the segment sizes are + // accumulated to ensure the correct offsets are used in the + // resulting COF file. This is effectively 'done again' only as we // are working with a different object file. - ssidx = -1; // Initialise segment index - tsegoffset = dsegoffset = bsegoffset = 0; // Initialise segment offsets + ssidx = -1; // Initialise segment index + tsegoffset = dsegoffset = bsegoffset = 0; // Initialise segment offsets for(j=0; j<(int)obj_index; j++) { // Search for object filename if (!strcmp((const char *)hptr->h_ofile, obj_fname[j])) { - ssidx = j; // Symbol object filename + ssidx = j; // Symbol object filename break; } - tsegoffset += obj_segsize[j][0]; // Accumulate segment sizes + tsegoffset += obj_segsize[j][0]; // Accumulate segment sizes dsegoffset += obj_segsize[j][1]; bsegoffset += obj_segsize[j][2]; } if (ssidx == -1) { - printf("dosym() : Cannot get object file segment size : %s\n", + printf("dosym() : Cannot get object file segment size : %s\n", ofile->o_name); return 1; } - type = hptr->h_type; // Update type with global type + type = hptr->h_type; // Update type with global type - if (type == 0x03000000) - type = 0x02000000; // Reset external flag if absolute + if (type == 0x03000000) + type = 0x02000000; // Reset external flag if absolute - // If the global/external has a value then update that vaule in accordance with the - // segment sizes of the object file it originates from + // If the global/external has a value then update that vaule in + // accordance with the segment sizes of the object file it + // originates from if (hptr->h_value) { switch (hptr->h_type & 0x0E000000) { - case 0x02000000: // Absolute value - case 0x04000000: // TEXT segment + case 0x02000000: // Absolute value + case 0x04000000: // TEXT segment value = hptr->h_value; break; - case 0x06000000: // DATA segment + case 0x06000000: // DATA segment value = hptr->h_value - (hptr->h_ofile->o_header.tsize); break; - case 0x08000000: // BSS segment + case 0x08000000: // BSS segment value = hptr->h_value - (hptr->h_ofile->o_header.tsize + hptr->h_ofile->o_header.dsize); break; @@ -282,34 +296,38 @@ int dosym(struct OFILE * ofile) } } - // Process and update the value dependant on whether the symbol is a debug symbol or not + // Process and update the value dependant on whether the symbol is a + // debug symbol or not if (type & 0xF0000000) - { // DEBUG SYMBOL + { + // DEBUG SYMBOL // Set the correct debug symbol base address (TEXT segment) dbgsymbase = 0; - for(j=0; (unsigned)jo_header.tsize + ofile->o_header.dsize)); + + (value - (ofile->o_header.tsize + ofile->o_header.dsize)); putlong(symptr + 8, value); break; default: break; } - } + } // Add to output symbol table if (lflag || !islocal(type)) { if (islocal(type) || isglobal(type)) { - if ((index = ost_add(symend + index, type, value)) == -1) + if ((index = ost_add(symend + index, type, value)) == -1) return 1; } else { // Belongs in OST, but don't look it up yet - index = -1; + index = -1; } } } - dosymi++; // Increment dosym() processsing + // Increment dosym() processsing + dosymi++; + return 0; } @@ -387,26 +407,27 @@ void hash_free(void) } -// +// // Add all Global and External Symbols to the Output Symbol Table -// +// long docommon(void) { - struct HREC * hptr; // Hash record pointer - int i; // Iterator + struct HREC * hptr; // Hash record pointer + int i; // Iterator for(i=0; ih_next) { - if (iscommon(hptr->h_type)) +//NO! if (iscommon(hptr->h_type)) + if (isglobal(hptr->h_type) || isextern(hptr->h_type)) { if (hptr->h_type == 0x03000000) - hptr->h_type = 0x02000000; // Absolutes can't be externals + hptr->h_type = 0x02000000; // Absolutes can't be externals if (ost_add(hptr->h_sym, hptr->h_type, hptr->h_value) == -1) return -1; - } + } } } @@ -415,14 +436,14 @@ long docommon(void) // -// Add a Symbol's Name, Type, and Value to the OST. +// Add a Symbol's Name, Type, and Value to the OST. // Return the Index of the Symbol in OST, or -1 for Error. // int ost_add(char * name, int type, long value) { - int ost_offset_p, ost_offset_e = 0; // OST table offsets for position calcs - int slen = 0; // Symbol string length - int ostresult; // OST index result + int ost_offset_p, ost_offset_e = 0; // OST table offsets for position calcs + int slen = 0; // Symbol string length + int ostresult; // OST index result slen = strlen(name); @@ -435,8 +456,8 @@ int ost_add(char * name, int type, long value) return -1; } - ost_ptr = ost; // Set OST start pointer - ost_end = ost + OST_BLOCK; // Set OST end pointer + ost_ptr = ost; // Set OST start pointer + ost_end = ost + OST_BLOCK; // Set OST end pointer if ((oststr = malloc(OST_BLOCK)) == NULL) { @@ -444,9 +465,9 @@ int ost_add(char * name, int type, long value) return -1; } - putlong(oststr, 0x00000004); // Just null long for now - oststr_ptr = oststr + 4; // Skip size of str table long (incl null long) - putlong(oststr_ptr, 0x00000000); // Null terminating long + putlong(oststr, 0x00000004); // Just null long for now + oststr_ptr = oststr + 4; // Skip size of str table long (incl null long) + putlong(oststr_ptr, 0x00000000); // Null terminating long oststr_end = oststr + OST_BLOCK; } else @@ -455,8 +476,9 @@ int ost_add(char * name, int type, long value) ost_offset_p = (ost_ptr - ost); ost_offset_e = (ost_end - ost); + // 3 x int (12) if ((ost_ptr + 12) > ost_end) - { // 3 x int (12) + { if ((ost = realloc(ost, (unsigned)(ost_end + OST_BLOCK))) == NULL) { printf("OST memory reallocation error.\n"); @@ -470,7 +492,7 @@ int ost_add(char * name, int type, long value) ost_offset_p = (oststr_ptr - oststr); ost_offset_e = (oststr_end - oststr); - if ((oststr_ptr + (slen+1+4)) > oststr_end) + if ((oststr_ptr + (slen + 1 + 4)) > oststr_end) { if ((oststr = realloc(oststr, (unsigned)(oststr_end + OST_BLOCK))) == NULL) { @@ -483,45 +505,55 @@ int ost_add(char * name, int type, long value) } } - // If this is a debug symbol and the include debug symbol flag (-g) is not set then do nothing + // If this is a debug symbol and the include debug symbol flag (-g) is not + // set then do nothing if ((type & 0xF0000000) && !gflag) { // Do nothing } else { - ostresult = ost_lookup(name); // Get symbol index in OST - // If the symbol is in the output symbol table and the bflag is set (don't remove multiply - // defined locals) and this is not an external/global symbol *** OR *** the symbol is not - // in the output symbol table then add it. + ostresult = ost_lookup(name); // Get symbol index in OST + + // If the symbol is in the output symbol table and the bflag is set + // (don't remove multiply defined locals) and this is not an + // external/global symbol *** OR *** the symbol is not in the output + // symbol table then add it. if (((ostresult != -1) && bflag && !(type & 0x01000000)) - || ((ostresult != -1) && gflag && (type & 0xF0000000)) || (ostresult == -1)) + || ((ostresult != -1) && gflag && (type & 0xF0000000)) || (ostresult == -1)) { if ((type & 0xF0000000) == 0x40000000) - putlong(ost_ptr, 0x00000000); // Zero string table offset for dbg line + putlong(ost_ptr, 0x00000000); // Zero string table offset for dbg line else - putlong(ost_ptr, (oststr_ptr - oststr)); // String table offset of symbol string + putlong(ost_ptr, (oststr_ptr - oststr)); // String table offset of symbol string putlong(ost_ptr + 4, type ); putlong(ost_ptr + 8, value); ost_ptr += 12; - // If the symbol type is anything but a debug line information symbol then write - // the symbol string to the string table + // If the symbol type is anything but a debug line information + // symbol then write the symbol string to the string table if ((type & 0xF0000000) != 0x40000000) { - strcpy(oststr_ptr, name); // Put symbol name in string table - *(oststr_ptr + slen) = '\0'; // Add null terminating character + strcpy(oststr_ptr, name); // Put symbol name in string table + *(oststr_ptr + slen) = '\0'; // Add null terminating character oststr_ptr += (slen + 1); - putlong(oststr_ptr, 0x00000000); // Null terminating long - putlong(oststr, (oststr_ptr - oststr)); // Update size of string table + putlong(oststr_ptr, 0x00000000); // Null terminating long + putlong(oststr, (oststr_ptr - oststr)); // Update size of string table + } + + if (vflag > 1) + { + printf("ost_add: (%s), type=$%08X, val=$%08X\n", name, type, value); } - return ost_index++; // Return OST index + return ost_index++; } } - return 0; // not sure about this as it could affect return indices. needed to stop return error. + // Not sure about this as it could affect return indices. Needed to stop + // return error. + return 0; } @@ -530,15 +562,15 @@ int ost_add(char * name, int type, long value) // int ost_lookup(char * sym) { - int i; // Iterator - int stro = 4; // Offset in string table + int i; // Iterator + int stro = 4; // Offset in string table for(i=0; ih_sym, T_EXT, 0L) == -1) return 1; - htemp = hptr->h_next; // Temporarily get ptr to next record - free(hptr); // Free current record - hptr = htemp; // Make next record ptr, current + if (vflag > 1) + printf("dounresolved(): added %s\n", hptr->h_sym); + + htemp = hptr->h_next; // Temporarily get ptr to next record + free(hptr); // Free current record + hptr = htemp; // Make next record ptr, current } - unresolved = NULL; // Zero unresolved record list + unresolved = NULL; // Zero unresolved record list return 0; } @@ -576,32 +611,32 @@ int dounresolved(void) // int reloc_segment(struct OFILE * ofile, int flag) { - char * symtab; // Start of symbol table - char * symbols; // Start of symbols - char * sptr; // Start of segment data - char * rptr; // Start of segment relocation records - unsigned symidx; // Offset to symbol - unsigned addr; // Relocation address - unsigned rflg; // Relocation flags - unsigned olddata; // Old segment data at reloc address - unsigned newdata = 0; // New segment data at reloc address - unsigned pad; // Temporary to calculate phrase padding - int i; // Iterator - char sym[SYMLEN]; // String for symbol name/hash search - int ssidx; // Segment size table index - unsigned glblreloc; // Global relocation flag - unsigned absreloc; // Absolute relocation flag - unsigned relreloc; // Relative relocation flag - unsigned swcond; // Switch statement condition - unsigned relocsize; // Relocation record size + char * symtab; // Start of symbol table + char * symbols; // Start of symbols + char * sptr; // Start of segment data + char * rptr; // Start of segment relocation records + unsigned symidx; // Offset to symbol + unsigned addr; // Relocation address + unsigned rflg; // Relocation flags + unsigned olddata; // Old segment data at reloc address + unsigned newdata = 0; // New segment data at reloc address + unsigned pad; // Temporary to calculate phrase padding + int i; // Iterator + char sym[SYMLEN]; // String for symbol name/hash search + int ssidx; // Segment size table index + unsigned glblreloc; // Global relocation flag + unsigned absreloc; // Absolute relocation flag + unsigned relreloc; // Relative relocation flag + unsigned swcond; // Switch statement condition + unsigned relocsize; // Relocation record size // If there is no TEXT relocation data for the selected object file segment // then update the COF TEXT segment offset allowing for the phrase padding if ((flag == T_TEXT) && !ofile->o_header.absrel.reloc.tsize) { // TEXT segment size plus padding - pad = ((ofile->o_header.tsize+secalign) & ~secalign); - textoffset += (ofile->o_header.tsize + (pad - ofile->o_header.tsize)); + pad = ((ofile->o_header.tsize + secalign) & ~secalign); + textoffset += (ofile->o_header.tsize + (pad - ofile->o_header.tsize)); if (vflag > 1) printf("reloc_segment(%s, TEXT) : No Relocation Data\n", ofile->o_name); @@ -630,7 +665,7 @@ int reloc_segment(struct OFILE * ofile, int flag) // Verbose mode information if (vflag > 1) { - printf("reloc_segment(%s, %s) : Processing Relocation Data\n", + printf("reloc_segment(%s, %s) : Processing Relocation Data\n", ofile->o_name, flag == T_DATA ? "DATA" : "TEXT"); } @@ -642,13 +677,18 @@ int reloc_segment(struct OFILE * ofile, int flag) symbols = symtab + ofile->o_header.ssize; // Obtain pointer to start of TEXT segment - sptr = ofile->o_image + 32; + sptr = ofile->o_image + 32; // Obtain pointer to start of TEXT relocation records rptr = sptr + (ofile->o_header.tsize + ofile->o_header.dsize); relocsize = ofile->o_header.absrel.reloc.tsize; + if (vflag) + { + printf("RELOCSIZE :: %d Records = %d\n",relocsize,relocsize/8); + } + // Update pointers if DATA relocation records are being processed if (flag == T_DATA) { @@ -676,7 +716,7 @@ int reloc_segment(struct OFILE * ofile, int flag) // symbol. For the hash calculation to work correctly it must be // placed in a 'clean' string before looking it up. symidx = getlong(symtab + ((rflg >> 8) * 12)); - memset(sym, 0, SYMLEN); + memset(sym, 0, SYMLEN); strcpy(sym, symbols + symidx); olddata = newdata = 0; // Initialise old and new segment data ssidx = ost_lookup(sym); @@ -709,10 +749,10 @@ int reloc_segment(struct OFILE * ofile, int flag) // Braces were not here, so if something breaks, try pairing the else to the 1st 'if'... if (!glblreloc) { - if (flag == T_TEXT) + if (flag == T_TEXT) // Is this a TEXT section record? newdata = tbase + textoffset + olddata; else - newdata = tbase + dataoffset + olddata; + newdata = tbase + dataoffset + olddata; // Nope, must be DATA section } break; @@ -752,9 +792,15 @@ int reloc_segment(struct OFILE * ofile, int flag) } // Shamus: Let's output some info to aid in debugging this crap - if (vflag) + if (vflag > 1) { - printf("reloc_segment(): %s, $%08X: $%08X => $%08X\n", sym, addr, olddata, getlong(sptr + addr)); + char ssiString[128]; + ssiString[0] = 0; + + if (glblreloc) + sprintf(ssiString, " [ssi:%i]", ssidx); + + printf("reloc_segment($%08X): %s, $%08X: $%08X => $%08X%s\n", rflg, (glblreloc ? sym : "(LOCAL)"), addr, olddata, getlong(sptr + addr), ssiString); } rptr += 8; // Point to the next relocation record @@ -774,7 +820,7 @@ int reloc_segment(struct OFILE * ofile, int flag) dataoffset += (ofile->o_header.dsize + (pad - ofile->o_header.dsize)); // BSS segment plus padding pad = ((ofile->o_header.bsize + secalign) & ~secalign); - bssoffset += (ofile->o_header.bsize + (pad - ofile->o_header.bsize)); + bssoffset += (ofile->o_header.bsize + (pad - ofile->o_header.bsize)); } // Return value, should always be zero @@ -818,11 +864,11 @@ void pathadd(char * s) // int tryopen(char ** p_name) { - char * name = *p_name; // Filename - char * tmpbuf, * lastdot; // Buffer and 'dot' pointers - int fd, hasdot; // File descriptor and 'has dot' flag + char * name = *p_name; // Filename + char * tmpbuf, * lastdot; // Buffer and 'dot' pointers + int fd, hasdot; // File descriptor and 'has dot' flag - // Note that libdir will be an empty string if there is none specified + // Note that libdir will be an empty string if there is none specified if ((tmpbuf = malloc((long)strlen(name) + strlen(libdir) + 3)) == NULL) { printf("tryopen() : out of memory\n"); @@ -834,11 +880,11 @@ int tryopen(char ** p_name) && (lastdot > strrchr(tmpbuf, '\\')); if ((fd = open(tmpbuf, _OPEN_FLAGS)) >= 0) - goto ok; // Try to open file as passed first + goto ok; // Try to open file as passed first if (!hasdot) - { - strcat(tmpbuf, ".o"); // Try to open file with '.o' added + { + strcat(tmpbuf, ".o"); // Try to open file with '.o' added if ((fd = open(tmpbuf, _OPEN_FLAGS)) >= 0) goto ok; @@ -864,9 +910,10 @@ int tryopen(char ** p_name) } } - return -1; // Couldn't open file at all + // Couldn't open file at all + return -1; -// What more Atari label use - sigh!!! +// There are worse things... :-P ok: if ((tmpbuf = realloc(tmpbuf, (long)strlen(tmpbuf) + 1)) == NULL) { @@ -885,7 +932,7 @@ ok: void put_name(struct OFILE * p) { int flag = *(p->o_arname); - printf("%s%s%s", flag ? p->o_arname : "", flag ? ":" : "", p->o_name); + printf("%s%s%s", (flag ? (char *)(p->o_arname) : ""), (flag ? ":" : ""), p->o_name); } @@ -913,7 +960,8 @@ int dofile(char * fname, int flag, char * sym) // Reached maximum file handles if (hd == NHANDLES) { - if (flush_handles()) return 1; + if (flush_handles()) + return 1; } // Attempt to open input file @@ -923,25 +971,25 @@ int dofile(char * fname, int flag, char * sym) return 1; } - // The file is open; save its info in the handle and name arrays + // The file is open; save its info in the handle and name arrays handle[hd] = fd; - name[hd] = fname; // This is the name from tryopen() + name[hd] = fname; // This is the name from tryopen() hflag[hd] = flag; // Include files if (flag) { - temp = strlen(sym); // Get symbol length + temp = strlen(sym); // Get symbol length - // 100 chars is max length of a symbol + // 100 chars is max length of a symbol if (temp > 99) { sym[99] = '\0'; temp = 99; } - // Malloc enough space for two symbols, then build the second one. Second one may be one - // character longer than first + // Malloc enough space for two symbols, then build the second one. + // Second one may be one character longer than first if ((hsym1[hd] = malloc((long)temp + 1)) == NULL || (hsym2[hd] = malloc((long)temp + 2)) == NULL) { @@ -969,8 +1017,10 @@ int dofile(char * fname, int flag, char * sym) } } - hd++; // Increment next handle index - return 0; // No problems + // Increment next handle index + hd++; + // No problems + return 0; } @@ -1014,35 +1064,35 @@ int segmentpad(FILE * fd, long segsize, int value) // int write_ofile(struct OHEADER * header) { - FILE * fd; // File descriptor - unsigned osize; // Object segment size - struct OFILE * otemp; // Object file pointer - int i, j; // Iterators - char himage[0x168]; // Header image (COF = 0xA8) - unsigned tsoff, dsoff, bsoff; // Segment offset values - unsigned index, type, value; // Symbol table index, type and value - short abstype; // ABS symbol type - char symbol[14]; // Symbol record for ABS files - int slen; // Symbol string length - - symoffset = 0; // Initialise symbol offset + FILE * fd; // File descriptor + unsigned osize; // Object segment size + struct OFILE * otemp; // Object file pointer + int i, j; // Iterators + char himage[0x168]; // Header image (COF = 0xA8) + unsigned tsoff, dsoff, bsoff; // Segment offset values + unsigned index, type, value; // Symbol table index, type and value + short abstype; // ABS symbol type + char symbol[14]; // Symbol record for ABS files + int slen; // Symbol string length + + symoffset = 0; // Initialise symbol offset // Add correct output extension if none if (strchr(ofile, '.') == NULL) { if (aflag && cflag) - strcat(ofile, ".cof"); // COF files + strcat(ofile, ".cof"); // COF files else if (aflag && !cflag) - strcat(ofile, ".abs"); // ABS files + strcat(ofile, ".abs"); // ABS files else - strcat(ofile, ".o"); // Object files (partial linking etc) + strcat(ofile, ".o"); // Object files (partial linking etc) } - fd = fopen(ofile, "wb"); // Attempt to open output file + fd = fopen(ofile, "wb"); // Attempt to open output file if (!fd) - { - printf("Can't open output file %s\n", ofile); // Error opening output file + { + printf("Can't open output file %s\n", ofile); // Error opening output file return 1; } @@ -1050,18 +1100,18 @@ int write_ofile(struct OHEADER * header) // Absolute (COF) header if (cflag) { - tsoff = dsoff = bsoff = 0xA8; // Initialises segment offsets + tsoff = dsoff = bsoff = 0xA8; // Initialises segment offsets - // Process each object file segment size to obtain a cumulative segment size for both - // the TEXT and DATA segments + // Process each object file segment size to obtain a cumulative segment + // size for both the TEXT and DATA segments for(i=0; i<(int)obj_index; i++) { - dsoff += obj_segsize[i][0]; // Adding TEXT segment sizes - bsoff += obj_segsize[i][0] + obj_segsize[i][1]; // Adding TEXT and DATA segment sizes + dsoff += obj_segsize[i][0]; // Adding TEXT segment sizes + bsoff += obj_segsize[i][0] + obj_segsize[i][1]; // Adding TEXT and DATA segment sizes } - // Currently this only builds a COF absolute file. Conditionals and additional code will - // need to be added for ABS and partial linking. + // Currently this only builds a COF absolute file. Conditionals and + // additional code will need to be added for ABS and partial linking. // Build the COF_HDR putword(himage + 0, 0x0150 ); // Magic Number (0x0150) @@ -1078,11 +1128,11 @@ int write_ofile(struct OHEADER * header) putlong(himage + 28, header->dsize ); // DATA size in bytes putlong(himage + 32, header->bsize ); // BSS size in bytes putlong(himage + 36, tbase ); // Start of executable, normally @TEXT - putlong(himage + 40, tbase ); // @TEXT + putlong(himage + 40, tbase ); // @TEXT putlong(himage + 44, dbase ); // @DATA // Build the TEXT SEC_HDR - putlong(himage + 48, 0x2E746578 ); + putlong(himage + 48, 0x2E746578 ); putlong(himage + 52, 0x74000000 ); // ".text" putlong(himage + 56, tbase ); // TEXT START putlong(himage + 60, tbase ); // TEXT START @@ -1094,7 +1144,7 @@ int write_ofile(struct OHEADER * header) putlong(himage + 84, 0x00000020 ); // SEC_FLAGS: STYP_TEXT // Build the DATA SEC_HDR - putlong(himage + 88, 0x2E646174 ); + putlong(himage + 88, 0x2E646174 ); putlong(himage + 92, 0x61000000 ); // ".data" putlong(himage + 96, dbase ); // DATA START putlong(himage + 100, dbase ); // DATA START @@ -1106,7 +1156,7 @@ int write_ofile(struct OHEADER * header) putlong(himage + 124, 0x00000040 ); // SEC_FLAGS: STYP_DATA // Build the BSS SEC_HDR - putlong(himage + 128, 0x2E627373 ); + putlong(himage + 128, 0x2E627373 ); putlong(himage + 132, 0x00000000 ); // ".bss" putlong(himage + 136, bbase ); // BSS START putlong(himage + 140, bbase ); // BSS START @@ -1128,7 +1178,7 @@ int write_ofile(struct OHEADER * header) putlong(himage + 6, header->dsize ); // DATA segment size putlong(himage + 10, header->bsize ); // BSS segment size putlong(himage + 14, ost_index * 14 ); // Symbol table size (?) - putlong(himage + 18, 0x00000000 ); // + putlong(himage + 18, 0x00000000 ); // putlong(himage + 22, tbase ); // TEXT base address putword(himage + 26, 0xFFFF ); // Flags (?) putlong(himage + 28, dbase ); // DATA base address @@ -1142,13 +1192,13 @@ int write_ofile(struct OHEADER * header) if (!cflag) { if (!noheaderflag) - if (fwrite(himage, 36, 1, fd) != 1) + if (fwrite(himage, 36, 1, fd) != 1) goto werror; } // Absolute (COF) header else { - if (fwrite(himage, 168, 1, fd) != 1) + if (fwrite(himage, 168, 1, fd) != 1) goto werror; } @@ -1163,11 +1213,11 @@ int write_ofile(struct OHEADER * header) if (vflag > 1) printf("Writing TEXT Segment of %s\n", otemp->o_name); - if (fwrite(otemp->o_image + 32, osize, 1, fd) != 1) + if (fwrite(otemp->o_image + 32, osize, 1, fd) != 1) goto werror; // Pad to required alignment boundary - if (segmentpad(fd, osize, 0x0000)) + if (segmentpad(fd, osize, 0x0000)) goto werror; symoffset += osize; @@ -1189,7 +1239,7 @@ int write_ofile(struct OHEADER * header) goto werror; // Pad to required alignment boundary - if (segmentpad(fd, osize, 0)) + if (segmentpad(fd, osize, 0)) goto werror; symoffset += osize; @@ -1211,23 +1261,25 @@ int write_ofile(struct OHEADER * header) // Absolute (ABS) symbol/string table else { - // The symbol and string table have been created as part of the dosym() function and the - // output symbol and string tables are in COF format. For an ABS file we need to process - // through this to create the 14 character long combined symbol and string table. - // Format of symbol table in ABS: AAAAAAAATTVVVV, where (A)=STRING, (T)=TYPE & (V)=VALUE + // The symbol and string table have been created as part of the + // dosym() function and the output symbol and string tables are in + // COF format. For an ABS file we need to process through this to + // create the 14 character long combined symbol and string table. + // Format of symbol table in ABS: AAAAAAAATTVVVV, where (A)=STRING, + // (T)=TYPE & (V)=VALUE for(i=0; io_next; // Go to next object file list pointer + // Go to next object file list pointer + otemp = otemp->o_next; } // Update base addresses and create symbols _TEXT_E, _DATA_E and _BSS_E @@ -1502,7 +1560,7 @@ struct OHEADER * make_ofile() ost_add("_BSS_E", 0x09000000, tval + textsize + datasize + bsssize); } else - { + { // BSS is independant of DATA bbase = bval; ost_add("_BSS_E", 0x09000000, bval + bsssize); @@ -1528,11 +1586,11 @@ struct OHEADER * make_ofile() } } - // Place each unresolved symbol in the output symbol table + // Place each unresolved symbol in the output symbol table if (dounresolved()) - return NULL; + return NULL; - tptr = 0; // Initialise base addresses + tptr = 0; // Initialise base addresses dptr = 0; bptr = 0; @@ -1554,8 +1612,8 @@ struct OHEADER * make_ofile() bptr += (otemp->o_header.bsize + secalign) & ~secalign; } - // For each symbol, (conditionally) add it to the ost - // For ARCHIVE markers, this adds the symbol for the file & returns + // For each symbol, (conditionally) add it to the ost + // For ARCHIVE markers, this adds the symbol for the file & returns if (dosym(otemp)) return NULL; @@ -1599,7 +1657,7 @@ struct OHEADER * make_ofile() header->bsize = bsssize; // BSS segment size header->ssize = (ost_ptr - ost); // Symbol table size header->ostbase = ost; // Output symbol table base address - + // For each object file, relocate its TEXT and DATA segments. OR the result // into ret so all files get moved (and errors reported) before returning // with the error condition @@ -1623,7 +1681,7 @@ struct OHEADER * make_ofile() // int add_to_hlist(struct HREC ** hptr, char * sym, struct OFILE * ofile, long value, int type) { - struct HREC * htemp; // Temporary hash record pointer + struct HREC * htemp; // Temporary hash record pointer int i; // Attempt to allocate new hash record @@ -1633,15 +1691,21 @@ int add_to_hlist(struct HREC ** hptr, char * sym, struct OFILE * ofile, long val return 1; } + // Shamus: Moar testing... + if (vflag > 1) + { + printf("add_to_hlist(): hptr=$%08X, sym=\"%s\", ofile=$%08X, value=$%X, type=$%X\n", (unsigned int)hptr, sym, (unsigned int)ofile, value, type); + } + for(i=0; ih_sym[i] = '\0'; - strcpy(htemp->h_sym, sym); // Populate hash record + strcpy(htemp->h_sym, sym); // Populate hash record htemp->h_ofile = ofile; htemp->h_value = value; htemp->h_type = type; - htemp->h_next = *hptr; // Update hash record pointers + htemp->h_next = *hptr; // Update hash record pointers *hptr = htemp; return 0; @@ -1654,7 +1718,7 @@ int add_to_hlist(struct HREC ** hptr, char * sym, struct OFILE * ofile, long val add_unresolved(char * sym, struct OFILE * ofile) { if (vflag > 1) - printf("add_unresolved(%s,%s)\n", sym, ofile->o_name); + printf("add_unresolved(%s, %s)\n", sym, ofile->o_name); return add_to_hlist(&unresolved, sym, ofile, 0L, 0); } @@ -1665,7 +1729,8 @@ add_unresolved(char * sym, struct OFILE * ofile) // int dohash(char * s) { - int i = (s[0]+s[1]+s[2]+s[3]+s[4]+s[5]+s[6]+s[7] +s[8]+s[9]+s[10]+s[11]+s[12]+s[13]+s[14]) % NBUCKETS; + int i = (s[0] + s[1] + s[2] + s[3] + s[4] + s[5] + s[6] + s[7] + s[8] + + s[9] + s[10] + s[11] + s[12] + s[13] + s[14]) % NBUCKETS; return i; } @@ -1675,21 +1740,25 @@ int dohash(char * s) // struct HREC * lookup(char * sym) { - struct HREC * hptr = htable[dohash(sym)]; // Hash index to record based on sym - char symbol[SYMLEN]; // Temporary symbol storage + struct HREC * hptr = htable[dohash(sym)]; // Hash index to record based on sym + char symbol[SYMLEN]; // Temporary symbol storage - memset(symbol, 0, SYMLEN); // Clean string for comparison + memset(symbol, 0, SYMLEN); // Clean string for comparison strcpy(symbol, sym); while (hptr != NULL) { - if (symcmp(symbol, hptr->h_sym)) +//This is utter failure... +// if (symcmp(symbol, hptr->h_sym)) <-- left here for giggles :D - LinkoVitch + // Return hash pointer if found + if (strcmp(symbol, hptr->h_sym) == 0) return hptr; - hptr = hptr->h_next; // Return hash pointer if found + hptr = hptr->h_next; } - return NULL; // Not found in hash table + // Symbol was not found in hash table + return NULL; } @@ -1703,7 +1772,7 @@ int hash_add(char * sym, long type, long value, struct OFILE * ofile) if (vflag > 1) { - printf("hash_add(%s,%s,%lx,", sym, ofile->o_name,value); + printf("hash_add(%s,%s,%lx,", sym, ofile->o_name, value); printf("%x,%s)\n", (unsigned int)type, (flag ? "GLOBAL" : "COMMON")); } @@ -1715,10 +1784,10 @@ int hash_add(char * sym, long type, long value, struct OFILE * ofile) // Already there! if (iscommon(type) && !iscommon(hptr->h_type)) { - // Mismatch: global came first; warn and keep the global one + // Mismatch: global came first; warn and keep the global one if (wflag) { - printf("Warning: %s: global from ",sym); + printf("Warning: %s: global from ", sym); put_name(hptr->h_ofile); printf(" used, common from "); put_name(ofile); @@ -1730,7 +1799,7 @@ int hash_add(char * sym, long type, long value, struct OFILE * ofile) } else if (iscommon(hptr->h_type) && !iscommon(type)) { - // Mismatch: common came first; warn and keep the global one + // Mismatch: common came first; warn and keep the global one if (wflag) { printf("Warning: %s: global from ", sym); @@ -1744,9 +1813,10 @@ int hash_add(char * sym, long type, long value, struct OFILE * ofile) hptr->h_ofile = ofile; hptr->h_value = value; } + // They're both global else if (flag) - { // They're both global - // Global exported by another ofile; warn and make this one extern + { + // Global exported by another ofile; warn and make this one extern if (wflag) { printf("Duplicate symbol %s: ", sym); @@ -1758,8 +1828,9 @@ int hash_add(char * sym, long type, long value, struct OFILE * ofile) putword(sym + 8, ABST_EXTERN); } + // They're both common else - { // They're both common + { if (hptr->h_value < value) { hptr->h_value = value; @@ -1775,38 +1846,38 @@ int hash_add(char * sym, long type, long value, struct OFILE * ofile) // Add the imported symbols from this file to unresolved, and the global and // common symbols to the exported hash table. // -// Change old-style commons (type == T_EXTERN, value != 0) to new-style ones +// Change old-style commons (type == T_EXTERN, value != 0) to new-style ones // (type == (T_GLOBAL | T_EXTERN)). // int add_symbols(struct OFILE * Ofile) { - long nsymbols; // Number of symbols in object file - char * ptr; // Object data base pointer - char * sfix; // Symbol fixup table pointer - char * sstr; // Symbol string table pointer - long index; // String index - long type; // Symbol type - long value; // Symbol value - struct HREC * hptr; // Hash record pointer + long nsymbols; // Number of symbols in object file + char * ptr; // Object data base pointer + char * sfix; // Symbol fixup table pointer + char * sstr; // Symbol string table pointer + long index; // String index + long type; // Symbol type + long value; // Symbol value + struct HREC * hptr; // Hash record pointer char symbol[SYMLEN]; if (vflag > 1) printf("Add symbols for file %s\n", Ofile->o_name); - ptr = Ofile->o_image + 32 // Get base pointer, start of sym fixups - + Ofile->o_header.tsize - + Ofile->o_header.dsize + ptr = Ofile->o_image + 32 // Get base pointer, start of sym fixups + + Ofile->o_header.tsize + + Ofile->o_header.dsize + Ofile->o_header.absrel.reloc.tsize + Ofile->o_header.absrel.reloc.dsize; - sfix = ptr; // Set symbol fixup pointer - sstr = sfix + Ofile->o_header.ssize; // Set symbol table pointer - nsymbols = Ofile->o_header.ssize / 12; // Obtain number of symbols + sfix = ptr; // Set symbol fixup pointer + sstr = sfix + Ofile->o_header.ssize; // Set symbol table pointer + nsymbols = Ofile->o_header.ssize / 12; // Obtain number of symbols while (nsymbols) { - index = getlong(sfix); // Get symbol string index - type = getlong(sfix + 4); // Get symbol type - value = getlong(sfix + 8); // Get symbol value + index = getlong(sfix); // Get symbol string index + type = getlong(sfix + 4); // Get symbol type + value = getlong(sfix + 8); // Get symbol value memset(symbol, 0, SYMLEN); strcpy(symbol, sstr + index); @@ -1818,7 +1889,7 @@ int add_symbols(struct OFILE * Ofile) // Then add to hash table if (hash_add(symbol, type, value, Ofile)) { - return 1; // Error if addition failed + return 1; // Error if addition failed } } else @@ -1826,21 +1897,22 @@ int add_symbols(struct OFILE * Ofile) // If value is zero and in hash table if ((hptr = lookup(symbol)) != NULL) { - hptr->h_ofile->o_flags |= O_USED; // Mark symbol as used + hptr->h_ofile->o_flags |= O_USED; // Mark symbol as used } // Otherwise add to unresolved list else if (add_unresolved(symbol, Ofile)) { - return 1; // Error if addition failed + return 1; // Error if addition failed } } } - sfix += 12; // Increment symbol fixup pointer - nsymbols--; // Decrement num of symbols to process + sfix += 12; // Increment symbol fixup pointer + nsymbols--; // Decrement num of symbols to process } - return 0; // Success loading symbols + // Success loading symbols + return 0; } @@ -1849,8 +1921,8 @@ int add_symbols(struct OFILE * Ofile) // int doobj(char * fname, char * ptr, char * aname, int flags) { - struct OFILE * Ofile; // Object record pointer - char * temp; // Temporary data pointer + struct OFILE * Ofile; // Object record pointer + char * temp; // Temporary data pointer // Allocate memory for object record ptr if ((Ofile = new_ofile()) == NULL) @@ -1876,17 +1948,18 @@ int doobj(char * fname, char * ptr, char * aname, int flags) return 1; } - strcpy(Ofile->o_name, temp); // Store filename - strcpy(Ofile->o_arname, aname); // Store archive name + strcpy(Ofile->o_name, temp); // Store filename + strcpy(Ofile->o_arname, aname); // Store archive name - Ofile->o_next = NULL; // Initialise object record information + Ofile->o_next = NULL; // Initialise object record information Ofile->o_tbase = 0; Ofile->o_dbase = 0; Ofile->o_bbase = 0; Ofile->o_flags = flags; Ofile->o_image = ptr; - - // Don't do anything if this is just an ARCHIVE marker, just add the file to the olist + + // Don't do anything if this is just an ARCHIVE marker, just add the file + // to the olist if (!(flags & O_ARCHIVE)) { Ofile->o_header.magic = getlong(ptr); @@ -1896,17 +1969,17 @@ int doobj(char * fname, char * ptr, char * aname, int flags) Ofile->o_header.ssize = getlong(ptr+16); Ofile->o_header.absrel.reloc.tsize = getlong(ptr+24); Ofile->o_header.absrel.reloc.dsize = getlong(ptr+28); - - // Round BSS off to alignment boundary + + // Round BSS off to alignment boundary Ofile->o_header.bsize = (Ofile->o_header.bsize + secalign) & ~secalign; - if (Ofile->o_header.dsize & 7) + if ((Ofile->o_header.dsize & 7) && wflag) { printf("Warning: data segment size of "); put_name(Ofile); printf(" is not a phrase multiple\n"); } - + // Check for odd segment sizes if ((Ofile->o_header.tsize & 1) || (Ofile->o_header.dsize & 1) || (Ofile->o_header.bsize & 1)) @@ -1921,10 +1994,10 @@ int doobj(char * fname, char * ptr, char * aname, int flags) return 1; } - // Add this file to the olist - if (olist == NULL) + // Add this file to the olist + if (olist == NULL) olist = Ofile; - else + else olast->o_next = Ofile; olast = Ofile; @@ -1937,15 +2010,15 @@ int doobj(char * fname, char * ptr, char * aname, int flags) // int dolist(void) { - struct HREC * uptr; // Unresolved hash record pointer - struct HREC * prev = NULL; // Previous hash record pointer - struct HREC * htemp; // Temporary hash record pointer - struct OFILE * ptemp; // Temporary object file record pointer + struct HREC * uptr; // Unresolved hash record pointer + struct HREC * prev = NULL; // Previous hash record pointer + struct HREC * htemp; // Temporary hash record pointer + struct OFILE * ptemp; // Temporary object file record pointer // Process object file list while (plist != NULL) { - if (doobj(plist->o_name, plist->o_image, plist->o_arname, plist->o_flags)) + if (doobj(plist->o_name, plist->o_image, plist->o_arname, plist->o_flags)) return 1; ptemp = plist; @@ -1962,7 +2035,7 @@ int dolist(void) if ((htemp = lookup(uptr->h_sym)) != NULL) { if (vflag > 1) - printf(" %s in %s\n", isglobal(htemp->h_type) ? "global" : "common", htemp->h_ofile->o_name); + printf("%s in %s (=$%06X)\n", isglobal(htemp->h_type) ? "global" : "common", htemp->h_ofile->o_name, htemp->h_value); htemp->h_ofile->o_flags |= O_USED; @@ -1996,10 +2069,12 @@ int dolist(void) // char * path_tail(char * name) { - char * temp = max(strrchr(name,'/'), max(strrchr(name,':'), strrchr(name, 92))); +// char * temp = MAX(strrchr(name, '/'), MAX(strrchr(name, ':'), strrchr(name, '\\'))); + char * temp = strrchr(name, PATH_DELIMITER); + // Return what was passed in if path delimiter was not found if (temp == NULL) - temp = (name - 1); + return name; return temp + 1; } @@ -2011,35 +2086,36 @@ char * path_tail(char * name) int pladd(char * ptr, char * fname) { if (plist == NULL) - { - plist = new_ofile(); // First time object record allocation - plast = plist; // Update last object record pointer + { + plist = new_ofile(); // First time object record allocation + plast = plist; // Update last object record pointer } else { - plast->o_next = new_ofile(); // Next object record allocation - plast = plast->o_next; // Update last object record pointer + plast->o_next = new_ofile(); // Next object record allocation + plast = plast->o_next; // Update last object record pointer } if (plast == NULL) - { - printf("Out of memory.\n"); // Error if memory allocation fails + { + printf("Out of memory.\n"); // Error if memory allocation fails return 1; } - if (strlen(path_tail(fname)) > FNLEN-1) - { // Error on excessive filename length - printf("File name too long: %s (sorry!)\n",fname); + if (strlen(path_tail(fname)) > FNLEN - 1) + { + // Error on excessive filename length + printf("File name too long: %s (sorry!)\n", fname); return 1; } - strcpy(plast->o_name, path_tail(fname)); // Store filename, not path - *plast->o_arname = 0; // No archive name for this file - plast->o_image = ptr; // Store data pointer - plast->o_flags = O_USED; // File is used - plast->o_next = NULL; // Initialise next record pointer + strcpy(plast->o_name, path_tail(fname)); // Store filename, not path + *plast->o_arname = 0; // No archive name for this file + plast->o_image = ptr; // Store data pointer + plast->o_flags = O_USED; // File is used + plast->o_next = NULL; // Initialise next record pointer - return 0; // Return without errors + return 0; // Return without errors } @@ -2058,7 +2134,7 @@ int pladd(char * ptr, char * fname) // int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) { - long fsize, dsize, size; // File, DATA segment and image sizes + long fsize, dsize, size; // File, DATA segment and image sizes char * ptr, * sptr; // Data pointers int i; // Iterators int sym1len = 0; // Symbol 1 length @@ -2066,7 +2142,7 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) unsigned symtype = 0; fsize = FSIZE(handle); // Get size of include file - dsize = (fsize+secalign) & ~secalign; // Round up to a alignment boundary + dsize = (fsize + secalign) & ~secalign; // Round up to a alignment boundary sym1len = strlen(sym1) + 1; // Get sym1 length + null termination sym2len = strlen(sym2) + 1; // Get sym2 length + null termination @@ -2083,7 +2159,7 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) } // Read in binary data - if (read(handle, ptr+32, fsize) != fsize) + if (read(handle, ptr + 32, fsize) != fsize) { printf("File read error on %s\n", fname); close(handle); @@ -2095,13 +2171,13 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) strcpy(obj_fname[obj_index], path_tail(fname)); - // Build this image's dummy header + // Build this image's dummy header putlong(ptr, 0x00000107); // Magic number if (segment) { - putlong(ptr+4, dsize); // Text size - putlong(ptr+8, 0L); // Data size + putlong(ptr+4, dsize); // Text size + putlong(ptr+8, 0L); // Data size symtype = 0x05000000; obj_segsize[obj_index][0] = dsize; obj_segsize[obj_index][1] = 0; @@ -2109,8 +2185,8 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) } else { - putlong(ptr+4, 0L); // Text size - putlong(ptr+8, dsize); // Data size + putlong(ptr+4, 0L); // Text size + putlong(ptr+8, dsize); // Data size symtype = 0x07000000; obj_segsize[obj_index][0] = 0; obj_segsize[obj_index][1] = dsize; @@ -2119,7 +2195,7 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) obj_index++; // Increment object count - putlong(ptr+12, 0L); // BSS size + putlong(ptr+12, 0L); // BSS size putlong(ptr+16, 24); // Symbol table size putlong(ptr+20, 0L); // Entry point putlong(ptr+24, 0L); // TEXT relocation size @@ -2141,7 +2217,7 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) sptr = ptr + 32 + dsize + 24 + 4; // Set sptr to symbol table location for(i=0; i<(sym1len-1); i++) // Write symbol1 to string table - sptr[i] = *sym1++; + sptr[i] = *sym1++; sptr += (sym1len-1); // Step past symbol string *sptr = '\0'; // Terminate symbol string @@ -2169,17 +2245,17 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) // int doobject(char * fname, int fd, char * ptr) { - long size; // File size + long size; // File size if (ptr == NULL) - { - size = FSIZE(fd); // Get size of input object file + { + size = FSIZE(fd); // Get size of input object file // Allocate memory for file data if ((ptr = malloc(size)) == NULL) { printf("Out of memory while processing %s\n", fname); - close(fd); // Close and error + close(fd); return 1; } @@ -2187,21 +2263,22 @@ int doobject(char * fname, int fd, char * ptr) if (read(fd, ptr, size) != size) { printf("File read error on %s\n", fname); - close(fd); // Close, free memory and error + close(fd); free(ptr); return 1; } - strcpy(obj_fname[obj_index], path_tail(fname)); // SCPCD : get the name of the file instead of all pathname + // SCPCD : get the name of the file instead of all pathname + strcpy(obj_fname[obj_index], path_tail(fname)); obj_segsize[obj_index][0] = (getlong(ptr + 4) + secalign) & ~secalign; obj_segsize[obj_index][1] = (getlong(ptr + 8) + secalign) & ~secalign; obj_segsize[obj_index][2] = (getlong(ptr + 12) + secalign) & ~secalign; obj_index++; close(fd); // Close file - } + } - // Now add this image to the list of pending ofiles (plist) + // Now add this image to the list of pending ofiles (plist) // This routine is shared by doinclude after it builds the image return pladd(ptr, fname); } @@ -2212,8 +2289,8 @@ int doobject(char * fname, int fd, char * ptr) // int flush_handles(void) { - int i; // Iterator - char magic[4]; // Magic header number + int i; // Iterator + char magic[4]; // Magic header number // unsigned test; // Process all handles @@ -2228,33 +2305,37 @@ int flush_handles(void) if (!hflag[i]) { // Attempt to read file magic number // OBJECT FILES - if (read(handle[i],magic,4) != 4) + if (read(handle[i], magic, 4) != 4) { printf("Error reading file %s\n", name[i]); - close(handle[i]); // Close file and error + close(handle[i]); return 1; } - - lseek(handle[i], 0L, 0); // Reset to start of input file - // test = getlong(magic); printf("Magic Number is 0x%08X\n", test); + lseek(handle[i], 0L, 0); // Reset to start of input file +// test = getlong(magic); printf("Magic Number is 0x%08X\n", test); + + // Look for RMAC/MAC object files if (getlong(magic) == 0x00000107) - { // Look for SMAC/MAC object files - if (doobject(name[i], handle[i], 0L)) // Process input object file - return 1; + { + // Process input object file + if (doobject(name[i], handle[i], 0L)) + return 1; } else { + // Close file and error printf("%s is not a supported object file\n", name[i]); - close(handle[i]); // Close file and error + close(handle[i]); return 1; } } else { // INCLUDE FILES - // If hflag[i] is 1, include this in the data segment; if 2, put in in text segment - if (doinclude(name[i], handle[i], hsym1[i], hsym2[i], hflag[i] - 1)) + // If hflag[i] is 1, include this in the data segment; if 2, put it + // in text segment + if (doinclude(name[i], handle[i], hsym1[i], hsym2[i], hflag[i] - 1)) return 1; } } @@ -2262,7 +2343,7 @@ int flush_handles(void) // Free include, symbol & object handles for(i=0; i<(int)hd; i++) { - free(name[i]); + free(name[i]); if (hflag[i]) { @@ -2271,8 +2352,9 @@ int flush_handles(void) } } - hd = 0; // Reset next handle indicator - return 0; // Return + // Reset next handle indicator + hd = 0; + return 0; } @@ -2370,7 +2452,7 @@ int docmdfile(char * fname) // Attempt to open and read in the command file if (fname) - { + { if ((fd = open(fname, _OPEN_FLAGS)) < 0) { printf("Cannot open command file %s.\n", fname); @@ -2427,278 +2509,291 @@ int docmdfile(char * fname) // int doargs(int argc, char * argv[]) { - int i = 1; // Iterator - int c; // Command line character - char * ifile, * isym; // File name and symbol name for -i - - while (i < argc) - { // Parse through option switches & files - if (argv[i][0] == '-') - { // Process command line switches - if (!argv[i][1]) - { - printf("Illegal option argument: %s\n\n", argv[i]); - display_help(); - return 1; - } - - c = argv[i++][1]; // Get next character in command line - - switch (c) - { // Process command line switch - case '?': // Display usage information - case 'h': + int i = 1; // Iterator + int c; // Command line character + char * ifile, * isym; // File name and symbol name for -i + + // Parse through option switches & files + while (i < argc) + { + // Process command line switches + if (argv[i][0] == '-') + { + if (!argv[i][1]) + { + printf("Illegal option argument: %s\n\n", argv[i]); + display_help(); + return 1; + } + + c = argv[i++][1]; // Get next character in command line + + // Process command line switch + switch (c) + { + case '?': // Display usage information + case 'h': case 'H': - display_version(); - display_help(); - return 1; - case 'a': - case 'A': // Set absolute linking on - if (aflag) - warn('a', 1); - - if (i + 2 >= argc) - { - printf("Not enough arguments to -a\n"); - return 1; - } - - aflag = 1; // Set abs link flag - // Segment order is TEXT, DATA, BSS - // Text segment can be 'r', 'x' or a value - ttype = 0; - - if ((*argv[i] == 'r' || *argv[i] == 'R') && !argv[i][1]) - { - ttype = -1; // TEXT segment is relocatable - } - else if ((*argv[i] == 'x' || *argv[i] == 'X')) - { - printf("Error in text-segment address: cannot be contiguous\n"); - return 1; - } - else if ((ttype = 0), getval(argv[i], &tval)) - { - printf("Error in text-segment address: %s is not 'r', 'x' or an address.", argv[i]); - return 1; - } - - i++; - // Data segment can be 'r', 'x' or a value - dtype = 0; - - if ((*argv[i] == 'r' || *argv[i] == 'R') && !argv[i][1]) - { - dtype = -1; // DATA segment is relocatable - } - else if ((*argv[i] == 'x' || *argv[i] == 'X')) - { - dtype = -2; // DATA follows TEXT - } - else if ((dtype = 0), getval(argv[i],&dval)) - { - printf("Error in data-segment address: %s is not 'r', 'x' or an address.", argv[i]); - return 1; - } - - i++; - btype = 0; - - // BSS segment can be 'r', 'x' or a value - if ((*argv[i] == 'r' || *argv[i] == 'R') && !argv[i][1]) - { - btype = -1; // BSS segment is relocatable - } - else if ((*argv[i] == 'x' || *argv[i] == 'X')) - { - btype = -3; // BSS follows DATA - } - else if ((btype = 0), getval(argv[i],&bval)) - { - printf("Error in bss-segment address: %s is not 'r', 'x[td]', or an address.", argv[i]); - return 1; - } - - i++; - break; - case 'b': - case 'B': // Don't remove muliply defined locals - if (bflag) - warn('b', 1); - - bflag = 1; - break; - case 'c': - case 'C': // Process a command file - if (i == argc) - { - printf("Not enough arguments to -c\n"); - return 1; - } - - if (docmdfile(argv[i++])) - { - return 1; - } - - break; - case 'd': - case 'D': // Wait for "return" before exiting - if (dflag) - warn('d', 0); - - dflag = 1; - waitflag = 1; - break; - case 'e': - case 'E': // Output COFF (absolute only) - cflag = 1; - break; - case 'g': - case 'G': // Output source level debugging - printf("\'g\' flag not currently implemented\n"); - gflag = 0; - /* - if (gflag) warn('g', 1); - gflag = 1; - */ - break; - case 'i': - case 'I': // Include binary file - if (i + 2 > argc) - { - printf("Not enough arguments to -i\n"); - return 1; - } - - ifile = argv[i++]; - isym = argv[i++]; - - if ((argv[i-3][2] == 'i') || (argv[i-3][2] == 'I')) - { // handle -ii (No truncation) - if (!cflag) - printf("warning: (-ii) COFF format output not specified\n"); - } - else - { // handle -i (Truncation) - if (strlen(isym) > 7) - isym[7] = '\0'; - } - - // Place include files in the DATA segment only - if (dofile(ifile, DSTSEG_D, isym)) - return 1; - - break; - case 'l': - case 'L': // Add local symbols - if (lflag) - warn('l', 1); - - lflag = 1; - break; - case 'm': - case 'M': // Produce load symbol map - if (mflag) - warn('m', 1); - - mflag = 1; - break; - case 'n': - case 'N': // Output no header to .abs file - if (noheaderflag) - warn('n', 1); - - noheaderflag = 1; - break; - case 'o': - case 'O': // Specify an output file - if (oflag) - warn('o', 1); - - oflag = 1; - - if (i >= argc) - { - printf("No output filename following -o switch\n"); - return 1; - } - - if (strlen(argv[i]) > FARGSIZE - 5) - { - printf("Output file name too long (sorry!)\n"); - return 1; - } - - strcpy(ofile, argv[i++]); - break; - case 'r': - case 'R': // Section alignment size - if (rflag) - warn('r', 1); - - rflag = 1; - - switch (argv[i-1][2]) - { - case 'w': case 'W': secalign = 1; break; // Word alignment - case 'l': case 'L': secalign = 3; break; // Long alignment - case 'p': case 'P': secalign = 7; break; // Phrase alignment - case 'd': case 'D': secalign = 15; break; // Double phrase alignment - case 'q': case 'Q': secalign = 31; break; // Quad phrase alignment - default: secalign = 7; break; // Default phrase alignment - } - - break; - case 's': - case 'S': // Output only global symbols - if (sflag) - warn('s', 1); - - sflag = 1; - break; - case 'v': - case 'V': // Verbose information - if (!vflag && !versflag) - { - display_version(); - } - - vflag++; - break; - case 'z': - case 'Z': // Suppress banner flag - if (zflag) - warn('z', 1); - - zflag = 1; - break; - default: - printf("unknown option argument `%c'\n", c); - return 1; - } - } - else - { // Not a switch, then process as a file - if (dofile(argv[i++], 0, NULL)) - return 1; - } - - } - - if (!oflag && vflag) - { - strcpy(ofile, "output"); - printf("Output file is %s[.ext]\n", ofile); - } - - if (oflag && vflag) - printf("Output file is %s\n", ofile); - - if (sflag) - lflag = 0; - - return 0; // No problems encountered + display_version(); + display_help(); + return 1; + case 'a': + case 'A': // Set absolute linking on + if (aflag) + warn('a', 1); + + if (i + 2 >= argc) + { + printf("Not enough arguments to -a\n"); + return 1; + } + + aflag = 1; // Set abs link flag + // Segment order is TEXT, DATA, BSS + // Text segment can be 'r', 'x' or a value + ttype = 0; + + if ((*argv[i] == 'r' || *argv[i] == 'R') && !argv[i][1]) + { + ttype = -1; // TEXT segment is relocatable + } + else if ((*argv[i] == 'x' || *argv[i] == 'X')) + { + printf("Error in text-segment address: cannot be contiguous\n"); + return 1; + } + else if ((ttype = 0), getval(argv[i], &tval)) + { + printf("Error in text-segment address: %s is not 'r', 'x' or an address.", argv[i]); + return 1; + } + + i++; + // Data segment can be 'r', 'x' or a value + dtype = 0; + + if ((*argv[i] == 'r' || *argv[i] == 'R') && !argv[i][1]) + { + dtype = -1; // DATA segment is relocatable + } + else if ((*argv[i] == 'x' || *argv[i] == 'X')) + { + dtype = -2; // DATA follows TEXT + } + else if ((dtype = 0), getval(argv[i],&dval)) + { + printf("Error in data-segment address: %s is not 'r', 'x' or an address.", argv[i]); + return 1; + } + + i++; + btype = 0; + + // BSS segment can be 'r', 'x' or a value + if ((*argv[i] == 'r' || *argv[i] == 'R') && !argv[i][1]) + { + btype = -1; // BSS segment is relocatable + } + else if ((*argv[i] == 'x' || *argv[i] == 'X')) + { + btype = -3; // BSS follows DATA + } + else if ((btype = 0), getval(argv[i],&bval)) + { + printf("Error in bss-segment address: %s is not 'r', 'x[td]', or an address.", argv[i]); + return 1; + } + + i++; + break; + case 'b': + case 'B': // Don't remove muliply defined locals + if (bflag) + warn('b', 1); + + bflag = 1; + break; + case 'c': + case 'C': // Process a command file + if (i == argc) + { + printf("Not enough arguments to -c\n"); + return 1; + } + + if (docmdfile(argv[i++])) + { + return 1; + } + + break; + case 'd': + case 'D': // Wait for "return" before exiting + if (dflag) + warn('d', 0); + + dflag = 1; + waitflag = 1; + break; + case 'e': + case 'E': // Output COFF (absolute only) + cflag = 1; + break; + case 'g': + case 'G': // Output source level debugging + printf("\'g\' flag not currently implemented\n"); + gflag = 0; + /* + if (gflag) warn('g', 1); + gflag = 1; + */ + break; + case 'i': + case 'I': // Include binary file + if (i + 2 > argc) + { + printf("Not enough arguments to -i\n"); + return 1; + } + + ifile = argv[i++]; + isym = argv[i++]; + + // handle -ii (No truncation) + if ((argv[i-3][2] == 'i') || (argv[i-3][2] == 'I')) + { + if (!cflag) + printf("warning: (-ii) COFF format output not specified\n"); + } + // handle -i (Truncation) + else + { + if (strlen(isym) > 7) + isym[7] = '\0'; + } + + // Place include files in the DATA segment only + if (dofile(ifile, DSTSEG_D, isym)) + return 1; + + break; + case 'l': + case 'L': // Add local symbols + if (lflag) + warn('l', 1); + + lflag = 1; + break; + case 'm': + case 'M': // Produce load symbol map + if (mflag) + warn('m', 1); + + mflag = 1; + break; + case 'n': + case 'N': // Output no header to .abs file + if (noheaderflag) + warn('n', 1); + + noheaderflag = 1; + break; + case 'o': + case 'O': // Specify an output file + if (oflag) + warn('o', 1); + + oflag = 1; + + if (i >= argc) + { + printf("No output filename following -o switch\n"); + return 1; + } + + if (strlen(argv[i]) > FARGSIZE - 5) + { + printf("Output file name too long (sorry!)\n"); + return 1; + } + + strcpy(ofile, argv[i++]); + break; + case 'r': + case 'R': // Section alignment size + if (rflag) + warn('r', 1); + + rflag = 1; + + switch (argv[i-1][2]) + { + case 'w': case 'W': secalign = 1; break; // Word alignment + case 'l': case 'L': secalign = 3; break; // Long alignment + case 'p': case 'P': secalign = 7; break; // Phrase alignment + case 'd': case 'D': secalign = 15; break; // Double phrase alignment + case 'q': case 'Q': secalign = 31; break; // Quad phrase alignment + default: secalign = 7; break; // Default phrase alignment + } + + break; + case 's': + case 'S': // Output only global symbols + if (sflag) + warn('s', 1); + + sflag = 1; + break; + case 'v': + case 'V': // Verbose information + if (!vflag && !versflag) + { + display_version(); + } + + vflag++; + break; + case 'w': + case 'W': // Show warnings flag + if (wflag) + warn('w', 1); + + wflag = 1; + break; + case 'z': + case 'Z': // Suppress banner flag + if (zflag) + warn('z', 1); + + zflag = 1; + break; + default: + printf("unknown option argument `%c'\n", c); + return 1; + } + } + else + { + // Not a switch, then process as a file + if (dofile(argv[i++], 0, NULL)) + return 1; + } + } + + if (!oflag && vflag) + { + strcpy(ofile, "output"); + printf("Output file is %s[.ext]\n", ofile); + } + + if (oflag && vflag) + printf("Output file is %s\n", ofile); + + if (sflag) + lflag = 0; + + // No problems encountered + return 0; } @@ -2709,8 +2804,8 @@ void display_version(void) { if (displaybanner)// && vflag) { - printf("\nReboot's Linker for Atari Jaguar\n"); - printf("Copyright (c) 199x Allan K. Pratt, 2011 Reboot\n"); + printf("\nReboot's Linker for Atari Jaguar\n"); + printf("Copyright (c) 199x Allan K. Pratt, 2014 Reboot\n"); printf("V%i.%i.%i %s (%s)\n\n", MAJOR, MINOR, PATCH, __DATE__, PLATFORM); } } @@ -2748,6 +2843,7 @@ void display_help(void) printf(" q: quad phrase (32 bytes)\n"); printf(" -s output only global symbols\n"); printf(" -v set verbose mode\n"); + printf(" -w show linker warnings\n"); printf(" -z suppress banner\n"); printf("\n"); } @@ -2767,7 +2863,7 @@ void rln_exit(void) // Wait for return key if requested if (waitflag) { - printf("\nPress the key to continue. "); + printf("\nPress the [RETURN] key to continue. "); fgets(tempbuf, 128, stdin); } @@ -2784,9 +2880,9 @@ int get_endianess(void) char * p = (char *)&i; if (p[0] == 1) - return 0; // LITTLE + return ENDIANNESS_LITTLE; - return 1; // BIG + return ENDIANNESS_BIG; } @@ -2795,16 +2891,16 @@ int get_endianess(void) // int main(int argc, char * argv[]) { - char * s = NULL; // String pointer for "getenv" - struct HREC * utemp; // Temporary hash record pointer - struct OHEADER * header; // Pointer to output header structure + char * s = NULL; // String pointer for "getenv" + struct HREC * utemp; // Temporary hash record pointer + struct OHEADER * header; // Pointer to output header structure - endian = get_endianess(); // Get processor endianess - cmdlnexec = argv[0]; // Obtain executable name + endian = get_endianess(); // Get processor endianess + cmdlnexec = argv[0]; // Obtain executable name s = getenv("RLNPATH"); - if (s) // Attempt to obtain env variable - strcpy(libdir, s); // Store it if found + if (s) // Attempt to obtain env variable + strcpy(libdir, s); // Store it if found // Parse the command line if (doargs(argc, argv)) @@ -2815,8 +2911,8 @@ int main(int argc, char * argv[]) if (!zflag && !vflag) { - display_version(); // Display version information - versflag = 1; // We've dumped the version banner + display_version(); // Display version information + versflag = 1; // We've dumped the version banner } // Process in specified files/objects @@ -2836,8 +2932,6 @@ int main(int argc, char * argv[]) // Check that there is something to link if (olist == NULL) { -// printf("No object files to link.\n\n"); -// errflag = 1; display_help(); rln_exit(); } @@ -2847,7 +2941,7 @@ int main(int argc, char * argv[]) { printf("UNRESOLVED SYMBOLS\n"); - // Don't list them if two -u's or more + // Don't list them if two -u's or more if (uflag < 2) { utemp = unresolved; @@ -2895,9 +2989,9 @@ int main(int argc, char * argv[]) printf("Absolute linking "); if (cflag) - printf("(COF)\n"); + printf("(COF)\n"); else - printf("(ABS)\n"); + printf("(ABS)\n"); } if (vflag > 1) @@ -2922,6 +3016,9 @@ int main(int argc, char * argv[]) printf("+---------+----------+----------+----------+\n\n"); } +//printf("BIG_ENDIAN = %i, LITTLE_ENDIAN = %i\n", BIG_ENDIAN, LITTLE_ENDIAN); + free(header); // Free allocated memory rln_exit(); // Perform application exit } +