]> git.sur5r.net Git - cc65/blob - src/ld65/o65.c
a630cc0352f3a429b8b77e2c8776c20d78a73fdf
[cc65] / src / ld65 / o65.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                   o65.c                                   */
4 /*                                                                           */
5 /*                  Module to handle the o65 binary format                   */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1999-2000 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <time.h>
40
41 /* common */
42 #include "version.h"
43 #include "xmalloc.h"
44
45 /* ld65 */
46 #include "error.h"
47 #include "exports.h"
48 #include "expr.h"
49 #include "fileio.h"
50 #include "global.h"
51 #include "o65.h"
52
53
54
55 /*****************************************************************************/
56 /*                                   Data                                    */
57 /*****************************************************************************/
58
59
60
61 /* Header mode bits */
62 #define MF_SIZE_32BIT   0x2000          /* All size words are 32bit */
63 #define MF_CPU_816      0x8000          /* Executable is for 65816 */
64
65 /* The four o65 segment types. Note: These values are identical to the values
66  * needed for the segmentID in the o65 spec.
67  */
68 #define O65SEG_UNDEF    0x00
69 #define O65SEG_ABS      0x01
70 #define O65SEG_TEXT     0x02
71 #define O65SEG_DATA     0x03
72 #define O65SEG_BSS      0x04
73 #define O65SEG_ZP       0x05
74
75 /* Relocation type codes for the o65 format */
76 #define O65RELOC_WORD   0x80
77 #define O65RELOC_HIGH   0x40
78 #define O65RELOC_LOW    0x20
79 #define O65RELOC_SEGADR 0xc0
80 #define O65RELOC_SEG    0xa0
81
82 /* O65 executable file header */
83 typedef struct O65Header_ O65Header;
84 struct O65Header_ {
85     unsigned        Version;            /* Version number for o65 format */
86     unsigned        Mode;               /* Mode word */
87     unsigned long   TextBase;           /* Base address of text segment */
88     unsigned long   TextSize;           /* Size of text segment */
89     unsigned long   DataBase;           /* Base of data segment */
90     unsigned long   DataSize;           /* Size of data segment */
91     unsigned long   BssBase;            /* Base of bss segment */
92     unsigned long   BssSize;            /* Size of bss segment */
93     unsigned long   ZPBase;             /* Base of zeropage segment */
94     unsigned long   ZPSize;             /* Size of zeropage segment */
95     unsigned long   StackSize;          /* Requested stack size */
96 };
97
98 /* An o65 option */
99 typedef struct O65Option_ O65Option;
100 struct O65Option_ {
101     O65Option*      Next;               /* Next in option list */
102     unsigned char   Type;               /* Type of option */
103     unsigned char   Len;                /* Data length */
104     unsigned char   Data [1];           /* Data, dynamically allocated */
105 };
106
107 /* A o65 relocation table */
108 #define RELOC_BLOCKSIZE 4096
109 typedef struct O65RelocTab_ O65RelocTab;
110 struct O65RelocTab_ {
111     unsigned        Size;               /* Size of the table */
112     unsigned        Fill;               /* Amount used */
113     unsigned char*  Buf;                /* Buffer, dynamically allocated */
114 };
115
116 /* Structure describing the format */
117 struct O65Desc_ {
118     O65Header       Header;             /* File header */
119     O65Option*      Options;            /* List of file options */
120     ExtSymTab*      Exports;            /* Table with exported symbols */
121     ExtSymTab*      Imports;            /* Table with imported symbols */
122     unsigned        Undef;              /* Count of undefined symbols */
123     FILE*           F;                  /* The file we're writing to */
124     char*           Filename;           /* Name of the output file */
125     O65RelocTab*    TextReloc;          /* Relocation table for text segment */
126     O65RelocTab*    DataReloc;          /* Relocation table for data segment */
127
128     unsigned        TextCount;          /* Number of segments assigned to .text */
129     SegDesc**       TextSeg;            /* Array of text segments */
130     unsigned        DataCount;          /* Number of segments assigned to .data */
131     SegDesc**       DataSeg;            /* Array of data segments */
132     unsigned        BssCount;           /* Number of segments assigned to .bss */
133     SegDesc**       BssSeg;             /* Array of bss segments */
134     unsigned        ZPCount;            /* Number of segments assigned to .zp */
135     SegDesc**       ZPSeg;              /* Array of zp segments */
136
137     /* Temporary data for writing segments */
138     unsigned long   SegSize;
139     O65RelocTab*    CurReloc;
140     long            LastOffs;
141 };
142
143 /* Structure for parsing expression trees */
144 typedef struct ExprDesc_ ExprDesc;
145 struct ExprDesc_ {
146     O65Desc*        D;                  /* File format descriptor */
147     long            Val;                /* The offset value */
148     int             TooComplex;         /* Expression too complex */
149     Section*        SegRef;             /* Section referenced if any */
150     ExtSym*         ExtRef;             /* External reference if any */
151 };
152
153
154
155 /*****************************************************************************/
156 /*                             Helper functions                              */
157 /*****************************************************************************/
158
159
160
161 static void WriteSize (const O65Desc* D, unsigned long Val)
162 /* Write a "size" word to the file */
163 {
164     if (D->Header.Mode & MF_SIZE_32BIT) {
165         Write32 (D->F, Val);
166     } else {
167         Write16 (D->F, (unsigned) Val);
168     }
169 }
170
171
172
173 static unsigned O65SegType (const SegDesc* S)
174 /* Map our own segment types into something o65 compatible */
175 {
176     /* Check the segment type. Readonly segments are assign to the o65
177      * text segment, writeable segments that contain data are assigned
178      * to data, bss and zp segments are handled respectively.
179      * Beware: Zeropage segments have the SF_BSS flag set, so be sure
180      * to check SF_ZP first.
181      */
182     if (S->Flags & SF_RO) {
183         return O65SEG_TEXT;
184     } else if (S->Flags & SF_ZP) {
185         return O65SEG_ZP;
186     } else if (S->Flags & SF_BSS) {
187         return O65SEG_BSS;
188     } else {
189         return O65SEG_DATA;
190     }
191 }
192
193
194
195 /*****************************************************************************/
196 /*                            Expression handling                            */
197 /*****************************************************************************/
198
199
200
201 static void O65ParseExpr (ExprNode* Expr, ExprDesc* D, int Sign)
202 /* Extract and evaluate all constant factors in an subtree that has only
203  * additions and subtractions. If anything other than additions and
204  * subtractions are found, D->TooComplex is set to true.
205  */
206 {
207     Export* E;
208
209     switch (Expr->Op) {
210
211         case EXPR_LITERAL:
212             if (Sign < 0) {
213                 D->Val -= Expr->V.Val;
214             } else {
215                 D->Val += Expr->V.Val;
216             }
217             break;
218
219         case EXPR_SYMBOL:
220             /* Get the referenced Export */
221             E = GetExprExport (Expr);
222             /* If this export has a mark set, we've already encountered it.
223              * This means that the export is used to define it's own value,
224              * which in turn means, that we have a circular reference.
225              */
226             if (ExportHasMark (E)) {
227                 CircularRefError (E);
228             } else if (E->Expr == 0) {
229                 /* Dummy export, must be an o65 imported symbol */
230                 ExtSym* S = O65GetImport (D->D, E->Name);
231                 CHECK (S != 0);
232                 if (D->ExtRef) {
233                     /* We cannot have more than one external reference in o65 */
234                     D->TooComplex = 1;
235                 } else {
236                     /* Remember the external reference */
237                     D->ExtRef = S;
238                 }
239             } else {
240                 MarkExport (E);
241                 O65ParseExpr (E->Expr, D, Sign);
242                 UnmarkExport (E);
243             }
244             break;
245
246         case EXPR_SEGMENT:
247             if (D->SegRef) {
248                 /* We cannot handle more than one segment reference in o65 */
249                 D->TooComplex = 1;
250             } else {
251                 /* Remember the segment reference */
252                 D->SegRef = GetExprSection (Expr);
253             }
254             break;
255
256         case EXPR_PLUS:
257             O65ParseExpr (Expr->Left, D, Sign);
258             O65ParseExpr (Expr->Right, D, Sign);
259             break;
260
261         case EXPR_MINUS:
262             O65ParseExpr (Expr->Left, D, Sign);
263             O65ParseExpr (Expr->Right, D, -Sign);
264             break;
265
266         default:
267             /* Expression contains illegal operators */
268             D->TooComplex = 1;
269             break;
270
271     }
272 }
273
274
275
276 /*****************************************************************************/
277 /*                             Relocation tables                             */
278 /*****************************************************************************/
279
280
281
282 static O65RelocTab* NewO65RelocTab (void)
283 /* Create a new relocation table */
284 {
285     /* Allocate a new structure */
286     O65RelocTab* R = xmalloc (sizeof (O65RelocTab));
287
288     /* Initialize the data */
289     R->Size = RELOC_BLOCKSIZE;
290     R->Fill = 0;
291     R->Buf  = xmalloc (RELOC_BLOCKSIZE);
292
293     /* Return the created struct */
294     return R;
295 }
296
297
298
299 static void FreeO65RelocTab (O65RelocTab* R)
300 /* Free a relocation table */
301 {
302     xfree (R->Buf);
303     xfree (R);
304 }
305
306
307
308 static void O65RelocPutByte (O65RelocTab* R, unsigned B)
309 /* Put the byte into the relocation table */
310 {
311     /* Do we have enough space in the buffer? */
312     if (R->Fill == R->Size) {
313         /* We need to grow the buffer */
314         unsigned char* NewBuf = xmalloc (R->Size + RELOC_BLOCKSIZE);
315         memcpy (NewBuf, R->Buf, R->Size);
316         xfree (R->Buf);
317         R->Buf = NewBuf;
318     }
319
320     /* Put the byte into the buffer */
321     R->Buf [R->Fill++] = (unsigned char) B;
322 }
323
324
325
326 static void O65RelocPutWord (O65RelocTab* R, unsigned W)
327 /* Put a word into the relocation table */
328 {
329     O65RelocPutByte (R, W);
330     O65RelocPutByte (R, W >> 8);
331 }
332
333
334
335 static void O65WriteReloc (O65RelocTab* R, FILE* F)
336 /* Write the relocation table to the given file */
337 {
338     WriteData (F, R->Buf, R->Fill);
339 }
340
341
342
343 /*****************************************************************************/
344 /*                              Option handling                              */
345 /*****************************************************************************/
346
347
348
349 static O65Option* NewO65Option (unsigned Type, const void* Data, unsigned DataLen)
350 /* Allocate and initialize a new option struct */
351 {
352     O65Option* O;
353
354     /* Check the length */
355     CHECK (DataLen <= 253);
356
357     /* Allocate memory */
358     O = xmalloc (sizeof (O65Option) - 1 + DataLen);
359
360     /* Initialize the structure */
361     O->Next     = 0;
362     O->Type     = Type;
363     O->Len      = DataLen;
364     memcpy (O->Data, Data, DataLen);
365
366     /* Return the created struct */
367     return O;
368 }
369
370
371
372 static void FreeO65Option (O65Option* O)
373 /* Free an O65Option struct */
374 {
375     xfree (O);
376 }
377
378
379
380 /*****************************************************************************/
381 /*                     Subroutines to write o65 sections                     */
382 /*****************************************************************************/
383
384
385
386 static void O65WriteHeader (O65Desc* D)
387 /* Write the header of the executable to the given file */
388 {
389     static unsigned char Trailer [5] = {
390         0x01, 0x00, 0x6F, 0x36, 0x35
391     };
392
393     O65Option* O;
394
395
396     /* Write the fixed header */
397     WriteData (D->F, Trailer, sizeof (Trailer));
398     Write8    (D->F, D->Header.Version);
399     Write16   (D->F, D->Header.Mode);
400     WriteSize (D, D->Header.TextBase);
401     WriteSize (D, D->Header.TextSize);
402     WriteSize (D, D->Header.DataBase);
403     WriteSize (D, D->Header.DataSize);
404     WriteSize (D, D->Header.BssBase);
405     WriteSize (D, D->Header.BssSize);
406     WriteSize (D, D->Header.ZPBase);
407     WriteSize (D, D->Header.ZPSize);
408     WriteSize (D, D->Header.StackSize);
409
410     /* Write the options */
411     O = D->Options;
412     while (O) {
413         Write8 (D->F, O->Len + 2);              /* Account for len and type bytes */
414         Write8 (D->F, O->Type);
415         if (O->Len) {
416             WriteData (D->F, O->Data, O->Len);
417         }
418         O = O->Next;
419     }
420
421     /* Write the end-of-options byte */
422     Write8 (D->F, 0);
423 }
424
425
426
427 static unsigned O65WriteExpr (ExprNode* E, int Signed, unsigned Size,
428                               unsigned long Offs, void* Data)
429 /* Called from SegWrite for an expression. Evaluate the expression, check the
430  * range and write the expression value to the file, update the relocation
431  * table.
432  */
433 {
434     long Diff;
435     long BinVal;
436     ExprNode* Expr;
437     ExprDesc ED;
438     unsigned char RelocType;
439
440     /* Cast the Data pointer to its real type, an O65Desc */
441     O65Desc* D = (O65Desc*) Data;
442
443     /* Check for a constant expression */
444     if (IsConstExpr (E)) {
445         /* Write out the constant expression */
446         return SegWriteConstExpr (((O65Desc*)Data)->F, E, Signed, Size);
447     }
448
449     /* We have a relocatable expression that needs a relocation table entry.
450      * Calculate the number of bytes between this entry and the last one, and
451      * setup all necessary intermediate bytes in the relocation table.
452      */
453     Offs += D->SegSize;         /* Calulate full offset */
454     Diff = ((long) Offs) - D->LastOffs;
455     while (Diff > 0xFE) {
456         O65RelocPutByte (D->CurReloc, 0xFF);
457         Diff -= 0xFE;
458     }
459     O65RelocPutByte (D->CurReloc, (unsigned char) Diff);
460
461     /* Remember this offset for the next time */
462     D->LastOffs = Offs;
463
464     /* Determine the expression to relocate */
465     Expr = E;
466     if (E->Op == EXPR_BYTE0 || E->Op == EXPR_BYTE1 ||
467         E->Op == EXPR_BYTE2 || E->Op == EXPR_BYTE3 ||
468         E->Op == EXPR_WORD0 || E->Op == EXPR_WORD1) {
469         /* Use the real expression */
470         Expr = E->Left;
471     }
472
473     /* Initialize the descriptor for expression parsing */
474     ED.D          = D;
475     ED.Val        = 0;
476     ED.TooComplex = 0;
477     ED.SegRef     = 0;
478     ED.ExtRef     = 0;
479
480     /* Recursively collect information about this expression */
481     O65ParseExpr (Expr, &ED, 1);
482
483     /* We cannot handle both, an imported symbol and a segment ref */
484     if (ED.SegRef != 0 && ED.ExtRef != 0) {
485         ED.TooComplex = 1;
486     }
487
488     /* Bail out if we cannot handle the expression */
489     if (ED.TooComplex) {
490         return SEG_EXPR_TOO_COMPLEX;
491     }
492
493     /* Safety: Check that we are really referencing a symbol or a segment */
494     CHECK (ED.SegRef != 0 || ED.ExtRef != 0);
495
496     /* Write out the offset that goes into the segment. */
497     BinVal = ED.Val;
498     switch (E->Op) {
499         case EXPR_BYTE0:    BinVal &= 0xFF;                     break;
500         case EXPR_BYTE1:    BinVal = (BinVal >>  8) & 0xFF;     break;
501         case EXPR_BYTE2:    BinVal = (BinVal >> 16) & 0xFF;     break;
502         case EXPR_BYTE3:    BinVal = (BinVal >> 24) & 0xFF;     break;
503         case EXPR_WORD0:    BinVal &= 0xFFFF;                   break;
504         case EXPR_WORD1:    BinVal = (BinVal >> 16) & 0xFFFF;   break;
505     }
506     WriteVal (D->F, BinVal, Size);
507
508     /* Determine the actual type of relocation entry needed from the
509      * information gathered about the expression.
510      */
511     if (E->Op == EXPR_BYTE0) {
512         RelocType = O65RELOC_LOW;
513     } else if (E->Op == EXPR_BYTE1) {
514         RelocType = O65RELOC_HIGH;
515     } else {
516         switch (Size) {
517
518             case 1:
519                 RelocType = O65RELOC_LOW;
520                 break;
521
522             case 2:
523                 RelocType = O65RELOC_WORD;
524                 break;
525
526             case 3:
527                 RelocType = O65RELOC_SEGADR;
528                 break;
529
530             case 4:
531                 /* 4 byte expression not supported by o65 */
532                 return SEG_EXPR_TOO_COMPLEX;
533
534             default:
535                 Internal ("O65WriteExpr: Invalid expression size: %u", Size);
536                 RelocType = 0;          /* Avoid gcc warnings */
537         }
538     }
539
540     /* Determine which segment we're referencing */
541     if (ED.ExtRef) {
542         /* Imported symbol */
543         RelocType |= O65SEG_UNDEF;
544         O65RelocPutByte (D->CurReloc, RelocType);
545         /* Put the number of the imported symbol into the table */
546         O65RelocPutWord (D->CurReloc, ExtSymNum (ED.ExtRef));
547     } else {
548         /* Segment reference */
549
550
551
552     }
553
554     /* Success */
555     return SEG_EXPR_OK;
556 }
557
558
559
560 static void O65WriteSeg (O65Desc* D, SegDesc** Seg, unsigned Count, int DoWrite)
561 /* Write one segment to the o65 output file */
562 {
563     SegDesc* S;
564     unsigned I;
565
566     /* Initialize variables */
567     D->SegSize  = 0;
568     D->LastOffs = -1;
569
570     /* Write out all segments */
571     for (I = 0; I < Count; ++I) {
572
573         /* Get the segment from the list node */
574         S = Seg [I];
575
576         /* Keep the user happy */
577         if (Verbose) {
578             printf ("    Writing `%s'\n", S->Name);
579         }
580
581         /* Write this segment */
582         if (DoWrite) {
583             SegWrite (D->F, S->Seg, O65WriteExpr, D);
584         }
585
586         /* Mark the segment as dumped */
587         S->Seg->Dumped = 1;
588
589         /* Calculate the total size */
590         D->SegSize += S->Seg->Size;
591     }
592
593     /* Terminate the relocation table for the this segment */
594     if (D->CurReloc) {
595         O65RelocPutByte (D->CurReloc, 0);
596     }
597
598     /* Check the size of the segment for overflow */
599     if ((D->Header.Mode & MF_SIZE_32BIT) == 0 && D->SegSize > 0xFFFF) {
600         Error ("Segment overflow in file `%s'", D->Filename);
601     }
602
603 }
604
605
606
607 static void O65WriteTextSeg (O65Desc* D, Memory* M)
608 /* Write the code segment to the o65 output file */
609 {
610     /* Initialize variables */
611     D->CurReloc = D->TextReloc;
612
613     /* Dump all text segments */
614     O65WriteSeg (D, D->TextSeg, D->TextCount, 1);
615
616     /* Set the size of the segment */
617     D->Header.TextSize = D->SegSize;
618 }
619
620
621
622 static void O65WriteDataSeg (O65Desc* D, Memory* M)
623 /* Write the data segment to the o65 output file */
624 {
625     /* Initialize variables */
626     D->CurReloc = D->DataReloc;
627
628     /* Dump all data segments */
629     O65WriteSeg (D, D->DataSeg, D->DataCount, 1);
630
631     /* Set the size of the segment */
632     D->Header.DataSize = D->SegSize;
633 }
634
635
636
637 static void O65WriteBssSeg (O65Desc* D, Memory* M)
638 /* "Write" the bss segments to the o65 output file. This will only update
639  * the relevant header fields.
640  */
641 {
642     /* Initialize variables */
643     D->CurReloc = 0;
644
645     /* Dump all data segments */
646     O65WriteSeg (D, D->BssSeg, D->BssCount, 0);
647
648     /* Set the size of the segment */
649     D->Header.BssSize = D->SegSize;
650 }
651
652
653
654 static void O65WriteZPSeg (O65Desc* D, Memory* M)
655 /* "Write" the zeropage segments to the o65 output file. This will only update
656  * the relevant header fields.
657  */
658 {
659     /* Initialize variables */
660     D->CurReloc = 0;
661
662     /* Dump all data segments */
663     O65WriteSeg (D, D->ZPSeg, D->ZPCount, 0);
664
665     /* Set the size of the segment */
666     D->Header.ZPSize = D->SegSize;
667 }
668
669
670
671 static void O65WriteImports (O65Desc* D)
672 /* Write the list of imported symbols to the O65 file */
673 {
674     const ExtSym* E;
675
676     /* Write the number of external symbols */
677     WriteSize (D, ExtSymCount (D->Imports));
678
679     /* Write out the symbol names, zero terminated */
680     E = ExtSymList (D->Imports);
681     while (E) {
682         /* Get the name */
683         const char* Name = ExtSymName (E);
684         /* And write it to the output file */
685         WriteData (D->F, Name, strlen (Name) + 1);
686         /* Next symbol */
687         E = ExtSymNext (E);
688     }
689 }
690
691
692
693 static void O65WriteTextReloc (O65Desc* D)
694 /* Write the relocation for the text segment to the output file */
695 {
696     O65WriteReloc (D->TextReloc, D->F);
697 }
698
699
700
701 static void O65WriteDataReloc (O65Desc* D)
702 /* Write the relocation for the data segment to the output file */
703 {
704     O65WriteReloc (D->DataReloc, D->F);
705 }
706
707
708
709 static void O65WriteExports (O65Desc* D)
710 /* Write the list of exports */
711 {
712     /* For now... */
713     WriteSize (D, 0);
714 }
715
716
717
718 /*****************************************************************************/
719 /*                                Public code                                */
720 /*****************************************************************************/
721
722
723
724 O65Desc* NewO65Desc (void)
725 /* Create, initialize and return a new O65 descriptor struct */
726 {
727     /* Allocate a new structure */
728     O65Desc* D = xmalloc (sizeof (O65Desc));
729
730     /* Initialize the header */
731     D->Header.Version   = 0;
732     D->Header.Mode      = 0;
733     D->Header.TextBase  = 0;
734     D->Header.TextSize  = 0;
735     D->Header.DataBase  = 0;
736     D->Header.DataSize  = 0;
737     D->Header.BssBase   = 0;
738     D->Header.BssSize   = 0;
739     D->Header.ZPBase    = 0;
740     D->Header.ZPSize    = 0;
741     D->Header.StackSize = 0;            /* Let OS choose a good value */
742
743     /* Initialize other data */
744     D->Options          = 0;
745     D->Exports          = NewExtSymTab ();
746     D->Imports          = NewExtSymTab ();
747     D->Undef            = 0;
748     D->F                = 0;
749     D->Filename         = 0;
750     D->TextReloc        = NewO65RelocTab ();
751     D->DataReloc        = NewO65RelocTab ();
752     D->TextCount        = 0;
753     D->TextSeg          = 0;
754     D->DataCount        = 0;
755     D->DataSeg          = 0;
756     D->BssCount         = 0;
757     D->BssSeg           = 0;
758     D->ZPCount          = 0;
759     D->ZPSeg            = 0;
760
761     /* Return the created struct */
762     return D;
763 }
764
765
766
767 void FreeO65Desc (O65Desc* D)
768 /* Delete the descriptor struct with cleanup */
769 {
770     /* Free the segment arrays */
771     xfree (D->ZPSeg);
772     xfree (D->BssSeg);
773     xfree (D->DataSeg);
774     xfree (D->TextSeg);
775
776     /* Free the relocation tables */
777     FreeO65RelocTab (D->DataReloc);
778     FreeO65RelocTab (D->TextReloc);
779
780     /* Free the option list */
781     while (D->Options) {
782         O65Option* O = D->Options;
783         D->Options = D->Options->Next;
784         FreeO65Option (O);
785     }
786
787     /* Free the external symbol tables */
788     FreeExtSymTab (D->Exports);
789     FreeExtSymTab (D->Imports);
790
791     /* Free the struct itself */
792     xfree (D);
793 }
794
795
796
797 void O65Set816 (O65Desc* D)
798 /* Enable 816 mode */
799 {
800     D->Header.Mode |= MF_CPU_816;
801 }
802
803
804
805 void O65SetLargeModel (O65Desc* D)
806 /* Enable a large memory model executable */
807 {
808     D->Header.Mode |= MF_SIZE_32BIT;
809 }
810
811
812
813 void O65SetAlignment (O65Desc* D, unsigned Align)
814 /* Set the executable alignment */
815 {
816     /* Remove all alignment bits from the mode word */
817     D->Header.Mode &= ~0x0003;
818
819     /* Set the alignment bits */
820     switch (Align) {
821         case 1:                           break;
822         case 2:   D->Header.Mode |= 0x01; break;
823         case 4:   D->Header.Mode |= 0x02; break;
824         case 256: D->Header.Mode |= 0x03; break;
825         default:  Error ("Invalid alignment for O65 format: %u", Align);
826     }
827 }
828
829
830
831 void O65SetOption (O65Desc* D, unsigned Type, const void* Data, unsigned DataLen)
832 /* Set an o65 header option */
833 {
834     /* Create a new option structure */
835     O65Option* O = NewO65Option (Type, Data, DataLen);
836
837     /* Insert it into the linked list */
838     O->Next = D->Options;
839     D->Options = O;
840 }
841
842
843
844 void O65SetOS (O65Desc* D, unsigned OS)
845 /* Set an option describing the target operating system */
846 {
847     static const unsigned char OSA65 [2] = { O65OS_OSA65, 0 };
848     static const unsigned char Lunix [2] = { O65OS_LUNIX, 0 };
849
850     /* Write the correct option */
851     switch (OS) {
852
853         case O65OS_OSA65:
854             O65SetOption (D, O65OPT_OS, OSA65, sizeof (OSA65));
855             break;
856
857         case O65OS_LUNIX:
858             O65SetOption (D, O65OPT_OS, Lunix, sizeof (Lunix));
859             break;
860
861         default:
862             Internal ("Trying to set invalid O65 operating system: %u", OS);
863
864     }
865 }
866
867
868
869 ExtSym* O65GetImport (O65Desc* D, const char* Ident)
870 /* Return the imported symbol or NULL if not found */
871 {
872     /* Retrieve the symbol from the table */
873     return GetExtSym (D->Imports, Ident);
874 }
875
876
877
878 void O65SetImport (O65Desc* D, const char* Ident)
879 /* Set an imported identifier */
880 {
881     /* Insert the entry into the table */
882     NewExtSym (D->Imports, Ident);
883 }
884
885
886
887 ExtSym* O65GetExport (O65Desc* D, const char* Ident)
888 /* Return the exported symbol or NULL if not found */
889 {
890     /* Retrieve the symbol from the table */
891     return GetExtSym (D->Exports, Ident);
892 }
893
894
895
896 void O65SetExport (O65Desc* D, const char* Ident)
897 /* Set an exported identifier */
898 {
899     /* Insert the entry into the table */
900     NewExtSym (D->Exports, Ident);
901 }
902
903
904
905 static void O65SetupSegments (O65Desc* D, Memory* M)
906 /* Setup segment assignments */
907 {
908     MemListNode* N;
909     SegDesc* S;
910     unsigned TextIdx, DataIdx, BssIdx, ZPIdx;
911
912     /* Initialize the counters */
913     D->TextCount = 0;
914     D->DataCount = 0;
915     D->BssCount  = 0;
916     D->ZPCount   = 0;
917
918     /* Walk through the memory list and count the segment types */
919     N = M->SegList;
920     while (N) {
921
922         /* Get the segment from the list node */
923         S = N->Seg;
924
925         /* Check the segment type. */
926         switch (O65SegType (S)) {
927             case O65SEG_TEXT:   D->TextCount++; break;
928             case O65SEG_DATA:   D->DataCount++; break;
929             case O65SEG_BSS:    D->BssCount++;  break;
930             case O65SEG_ZP:     D->ZPCount++;   break;
931             default:            Internal ("Invalid return from O65SegType");
932         }
933
934         /* Next segment node */
935         N = N->Next;
936     }
937
938     /* Allocate memory according to the numbers */
939     D->TextSeg = xmalloc (D->TextCount * sizeof (SegDesc*));
940     D->DataSeg = xmalloc (D->DataCount * sizeof (SegDesc*));
941     D->BssSeg  = xmalloc (D->BssCount  * sizeof (SegDesc*));
942     D->ZPSeg   = xmalloc (D->ZPCount   * sizeof (SegDesc*));
943
944     /* Walk again through the list and setup the segment arrays */
945     TextIdx = DataIdx = BssIdx = ZPIdx = 0;
946     N = M->SegList;
947     while (N) {
948
949         /* Get the segment from the list node */
950         S = N->Seg;
951
952         /* Check the segment type. */
953         switch (O65SegType (S)) {
954             case O65SEG_TEXT:   D->TextSeg [TextIdx++] = S;     break;
955             case O65SEG_DATA:   D->DataSeg [DataIdx++] = S;     break;
956             case O65SEG_BSS:    D->BssSeg [BssIdx++]   = S;     break;
957             case O65SEG_ZP:     D->ZPSeg [ZPIdx++]     = S;     break;
958             default:            Internal ("Invalid return from O65SegType");
959         }
960
961         /* Next segment node */
962         N = N->Next;
963     }
964 }
965
966
967
968 static int O65Unresolved (const char* Name, void* D)
969 /* Called if an unresolved symbol is encountered */
970 {
971     /* Check if the symbol is an imported o65 symbol */
972     if (O65GetImport (D, Name) != 0) {
973         /* This is an external symbol, relax... */
974         return 1;
975     } else {
976         /* This is actually an unresolved external. Bump the counter */
977         ((O65Desc*) D)->Undef++;
978         return 0;
979     }
980 }
981
982
983
984 void O65WriteTarget (O65Desc* D, File* F)
985 /* Write an o65 output file */
986 {
987     Memory* M;
988     char OptBuf [256];  /* Buffer for option strings */
989     time_t T;
990
991     /* Place the filename in the control structure */
992     D->Filename = F->Name;
993
994     /* The o65 format uses only one memory area per file. Check that. */
995     M = F->MemList;
996     if (M->Next != 0) {
997         Warning ("Cannot handle more than one memory area for o65 format");
998     }
999
1000     /* Check for unresolved symbols. The function O65Unresolved is called
1001      * if we get an unresolved symbol.
1002      */
1003     D->Undef = 0;               /* Reset the counter */
1004     CheckExports (O65Unresolved, D);
1005     if (D->Undef > 0) {
1006         /* We had unresolved symbols, cannot create output file */
1007         Error ("%u unresolved external(s) found - cannot create output file", D->Undef);
1008     }
1009
1010     /* Setup the segment arrays */
1011     O65SetupSegments (D, M);
1012
1013     /* Open the file */
1014     D->F = fopen (F->Name, "wb");
1015     if (D->F == 0) {
1016         Error ("Cannot open `%s': %s", F->Name, strerror (errno));
1017     }
1018
1019     /* Keep the user happy */
1020     if (Verbose) {
1021         printf ("Opened `%s'...\n", F->Name);
1022     }
1023
1024     /* Define some more options: A timestamp and the linker version */
1025     T = time (0);
1026     strcpy (OptBuf, ctime (&T));
1027     O65SetOption (D, O65OPT_TIMESTAMP, OptBuf, strlen (OptBuf) + 1);
1028     sprintf (OptBuf, "ld65 V%u.%u.%u", VER_MAJOR, VER_MINOR, VER_PATCH);
1029     O65SetOption (D, O65OPT_ASM, OptBuf, strlen (OptBuf) + 1);
1030
1031     /* Write the header */
1032     O65WriteHeader (D);
1033
1034     /* Write the text segment */
1035     O65WriteTextSeg (D, M);
1036
1037     /* Write the data segment */
1038     O65WriteDataSeg (D, M);
1039
1040     /* "Write" the bss segments */
1041     O65WriteBssSeg (D, M);
1042
1043     /* "Write" the zeropage segments */
1044     O65WriteZPSeg (D, M);
1045
1046     /* Write the undefined references list */
1047     O65WriteImports (D);
1048
1049     /* Write the text segment relocation table */
1050     O65WriteTextReloc (D);
1051
1052     /* Write the data segment relocation table */
1053     O65WriteDataReloc (D);
1054
1055     /* Write the list of exports */
1056     O65WriteExports (D);
1057
1058     /* Seek back to the start and write the updated header */
1059     fseek (D->F, 0, SEEK_SET);
1060     O65WriteHeader (D);
1061
1062     /* Close the file */
1063     if (fclose (D->F) != 0) {
1064         Error ("Cannot write to `%s': %s", F->Name, strerror (errno));
1065     }
1066
1067     /* Reset the file and filename */
1068     D->F        = 0;
1069     D->Filename = 0;
1070 }
1071
1072
1073
1074