]> Shamusworld >> Repos - rmac/blob - object.c
Version bump for last eight commits; cleanup of Alcyon image writing.
[rmac] / object.c
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // OBJECT.C - Writing Object Files
4 // Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilised with the kind permission of Landon Dyer
7 //
8
9 #include "object.h"
10 #include "6502.h"
11 #include "direct.h"
12 #include "error.h"
13 #include "mark.h"
14 #include "riscasm.h"
15 #include "sect.h"
16 #include "symbol.h"
17
18 //#define DEBUG_ELF
19
20 uint32_t symsize = 0;                   // Size of BSD/ELF symbol table
21 uint32_t strindx = 0x00000004;  // BSD/ELF string table index
22 uint8_t * strtable;                             // Pointer to the symbol string table
23 uint8_t * objImage;                             // Global object image pointer
24 int elfHdrNum[9] = { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
25 uint32_t extraSyms;
26
27 static uint16_t tdb_tab[] = {
28         0,                              // absolute
29         AL_TEXT,                // TEXT segment based
30         AL_DATA, 0,             // DATA segment based
31         AL_BSS                  // BSS segment based
32 };
33
34 uint32_t PRGFLAGS;      /* PRGFLAGS as defined in Atari Compendium Chapter 2
35 Definition              Bit(s)  Meaning
36 --------------- ------- --------------------------------------------------------
37 PF_FASTLOAD             0               If set, clear only the BSS area on program load,
38                                                 otherwise clear the entire heap.
39 PF_TTRAMLOAD    1               If set, the program may be loaded into alternative RAM,
40                                                 otherwise it must be loaded into standard RAM.
41 PF_TTRAMMEM             2               If set, the program's Malloc() requests may be satisfied
42                                                 from alternative RAM, otherwise they must be satisfied
43                                                 from standard RAM.
44 -                               3               Currently unused
45 See left.               4 & 5   If these bits are set to 0 (PF_PRIVATE), the processes'
46                                                 entire memory space will be considered private
47                                                 (when memory protection is enabled).If these bits are
48                                                 set to 1 (PF_GLOBAL), the processes' entire memory space
49                                                 will be readable and writable by any process (i.e.
50                                                 global). If these bits are set to 2 (PF_SUPERVISOR), the
51                                                 processes' entire memory space will only be readable and
52                                                 writable by itself and any other process in supervisor
53                                                 mode.If these bits are set to 3 (PF_READABLE), the
54                                                 processes' entire memory space will be readable by any
55                                                 application but only writable by itself.
56 -                               6-15    Currently unused
57 */
58
59
60 //
61 // Add entry to symbol table (in ALCYON mode)
62 // If 'globflag' is 1, make the symbol global
63 // If in .PRG mode, adjust symbol values for fake link
64 //
65 uint8_t * AddSymEntry(register uint8_t * buf, SYM * sym, int globflag)
66 {
67         // Copy symbol name to buffer (first 8 chars or less)
68         register uint8_t * s = sym->sname;
69         register int i;
70         uint32_t extra = 0;
71
72         for(i=0; i<8 && *s; i++)
73                 *buf++ = *s++;
74
75         while (i++ < 8)
76                 *buf++ = '\0';
77
78         register uint16_t w1 = sym->sattr;
79         register uint16_t w = AL_DEFINED | tdb_tab[w1 & TDB];
80
81         if (prg_flag == 3)
82         {
83                 // Extended symbol - Check to see if symbol is larger than 8 characters
84                 // and write an extra 14 characters where the next symbol would be.
85                 // Modify the flag word for this
86                 if (*s)
87                 {
88                         //printf("%s '%i' - will write extended symbol\n", sym->sname,s[0]);
89                         uint8_t *buf2 = buf + 6;
90
91                         for(i=8; i<8+14 && *s; i++)
92                                 *buf2++ = *s++;
93
94                         while (i++ < 8 + 14)
95                                 *buf2++ = '\0';
96
97                         symsize += 14;
98                         w |= 0x48;
99                         extra = 14;
100                 }
101         }
102
103         //
104         // Construct and deposit flag word
105         //
106         // o  all symbols are AL_DEFINED
107         // o  install T/D/B/A base
108         //   o  install 'equated'
109         //   o  commons (COMMON) are AL_EXTERN, but not BSS
110         // o  exports (DEFINED) are AL_GLOBAL
111         // o  imports (~DEFINED) are AL_EXTERN
112         //
113         if (w1 & EQUATED)               // Equated
114                 w |= AL_EQUATED;
115
116         if (w1 & COMMON)
117         {
118                 w |= AL_EXTERN | AL_GLOBAL;     // Common symbol
119                 w &= ~AL_BSS;           // They're not BSS in Alcyon object files
120         }
121         else if (w1 & DEFINED)
122         {
123                 if (globflag)           // Export the symbol
124                         w |= AL_GLOBAL;
125         }
126         else
127                 w |= AL_EXTERN;         // Imported symbol
128
129         SETBE16(buf, 0, w);
130         buf += 2;
131         register uint32_t z = (uint32_t)sym->svalue;
132
133         if (prg_flag)                   // Relocate value in .PRG segment
134         {
135                 w1 &= DATA | BSS;
136
137                 if (w1)
138                         z += sect[TEXT].sloc;
139
140                 if (w1 & BSS)
141                         z += sect[DATA].sloc;
142         }
143
144         SETBE32(buf, 0, z);             // Deposit symbol value
145         buf += 4;
146
147         symsize += 14;
148         buf += extra;
149
150         return buf;
151 }
152
153
154 //
155 // Add an entry to the BSD symbol table
156 //
157 uint8_t * AddBSDSymEntry(uint8_t * buf, SYM * sym, int globflag)
158 {
159         chptr = buf;                                            // Point to buffer for depositing longs
160         D_long(strindx);                                        // Deposit the symbol string index
161
162         uint16_t w1 = sym->sattr;                       // Obtain symbol attributes
163         uint32_t z = 0;                                         // Initialize resulting symbol flags
164
165         if (w1 & EQUATED)
166         {
167                 z = 0x02000000;                                 // Set equated flag
168         }
169         else
170         {
171                 switch (w1 & TDB)
172                 {
173                 case TEXT: z = 0x04000000; break;       // Set TEXT segment flag
174                 case DATA: z = 0x06000000; break;       // Set DATA segment flag
175                 case BSS : z = 0x08000000; break;       // Set BSS segment flag
176                 }
177         }
178
179         if (globflag)
180                 z |= 0x01000000;                                // Set global flag if requested
181
182         D_long(z);                                                      // Deposit symbol attribute
183         z = sym->svalue;                                        // Obtain symbol value
184
185         if (w1 & (DATA | BSS))
186                 z += sect[TEXT].sloc;                   // If DATA or BSS add TEXT segment size
187
188         if (w1 & BSS)
189                 z += sect[DATA].sloc;                   // If BSS add DATA segment size
190
191         D_long(z);                                                      // Deposit symbol value
192         strcpy(strtable + strindx, sym->sname);
193         strindx += strlen(sym->sname) + 1;      // Incr string index incl null terminate
194         buf += 12;                                                      // Increment buffer to next record
195         symsize += 12;                                          // Increment symbol table size
196
197         return buf;
198 }
199
200
201 //
202 // Add entry to ELF symbol table; if `globflag' is 1, make the symbol global
203 //
204 uint8_t * AddELFSymEntry(uint8_t * buf, SYM * sym, int globflag)
205 {
206         chptr = buf;
207         ch_size = 0;
208         D_long(strindx);                // st_name
209         D_long(sym->svalue);    // st_value
210         D_long(0);                              // st_size
211         uint8_t st_info = 0;
212
213         register WORD w1 = sym->sattr;
214
215         if (w1 & COMMON)
216         {
217                 //w |= AL_EXTERN | AL_GLOBAL;   // common symbol
218                 //w &= ~AL_BSS;         // they're not BSS in Alcyon object files
219         }
220         else if (w1 & DEFINED)
221         {
222                 if (globflag)           // Export the symbol
223                         st_info |= 16;   //STB_GLOBAL (1<<4)
224         }
225         else if (w1 & (GLOBAL | REFERENCED))
226                 st_info |= 16;
227
228         D_byte(st_info);
229         D_byte(0);                              // st_other
230
231         uint16_t st_shndx = 0xFFF1;     // Assume absolute (equated) number
232
233         if (w1 & TEXT)
234                 st_shndx = elfHdrNum[ES_TEXT];
235         else if (w1 & DATA)
236                 st_shndx = elfHdrNum[ES_DATA];
237         else if (w1 & BSS)
238                 st_shndx = elfHdrNum[ES_BSS];
239         else if (globflag)
240                 st_shndx = 0;           // Global, not absolute
241
242         D_word(st_shndx);
243
244         strcpy(strtable + strindx, sym->sname);
245         strindx += strlen(sym->sname) + 1;      // Incr string index incl null terminate
246         symsize += 0x10;                                        // Increment symbol table size
247
248         return buf + 0x10;
249 }
250
251
252 //
253 // Helper function for ELF output
254 //
255 int DepositELFSectionHeader(uint8_t * ptr, uint32_t name, uint32_t type, uint32_t flags, uint32_t addr, uint32_t offset, uint32_t size, uint32_t link, uint32_t info, uint32_t addralign, uint32_t entsize)
256 {
257         chptr = ptr;
258         ch_size = 0;
259         D_long(name);
260         D_long(type);
261         D_long(flags);
262         D_long(addr);
263         D_long(offset);
264         D_long(size);
265         D_long(link);
266         D_long(info);
267         D_long(addralign);
268         D_long(entsize);
269         return 40;
270 }
271
272
273 //
274 // Deposit an entry in the Section Header string table
275 //
276 uint32_t DepositELFSHSTEntry(uint8_t ** pTable, const uint8_t * s)
277 {
278 #ifdef DEBUG_ELF
279 printf("DepositELFSHSTEntry: s = \"%s\"\n", s);
280 #endif
281         uint32_t strSize = strlen(s);
282         strcpy(*pTable, s);
283         *pTable += strSize + 1;
284         return strSize + 1;
285 }
286
287
288 //
289 // Deposit a symbol table entry in the ELF Symbol Table
290 //
291 uint32_t DepositELFSymbol(uint8_t * ptr, uint32_t name, uint32_t addr, uint32_t size, uint8_t info, uint8_t other, uint16_t shndx)
292 {
293         chptr = ptr;
294         ch_size = 0;
295         D_long(name);
296         D_long(addr);
297         D_long(size);
298         *chptr++ = info;
299         *chptr++ = other;
300         D_word(shndx);
301         return 16;
302 }
303
304
305 //
306 // Write an object file to the passed in file descriptor
307 // N.B.: Return value is ignored...
308 //
309 int WriteObject(int fd)
310 {
311         LONG t;                                 // Scratch long
312         LONG tds;                               // TEXT & DATA segment size
313         int i;                                  // Temporary int
314         CHUNK * cp;                             // Chunk (for gather)
315         uint8_t * buf;                  // Scratch area
316         uint8_t * p;                    // Temporary ptr
317         LONG trsize, drsize;    // Size of relocations
318         long unused;                    // For supressing 'write' warnings
319
320         if (verb_flag)
321         {
322                 printf("TEXT segment: %d bytes\n", sect[TEXT].sloc);
323                 printf("DATA segment: %d bytes\n", sect[DATA].sloc);
324                 printf("BSS  segment: %d bytes\n", sect[BSS].sloc);
325         }
326
327         // Write requested object file...
328         if ((obj_format == BSD) || ((obj_format == ALCYON) && (prg_flag == 0)))
329     {
330                 // Force BSD format (if it was ALCYON format)
331                 obj_format = BSD;
332
333                 if (verb_flag)
334                 {
335                         printf("Total       : %d bytes\n", sect[TEXT].sloc + sect[DATA].sloc + sect[BSS].sloc);
336                 }
337
338                 sy_assign(NULL, NULL);                                          // Assign index numbers to the symbols
339                 tds = sect[TEXT].sloc + sect[DATA].sloc;        // Get size of TEXT and DATA segment
340                 buf = malloc(0x800000);                                         // Allocate 8MB object file image memory
341
342                 if (buf == NULL)
343                 {
344                         error("cannot allocate object file memory (in BSD mode)");
345                         return ERROR;
346                 }
347
348                 memset(buf, 0, 0x800000);               // Clear allocated memory
349                 objImage = buf;                                 // Set global object image pointer
350                 strtable = malloc(0x200000);    // Allocate 2MB string table buffer
351
352                 if (strtable == NULL)
353                 {
354                         error("cannot allocate string table memory (in BSD mode)");
355                         return ERROR;
356                 }
357
358                 memset(strtable, 0, 0x200000);  // Clear allocated memory
359
360                 // Build object file header
361                 chptr = buf;                                    // Base of header (for D_foo macros)
362                 D_long(0x00000107);                             // Magic number
363                 D_long(sect[TEXT].sloc);                // TEXT size
364                 D_long(sect[DATA].sloc);                // DATA size
365                 D_long(sect[BSS].sloc);                 // BSS size
366                 D_long(0x00000000);                             // Symbol size
367                 D_long(0x00000000);                             // First entry (0L)
368                 D_long(0x00000000);                             // TEXT relocation size
369                 D_long(0x00000000);                             // DATA relocation size
370
371                 // Construct TEXT and DATA segments (without relocation changes)
372                 p = buf + BSDHDRSIZE;
373
374                 for(i=TEXT; i<=DATA; i++)
375                 {
376                         for(cp=sect[i].sfcode; cp!=NULL; cp=cp->chnext)
377                         {
378                                 memcpy(p, cp->chptr, cp->ch_size);
379                                 p += cp->ch_size;
380                         }
381                 }
382
383                 // Do relocation tables (and make changes to segment data)
384                 p = buf + BSDHDRSIZE + tds;             // Move obj image ptr to reloc info
385                 trsize = MarkBSDImage(p, tds, sect[TEXT].sloc, TEXT);// Do TEXT relocation table
386                 chptr = buf + 0x18;                             // Point to relocation hdr entry
387                 D_long(trsize);                                 // Write the relocation table size
388
389                 // Move obj image ptr to reloc info
390                 p = buf + BSDHDRSIZE + tds + trsize;
391                 drsize = MarkBSDImage(p, tds, sect[TEXT].sloc, DATA);// Do DATA relocation table
392                 chptr = buf + 0x1C;                             // Point to relocation hdr entry
393                 D_long(drsize);                                 // Write the relocation table size
394
395                 // Point to start of symbol table
396                 p = buf + BSDHDRSIZE + tds + trsize + drsize;
397                 sy_assign(p, AddBSDSymEntry);   // Build symbol and string tables
398                 chptr = buf + 0x10;                             // Point to sym table size hdr entry
399                 D_long(symsize);                                // Write the symbol table size
400
401                 // Point to string table
402                 p = buf + BSDHDRSIZE + tds + trsize + drsize + symsize;
403                 memcpy(p, strtable, strindx);   // Copy string table to object image
404                 chptr = p;                                              // Point to string table size long
405                 D_long(strindx);                                // Write string table size
406
407                 // Write the BSD object file from the object image buffer
408                 unused = write(fd, buf, BSDHDRSIZE + tds + trsize + drsize + symsize + strindx + 4);
409
410                 if (verb_flag)
411                 {
412                         printf("TextRel size: %d bytes\n", trsize);
413                         printf("DataRel size: %d bytes\n", drsize);
414                 }
415
416                 if (buf)
417                 {
418                         free(strtable);                         // Free allocated memory
419                         free(buf);                                      // Free allocated memory
420                 }
421         }
422         else if (obj_format == ALCYON)
423         {
424                 if (verb_flag)
425                 {
426                         if (prg_flag)
427                                 printf("TOS header  : 28 bytes\n");
428
429                         printf("Total       : %d bytes\n", sect[TEXT].sloc + sect[DATA].sloc + sect[BSS].sloc + (prg_flag ? 28 : 0));
430                 }
431
432                 // Assign index numbers to the symbols, get # of symbols (we assume
433                 // that all symbols can potentially be extended, hence the x28)
434                 uint32_t symbolMaxSize = sy_assign(NULL, NULL) * 28;
435
436                 // Alloc memory for header + text + data, symbol and relocation
437                 // information construction.
438                 tds = sect[TEXT].sloc + sect[DATA].sloc;
439                 buf = malloc(HDRSIZE + tds + symbolMaxSize);
440
441                 // Build object file header just before the text+data image
442                 chptr = buf;                            // -> base of header
443                 D_word(0x601A);                         // 00 - magic number
444                 D_long(sect[TEXT].sloc);        // 02 - TEXT size
445                 D_long(sect[DATA].sloc);        // 06 - DATA size
446                 D_long(sect[BSS].sloc);         // 0A - BSS size
447                 D_long(0);                                      // 0E - symbol table size (filled later)
448                 D_long(0);                                      // 12 - stack size (unused)
449                 D_long(PRGFLAGS);                       // 16 - PRGFLAGS
450                 D_word(0);                                      // 1A - relocation information exists
451
452                 // Construct text and data segments; fixup relocatable longs in .PRG
453                 // mode; finally write the header + text + data
454                 p = buf + HDRSIZE;
455
456                 for(i=TEXT; i<=DATA; i++)
457                 {
458                         for(cp=sect[i].sfcode; cp!=NULL; cp=cp->chnext)
459                         {
460                                 memcpy(p, cp->chptr, cp->ch_size);
461                                 p += cp->ch_size;
462                         }
463                 }
464
465                 // Do a first pass on the Alcyon image, if in PRG mode
466                 if (prg_flag)
467                         MarkImage(buf + HDRSIZE, tds, sect[TEXT].sloc, 0);
468
469                 // Construct symbol table and update the header entry, if necessary
470                 if (prg_flag > 1)
471                 {
472                         // sy_assign with AddSymEntry updates symsize (stays 0 otherwise)
473                         sy_assign(buf + HDRSIZE + tds, AddSymEntry);
474                         chptr = buf + 0x0E;                     // Point to symbol table size entry
475                         D_long(symsize);
476                 }
477
478                 // Write out the header + text & data + symbol table (if any)
479                 unused = write(fd, buf, HDRSIZE + tds + symsize);
480
481                 // Construct and write relocation information; the size of it changes if
482                 // we're writing a RELMODed executable. N.B.: Destroys buffer!
483                 tds = MarkImage(buf, tds, sect[TEXT].sloc, 1);
484                 unused = write(fd, buf, tds);
485         }
486         else if (obj_format == ELF)
487         {
488                 // Allocate 6MB object file image memory
489                 buf = malloc(0x600000);
490
491                 if (buf == NULL)
492                 {
493                         error("cannot allocate object file memory (in ELF mode)");
494                         return ERROR;
495                 }
496
497                 memset(buf, 0, 0x600000);
498                 objImage = buf;                                 // Set global object image pointer
499                 strtable = malloc(0x200000);    // Allocate 2MB string table buffer
500
501                 if (strtable == NULL)
502                 {
503                         error("cannot allocate string table memory (in ELF mode)");
504                         return ERROR;
505                 }
506
507                 memset(strtable, 0, 0x200000);
508
509                 // This is pretty much a first pass at this shite, so there's room for
510                 // improvement. :-P
511                 uint8_t headers[4 * 10 * 10];   // (DWORD * 10) = 1 hdr, 10 entries
512                 int headerSize = 0;
513                 uint8_t shstrtab[128];                  // The section header string table proper
514                 uint32_t shstTab[9];                    // Index into shstrtab for strings
515                 uint8_t * shstPtr = shstrtab;   // Temp pointer
516                 uint32_t shstSize = 0;
517                 int numEntries = 4;                             // There are always at *least* 4 sections
518                 int shstIndex = 1;                              // The section where the shstrtab lives
519                 int elfSize = 0;                                // Size of the ELF object
520                 // Clear the header numbers
521                 memset(elfHdrNum, 0, 9 * sizeof(int));
522
523                 //
524                 // First step is to see what sections need to be made; we also
525                 // construct the section header string table here at the same time.
526                 //
527                 shstTab[ES_NULL] = shstSize;
528                 shstSize += DepositELFSHSTEntry(&shstPtr, "");
529                 shstTab[ES_SHSTRTAB] = shstSize;
530                 shstSize += DepositELFSHSTEntry(&shstPtr, ".shstrtab");
531                 shstTab[ES_SYMTAB] = shstSize;
532                 shstSize += DepositELFSHSTEntry(&shstPtr, ".symtab");
533                 shstTab[ES_STRTAB] = shstSize;
534                 shstSize += DepositELFSHSTEntry(&shstPtr, ".strtab");
535
536                 if (sect[TEXT].sloc > 0)
537                 {
538                         elfHdrNum[ES_TEXT] = shstIndex;
539                         shstTab[ES_TEXT] = shstSize;
540                         shstSize += DepositELFSHSTEntry(&shstPtr, ".text");
541                         shstIndex++;
542                         numEntries++;
543                 }
544
545                 if (sect[DATA].sloc > 0)
546                 {
547                         elfHdrNum[ES_DATA] = shstIndex;
548                         shstTab[ES_DATA] = shstSize;
549                         shstSize += DepositELFSHSTEntry(&shstPtr, ".data");
550                         shstIndex++;
551                         numEntries++;
552                 }
553
554                 if (sect[BSS].sloc > 0)
555                 {
556                         elfHdrNum[ES_BSS] = shstIndex;
557                         shstTab[ES_BSS] = shstSize;
558                         shstSize += DepositELFSHSTEntry(&shstPtr, ".bss");
559                         shstIndex++;
560                         numEntries++;
561                 }
562
563                 if (sect[TEXT].relocs > 0)
564                 {
565                         elfHdrNum[ES_RELATEXT] = shstIndex;
566                         shstTab[ES_RELATEXT] = shstSize;
567                         shstSize += DepositELFSHSTEntry(&shstPtr, ".relaTEXT");
568                         shstIndex++;
569                         numEntries++;
570                 }
571
572                 if (sect[DATA].relocs > 0)
573                 {
574                         elfHdrNum[ES_RELADATA] = shstIndex;
575                         shstTab[ES_RELADATA] = shstSize;
576                         shstSize += DepositELFSHSTEntry(&shstPtr, ".relaDATA");
577                         shstIndex++;
578                         numEntries++;
579                 }
580
581                 elfHdrNum[ES_SHSTRTAB] = shstIndex + 0;
582                 elfHdrNum[ES_SYMTAB]   = shstIndex + 1;
583                 elfHdrNum[ES_STRTAB]   = shstIndex + 2;
584
585 #ifdef DEBUG_ELF
586 printf("ELF shstrtab size: %i bytes. Entries:\n", shstSize);
587 for(int j=0; j<i; j++)
588         printf("\"%s\"\n", shstrtab + shstTab[j]);
589 #endif
590
591                 // Construct ELF header
592                 // If you want to make any sense out of this you'd better take a look
593                 // at Executable and Linkable Format on Wikipedia.
594                 chptr = buf;
595                 D_long(0x7F454C46); // 00 - "<7F>ELF" Magic Number
596                 D_byte(0x01); // 04 - 32 vs 64 (1 = 32, 2 = 64)
597                 D_byte(0x02); // 05 - Endianness (1 = LE, 2 = BE)
598                 D_byte(0x01); // 06 - Original version of ELF (set to 1)
599                 D_byte(0x00); // 07 - Target OS ABI (0 = System V)
600                 D_byte(0x00); // 08 - ABI Extra (unneeded)
601                 D_byte(0x00); // 09 - Pad bytes
602                 D_word(0x00);
603                 D_long(0x00);
604                 D_word(0x01); // 10 - ELF Type (1 = relocatable)
605                 D_word(0x04); // 12 - Architecture (EM_68K = 4, Motorola M68K family)
606                 D_long(0x01); // 14 - Version (1 = original ELF)
607                 D_long(0x00); // 18 - Entry point virtual address (unneeded)
608                 D_long(0x00); // 1C - Program header table offset (unneeded)
609                 D_long(0x00); // 20 - Section header table offset (to be determined)
610
611                 if (0)
612                 {
613                         // Specifically for 68000 CPU
614                         D_long(0x01000000) // 24 - Processor-specific flags - EF_M68K_M68000
615                 }
616                 else
617                 {
618                         // CPUs other than 68000 (68020...)
619                         D_long(0); // 24 - Processor-specific flags (ISA dependent)
620                 }
621
622                 D_word(0x0034); // 28 - ELF header size in bytes
623                 D_word(0); // 2A - Program header table entry size
624                 D_word(0); // 2C - Program header table entry count
625                 D_word(0x0028); // 2E - Section header entry size - 40 bytes for ELF32
626                 D_word(numEntries); // 30 - Section header table entry count
627                 D_word(shstIndex); // 32 - Section header string table index
628
629                 elfSize += 0x34;
630
631                 // Deposit section header 0 (NULL)
632                 headerSize += DepositELFSectionHeader(headers + headerSize, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
633
634                 int textLoc = elfSize;
635
636                 // Construct TEXT section, if any
637                 if (sect[TEXT].sloc > 0)
638                 {
639                         headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_TEXT], 1, 6, 0, elfSize, sect[TEXT].sloc, 0, 0, largestAlign[0], 0);
640
641                         for(CHUNK * cp=sect[TEXT].sfcode; cp!=NULL; cp=cp->chnext)
642                         {
643                                 memcpy(buf + elfSize, cp->chptr, cp->ch_size);
644                                 elfSize += cp->ch_size;
645                         }
646
647                         // Pad for next section (LONG boundary)
648                         elfSize = (elfSize + 3) & ~3;
649                 }
650
651                 int dataLoc = elfSize;
652
653                 // Construct DATA section, if any
654                 if (sect[DATA].sloc > 0)
655                 {
656                         headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_DATA], 1, 3, 0, elfSize, sect[DATA].sloc, 0, 0, largestAlign[1], 0);
657
658                         for(CHUNK * cp=sect[DATA].sfcode; cp!=NULL; cp=cp->chnext)
659                         {
660                                 memcpy(buf + elfSize, cp->chptr, cp->ch_size);
661                                 elfSize += cp->ch_size;
662                         }
663
664                         // Pad for next section (LONG boundary)
665                         elfSize = (elfSize + 3) & ~3;
666                 }
667
668                 // Construct BSS section, if any
669                 if (sect[BSS].sloc > 0)
670                 {
671                         headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_BSS], 8, 3, 0, elfSize, sect[BSS].sloc, 0, 0, largestAlign[2], 0);
672                 }
673
674                 int textrelLoc = headerSize;
675
676                 // Add headers for relocated sections, if any...
677                 if (sect[TEXT].relocs > 0)
678                         headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_RELATEXT], 4, 0x00, 0, 0, 0, elfHdrNum[ES_SYMTAB], elfHdrNum[ES_TEXT], 4, 0x0C);
679
680                 int datarelLoc = headerSize;
681
682                 if (sect[DATA].relocs > 0)
683                         headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_RELADATA], 4, 0x40, 0, 0, 0, elfHdrNum[ES_SYMTAB], elfHdrNum[ES_DATA], 4, 0x0C);
684
685                 // Add shstrtab
686                 headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_SHSTRTAB], 3, 0, 0, elfSize, shstSize, 0, 0, 1, 0);
687                 memcpy(buf + elfSize, shstrtab, shstSize);
688                 elfSize += shstSize;
689                 // Pad for next section (LONG boundary)
690                 elfSize = (elfSize + 3) & ~3;
691
692                 // Add section headers
693                 int headerLoc = elfSize;
694                 chptr = buf + 0x20;             // Set section header offset in ELF header
695                 D_long(headerLoc);
696                 elfSize += (4 * 10) * numEntries;
697
698                 // Add symbol table & string table
699                 int symtabLoc = elfSize;
700                 strindx = 0;    // Make sure we start at the beginning...
701                 elfSize += DepositELFSymbol(buf + elfSize, 0, 0, 0, 0, 0, 0);
702                 *strtable = 0;
703                 strindx++;
704                 extraSyms = 1;
705
706                 if (sect[TEXT].sloc > 0)
707                 {
708                         elfSize += DepositELFSymbol(buf + elfSize, 0, 0, 0, 3, 0, elfHdrNum[ES_TEXT]);
709                         extraSyms++;
710                 }
711
712                 if (sect[DATA].sloc > 0)
713                 {
714                         elfSize += DepositELFSymbol(buf + elfSize, 0, 0, 0, 3, 0, elfHdrNum[ES_DATA]);
715                         extraSyms++;
716                 }
717
718                 if (sect[BSS].sloc > 0)
719                 {
720                         elfSize += DepositELFSymbol(buf + elfSize, 0, 0, 0, 3, 0, elfHdrNum[ES_BSS]);
721                         extraSyms++;
722                 }
723
724                 int numSymbols = sy_assign_ELF(buf + elfSize, AddELFSymEntry);
725                 elfSize += numSymbols * 0x10;
726
727                 // String table
728                 int strtabLoc = elfSize;
729                 memcpy(buf + elfSize, strtable, strindx);
730                 elfSize += strindx;
731                 // Pad for next section (LONG boundary)
732                 elfSize = (elfSize + 3) & ~3;
733
734                 headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_SYMTAB], 2, 0, 0, symtabLoc, (numSymbols + extraSyms) * 0x10, shstIndex + 2, firstglobal + extraSyms, 4, 0x10);
735                 headerSize += DepositELFSectionHeader(headers + headerSize, shstTab[ES_STRTAB], 3, 0, 0, strtabLoc, strindx, 0, 0, 1, 0);
736
737                 // Add relocation tables, if any (no need to align after these, they're
738                 // already on DWORD boundaries)
739                 if (sect[TEXT].relocs > 0)
740                 {
741                         uint32_t textrelSize = CreateELFRelocationRecord(buf + elfSize, buf + textLoc, TEXT);
742                         // Deposit offset & size, now that we know them
743                         chptr = headers + textrelLoc + 0x10;
744                         D_long(elfSize);
745                         D_long(textrelSize);
746                         elfSize += textrelSize;
747                 }
748
749                 if (sect[DATA].relocs > 0)
750                 {
751                         uint32_t datarelSize = CreateELFRelocationRecord(buf + elfSize, buf + dataLoc, DATA);
752                         // Deposit offset & size, now that we know them
753                         chptr = headers + datarelLoc + 0x10;
754                         D_long(elfSize);
755                         D_long(datarelSize);
756                         elfSize += datarelSize;
757                 }
758
759                 // Copy headers into the object
760                 memcpy(buf + headerLoc, headers, headerSize);
761
762                 // Finally, write out the object
763                 unused = write(fd, buf, elfSize);
764
765                 // Free allocated memory
766                 if (buf)
767                 {
768                         free(buf);
769                         free(strtable);
770                 }
771         }
772         else if (obj_format == XEX)
773         {
774                 // Just write the object file
775                 m6502obj(fd);
776         }
777
778         return 0;
779 }
780