]> git.sur5r.net Git - cc65/blob - src/cc65/codeseg.c
Simplify code generation
[cc65] / src / cc65 / codeseg.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 codeseg.c                                 */
4 /*                                                                           */
5 /*                          Code segment structure                           */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2001      Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@cc65.org                                                 */
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 <string.h>
37 #include <ctype.h>
38
39 /* common */
40 #include "chartype.h"
41 #include "check.h"
42 #include "global.h"
43 #include "hashstr.h"
44 #include "strutil.h"
45 #include "xmalloc.h"
46 #include "xsprintf.h"
47
48 /* cc65 */
49 #include "asmlabel.h"
50 #include "codeent.h"
51 #include "codeinfo.h"
52 #include "datatype.h"
53 #include "error.h"
54 #include "symentry.h"
55 #include "codeseg.h"
56
57
58
59 /*****************************************************************************/
60 /*                             Helper functions                              */
61 /*****************************************************************************/
62
63
64
65 static void CS_MoveLabelsToEntry (CodeSeg* S, CodeEntry* E)
66 /* Move all labels from the label pool to the given entry and remove them
67  * from the pool.
68  */
69 {
70     /* Transfer the labels if we have any */
71     unsigned I;
72     unsigned LabelCount = CollCount (&S->Labels);
73     for (I = 0; I < LabelCount; ++I) {
74
75         /* Get the label */
76         CodeLabel* L = CollAt (&S->Labels, I);
77
78         /* Attach it to the entry */
79         CE_AttachLabel (E, L);
80     }
81
82     /* Delete the transfered labels */
83     CollDeleteAll (&S->Labels);
84 }
85
86
87
88 static void CS_MoveLabelsToPool (CodeSeg* S, CodeEntry* E)
89 /* Move the labels of the code entry E to the label pool of the code segment */
90 {
91     unsigned LabelCount = CE_GetLabelCount (E);
92     while (LabelCount--) {
93         CodeLabel* L = CE_GetLabel (E, LabelCount);
94         L->Owner = 0;
95         CollAppend (&S->Labels, L);
96     }
97     CollDeleteAll (&E->Labels);
98 }
99
100
101
102 static CodeLabel* CS_FindLabel (CodeSeg* S, const char* Name, unsigned Hash)
103 /* Find the label with the given name. Return the label or NULL if not found */
104 {
105     /* Get the first hash chain entry */
106     CodeLabel* L = S->LabelHash[Hash];
107
108     /* Search the list */
109     while (L) {
110         if (strcmp (Name, L->Name) == 0) {
111             /* Found */
112             break;
113         }
114         L = L->Next;
115     }
116     return L;
117 }
118
119
120
121 static CodeLabel* CS_NewCodeLabel (CodeSeg* S, const char* Name, unsigned Hash)
122 /* Create a new label and insert it into the label hash table */
123 {
124     /* Create a new label */
125     CodeLabel* L = NewCodeLabel (Name, Hash);
126
127     /* Enter the label into the hash table */
128     L->Next = S->LabelHash[L->Hash];
129     S->LabelHash[L->Hash] = L;
130
131     /* Return the new label */
132     return L;
133 }
134
135
136
137 static void CS_RemoveLabelFromHash (CodeSeg* S, CodeLabel* L)
138 /* Remove the given code label from the hash list */
139 {
140     /* Get the first entry in the hash chain */
141     CodeLabel* List = S->LabelHash[L->Hash];
142     CHECK (List != 0);
143
144     /* First, remove the label from the hash chain */
145     if (List == L) {
146         /* First entry in hash chain */
147         S->LabelHash[L->Hash] = L->Next;
148     } else {
149         /* Must search through the chain */
150         while (List->Next != L) {
151             /* If we've reached the end of the chain, something is *really* wrong */
152             CHECK (List->Next != 0);
153             /* Next entry */
154             List = List->Next;
155         }
156         /* The next entry is the one, we have been searching for */
157         List->Next = L->Next;
158     }
159 }
160
161
162
163 /*****************************************************************************/
164 /*                    Functions for parsing instructions                     */
165 /*****************************************************************************/
166
167
168
169 static const char* SkipSpace (const char* S)
170 /* Skip white space and return an updated pointer */
171 {
172     while (IsSpace (*S)) {
173         ++S;
174     }
175     return S;
176 }
177
178
179
180 static const char* ReadToken (const char* L, const char* Term,
181                               char* Buf, unsigned BufSize)
182 /* Read the next token into Buf, return the updated line pointer. The
183  * token is terminated by one of the characters given in term.
184  */
185 {
186     /* Read/copy the token */
187     unsigned I = 0;
188     unsigned ParenCount = 0;
189     while (*L && (ParenCount > 0 || strchr (Term, *L) == 0)) {
190         if (I < BufSize-1) {
191             Buf[I++] = *L;
192         }
193         if (*L == ')') {
194             --ParenCount;
195         } else if (*L == '(') {
196             ++ParenCount;
197         }
198         ++L;
199     }
200
201     /* Terminate the buffer contents */
202     Buf[I] = '\0';
203
204     /* Return the updated line pointer */
205     return L;
206 }
207
208
209
210 static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L)
211 /* Parse an instruction nnd generate a code entry from it. If the line contains
212  * errors, output an error message and return NULL.
213  * For simplicity, we don't accept the broad range of input a "real" assembler
214  * does. The instruction and the argument are expected to be separated by
215  * white space, for example.
216  */
217 {
218     char                Mnemo[16];
219     const OPCDesc*      OPC;
220     am_t                AM = 0;         /* Initialize to keep gcc silent */
221     char                Arg[64];
222     char                Reg;
223     CodeEntry*          E;
224     CodeLabel*          Label;
225
226     /* Mnemonic */
227     L = ReadToken (L, " \t", Mnemo, sizeof (Mnemo));
228
229     /* Try to find the opcode description for the mnemonic */
230     OPC = FindOP65 (Mnemo);
231
232     /* If we didn't find the opcode, print an error and bail out */
233     if (OPC == 0) {
234         Error ("ASM code error: %s is not a valid mnemonic", Mnemo);
235         return 0;
236     }
237
238     /* Skip separator white space */
239     L = SkipSpace (L);
240
241     /* Get the addressing mode */
242     Arg[0] = '\0';
243     switch (*L) {
244
245         case '\0':
246             /* Implicit */
247             AM = AM65_IMP;
248             break;
249
250         case '#':
251             /* Immidiate */
252             StrCopy (Arg, sizeof (Arg), L+1);
253             AM = AM65_IMM;
254             break;
255
256         case '(':
257             /* Indirect */
258             L = ReadToken (L+1, ",)", Arg, sizeof (Arg));
259
260             /* Check for errors */
261             if (*L == '\0') {
262                 Error ("ASM code error: syntax error");
263                 return 0;
264             }
265
266             /* Check the different indirect modes */
267             if (*L == ',') {
268                 /* Expect zp x indirect */
269                 L = SkipSpace (L+1);
270                 if (toupper (*L) != 'X') {
271                     Error ("ASM code error: `X' expected");
272                     return 0;
273                 }
274                 L = SkipSpace (L+1);
275                 if (*L != ')') {
276                     Error ("ASM code error: `)' expected");
277                     return 0;
278                 }
279                 L = SkipSpace (L+1);
280                 if (*L != '\0') {
281                     Error ("ASM code error: syntax error");
282                     return 0;
283                 }
284                 AM = AM65_ZPX_IND;
285             } else if (*L == ')') {
286                 /* zp indirect or zp indirect, y */
287                 L = SkipSpace (L+1);
288                 if (*L == ',') {
289                     L = SkipSpace (L+1);
290                     if (toupper (*L) != 'Y') {
291                         Error ("ASM code error: `Y' expected");
292                         return 0;
293                     }
294                     L = SkipSpace (L+1);
295                     if (*L != '\0') {
296                         Error ("ASM code error: syntax error");
297                         return 0;
298                     }
299                     AM = AM65_ZP_INDY;
300                 } else if (*L == '\0') {
301                     AM = AM65_ZP_IND;
302                 } else {
303                     Error ("ASM code error: syntax error");
304                     return 0;
305                 }
306             }
307             break;
308
309         case 'a':
310         case 'A':
311             /* Accumulator? */
312             if (L[1] == '\0') {
313                 AM = AM65_ACC;
314                 break;
315             }
316             /* FALLTHROUGH */
317
318         default:
319             /* Absolute, maybe indexed */
320             L = ReadToken (L, ",", Arg, sizeof (Arg));
321             if (*L == '\0') {
322                 /* Absolute, zeropage or branch */
323                 if ((OPC->Info & OF_BRA) != 0) {
324                     /* Branch */
325                     AM = AM65_BRA;
326                 } else if (IsZPName (Arg)) {
327                     AM = AM65_ZP;
328                 } else {
329                     AM = AM65_ABS;
330                 }
331             } else if (*L == ',') {
332                 /* Indexed */
333                 L = SkipSpace (L+1);
334                 if (*L == '\0') {
335                     Error ("ASM code error: syntax error");
336                     return 0;
337                 } else {
338                     Reg = toupper (*L);
339                     L = SkipSpace (L+1);
340                     if (Reg == 'X') {
341                         if (IsZPName (Arg)) {
342                             AM = AM65_ZPX;
343                         } else {
344                             AM = AM65_ABSX;
345                         }
346                     } else if (Reg == 'Y') {
347                         AM = AM65_ABSY;
348                     } else {
349                         Error ("ASM code error: syntax error");
350                         return 0;
351                     }
352                     if (*L != '\0') {
353                         Error ("ASM code error: syntax error");
354                         return 0;
355                     }
356                 }
357             }
358             break;
359
360     }
361
362     /* If the instruction is a branch, check for the label and generate it
363      * if it does not exist. Ignore anything but local labels here.
364      */
365     Label = 0;
366     if (AM == AM65_BRA && Arg[0] == 'L') {
367
368         /* Generate the hash over the label, then search for the label */
369         unsigned Hash = HashStr (Arg) % CS_LABEL_HASH_SIZE;
370         Label = CS_FindLabel (S, Arg, Hash);
371
372         /* If we don't have the label, it's a forward ref - create it */
373         if (Label == 0) {
374             /* Generate a new label */
375             Label = CS_NewCodeLabel (S, Arg, Hash);
376         }
377     }
378
379     /* We do now have the addressing mode in AM. Allocate a new CodeEntry
380      * structure and initialize it.
381      */
382     E = NewCodeEntry (OPC->OPC, AM, Arg, Label, LI);
383
384     /* Return the new code entry */
385     return E;
386 }
387
388
389
390 /*****************************************************************************/
391 /*                                   Code                                    */
392 /*****************************************************************************/
393
394
395
396 CodeSeg* NewCodeSeg (const char* SegName, SymEntry* Func)
397 /* Create a new code segment, initialize and return it */
398 {
399     unsigned I;
400
401     /* Allocate memory */
402     CodeSeg* S = xmalloc (sizeof (CodeSeg));
403
404     /* Initialize the fields */
405     S->SegName  = xstrdup (SegName);
406     S->Func     = Func;
407     InitCollection (&S->Entries);
408     InitCollection (&S->Labels);
409     for (I = 0; I < sizeof(S->LabelHash) / sizeof(S->LabelHash[0]); ++I) {
410         S->LabelHash[I] = 0;
411     }
412
413     /* If we have a function given, get the return type of the function.
414      * Assume ANY return type besides void will use the A and X registers.
415      */
416     if (S->Func && !IsTypeVoid (GetFuncReturn (Func->Type))) {
417         S->ExitRegs = REG_AX;
418     } else {
419         S->ExitRegs = REG_NONE;
420     }
421
422     /* Return the new struct */
423     return S;
424 }
425
426
427
428 void CS_AddEntry (CodeSeg* S, struct CodeEntry* E)
429 /* Add an entry to the given code segment */
430 {
431     /* Transfer the labels if we have any */
432     CS_MoveLabelsToEntry (S, E);
433
434     /* Add the entry to the list of code entries in this segment */
435     CollAppend (&S->Entries, E);
436 }
437
438
439
440 void CS_AddLine (CodeSeg* S, LineInfo* LI, const char* Format, va_list ap)
441 /* Add a line to the given code segment */
442 {
443     const char* L;
444     CodeEntry*  E;
445     char        Token[64];
446
447     /* Format the line */
448     char Buf [256];
449     xvsprintf (Buf, sizeof (Buf), Format, ap);
450
451     /* Skip whitespace */
452     L = SkipSpace (Buf);
453
454     /* Check which type of instruction we have */
455     E = 0;      /* Assume no insn created */
456     switch (*L) {
457
458         case '\0':
459             /* Empty line, just ignore it */
460             break;
461
462         case ';':
463             /* Comment or hint, ignore it for now */
464             break;
465
466         case '.':
467             /* Control instruction */
468             ReadToken (L, " \t", Token, sizeof (Token));
469             Error ("ASM code error: Pseudo instruction `%s' not supported", Token);
470             break;
471
472         default:
473             E = ParseInsn (S, LI, L);
474             break;
475     }
476
477     /* If we have a code entry, transfer the labels and insert it */
478     if (E) {
479         CS_AddEntry (S, E);
480     }
481 }
482
483
484
485 void CS_InsertEntry (CodeSeg* S, struct CodeEntry* E, unsigned Index)
486 /* Insert the code entry at the index given. Following code entries will be
487  * moved to slots with higher indices.
488  */
489 {
490     /* Insert the entry into the collection */
491     CollInsert (&S->Entries, E, Index);
492 }
493
494
495
496 void CS_DelEntry (CodeSeg* S, unsigned Index)
497 /* Delete an entry from the code segment. This includes moving any associated
498  * labels, removing references to labels and even removing the referenced labels
499  * if the reference count drops to zero.
500  */
501 {
502     /* Get the code entry for the given index */
503     CodeEntry* E = CS_GetEntry (S, Index);
504
505     /* If the entry has a labels, we have to move this label to the next insn.
506      * If there is no next insn, move the label into the code segement label
507      * pool. The operation is further complicated by the fact that the next
508      * insn may already have a label. In that case change all reference to
509      * this label and delete the label instead of moving it.
510      */
511     unsigned Count = CE_GetLabelCount (E);
512     if (Count > 0) {
513
514         /* The instruction has labels attached. Check if there is a next
515          * instruction.
516          */
517         if (Index == CS_GetEntryCount (S)-1) {
518
519             /* No next instruction, move to the codeseg label pool */
520             CS_MoveLabelsToPool (S, E);
521
522         } else {
523
524             /* There is a next insn, get it */
525             CodeEntry* N = CS_GetEntry (S, Index+1);
526
527             /* Move labels to the next entry */
528             CS_MoveLabels (S, E, N);
529
530         }
531     }
532
533     /* If this insn references a label, remove the reference. And, if the
534      * the reference count for this label drops to zero, remove this label.
535      */
536     if (E->JumpTo) {
537         /* Remove the reference */
538         CS_RemoveLabelRef (S, E);
539     }
540
541     /* Delete the pointer to the insn */
542     CollDelete (&S->Entries, Index);
543
544     /* Delete the instruction itself */
545     FreeCodeEntry (E);
546 }
547
548
549
550 void CS_DelEntries (CodeSeg* S, unsigned Start, unsigned Count)
551 /* Delete a range of code entries. This includes removing references to labels,
552  * labels attached to the entries and so on.
553  */
554 {
555     /* Start deleting the entries from the rear, because this involves less
556      * memory moving.
557      */
558     while (Count--) {
559         CS_DelEntry (S, Start + Count);
560     }
561 }
562
563
564
565 void CS_MoveEntries (CodeSeg* S, unsigned Start, unsigned Count, unsigned NewPos)
566 /* Move a range of entries from one position to another. Start is the index
567  * of the first entry to move, Count is the number of entries and NewPos is
568  * the index of the target entry. The entry with the index Start will later
569  * have the index NewPos. All entries with indices NewPos and above are
570  * moved to higher indices. If the code block is moved to the end of the
571  * current code, and if pending labels exist, these labels will get attached
572  * to the first instruction of the moved block (the first one after the
573  * current code end)
574  */
575 {
576     /* If NewPos is at the end of the code segment, move any labels from the
577      * label pool to the first instruction of the moved range.
578      */
579     if (NewPos == CS_GetEntryCount (S)) {
580         CS_MoveLabelsToEntry (S, CS_GetEntry (S, Start));
581     }
582
583     /* Move the code block to the destination */
584     CollMoveMultiple (&S->Entries, Start, Count, NewPos);
585 }
586
587
588
589 struct CodeEntry* CS_GetPrevEntry (CodeSeg* S, unsigned Index)
590 /* Get the code entry preceeding the one with the index Index. If there is no
591  * preceeding code entry, return NULL.
592  */
593 {
594     if (Index == 0) {
595         /* This is the first entry */
596         return 0;
597     } else {
598         /* Previous entry available */
599         return CollAtUnchecked (&S->Entries, Index-1);
600     }
601 }
602
603
604
605 struct CodeEntry* CS_GetNextEntry (CodeSeg* S, unsigned Index)
606 /* Get the code entry following the one with the index Index. If there is no
607  * following code entry, return NULL.
608  */
609 {
610     if (Index >= CollCount (&S->Entries)-1) {
611         /* This is the last entry */
612         return 0;
613     } else {
614         /* Code entries left */
615         return CollAtUnchecked (&S->Entries, Index+1);
616     }
617 }
618
619
620
621 int CS_GetEntries (CodeSeg* S, struct CodeEntry** List,
622                    unsigned Start, unsigned Count)
623 /* Get Count code entries into List starting at index start. Return true if
624  * we got the lines, return false if not enough lines were available.
625  */
626 {
627     /* Check if enough entries are available */
628     if (Start + Count > CollCount (&S->Entries)) {
629         return 0;
630     }
631
632     /* Copy the entries */
633     while (Count--) {
634         *List++ = CollAtUnchecked (&S->Entries, Start++);
635     }
636
637     /* We have the entries */
638     return 1;
639 }
640
641
642
643 unsigned CS_GetEntryIndex (CodeSeg* S, struct CodeEntry* E)
644 /* Return the index of a code entry */
645 {
646     int Index = CollIndex (&S->Entries, E);
647     CHECK (Index >= 0);
648     return Index;
649 }
650
651
652
653 CodeLabel* CS_AddLabel (CodeSeg* S, const char* Name)
654 /* Add a code label for the next instruction to follow */
655 {
656     /* Calculate the hash from the name */
657     unsigned Hash = HashStr (Name) % CS_LABEL_HASH_SIZE;
658
659     /* Try to find the code label if it does already exist */
660     CodeLabel* L = CS_FindLabel (S, Name, Hash);
661
662     /* Did we find it? */
663     if (L) {
664         /* We found it - be sure it does not already have an owner */
665         CHECK (L->Owner == 0);
666     } else {
667         /* Not found - create a new one */
668         L = CS_NewCodeLabel (S, Name, Hash);
669     }
670
671     /* Safety. This call is quite costly, but safety is better */
672     if (CollIndex (&S->Labels, L) >= 0) {
673         Internal ("AddCodeLabel: Label `%s' already defined", Name);
674     }
675
676     /* We do now have a valid label. Remember it for later */
677     CollAppend (&S->Labels, L);
678
679     /* Return the label */
680     return L;
681 }
682
683
684
685 CodeLabel* CS_GenLabel (CodeSeg* S, struct CodeEntry* E)
686 /* If the code entry E does already have a label, return it. Otherwise
687  * create a new label, attach it to E and return it.
688  */
689 {
690     CodeLabel* L;
691
692     if (CE_HasLabel (E)) {
693
694         /* Get the label from this entry */
695         L = CE_GetLabel (E, 0);
696
697     } else {
698
699         /* Get a new name */
700         const char* Name = LocalLabelName (GetLocalLabel ());
701
702         /* Generate the hash over the name */
703         unsigned Hash = HashStr (Name) % CS_LABEL_HASH_SIZE;
704
705         /* Create a new label */
706         L = CS_NewCodeLabel (S, Name, Hash);
707
708         /* Attach this label to the code entry */
709         CE_AttachLabel (E, L);
710
711     }
712
713     /* Return the label */
714     return L;
715 }
716
717
718
719 void CS_DelLabel (CodeSeg* S, CodeLabel* L)
720 /* Remove references from this label and delete it. */
721 {
722     unsigned Count, I;
723
724     /* First, remove the label from the hash chain */
725     CS_RemoveLabelFromHash (S, L);
726
727     /* Remove references from insns jumping to this label */
728     Count = CollCount (&L->JumpFrom);
729     for (I = 0; I < Count; ++I) {
730         /* Get the insn referencing this label */
731         CodeEntry* E = CollAt (&L->JumpFrom, I);
732         /* Remove the reference */
733         E->JumpTo = 0;
734     }
735     CollDeleteAll (&L->JumpFrom);
736
737     /* Remove the reference to the owning instruction if it has one. The
738      * function may be called for a label without an owner when deleting
739      * unfinished parts of the code. This is unfortunate since it allows
740      * errors to slip through.
741      */
742     if (L->Owner) {
743         CollDeleteItem (&L->Owner->Labels, L);
744     }
745
746     /* All references removed, delete the label itself */
747     FreeCodeLabel (L);
748 }
749
750
751
752 void CS_MergeLabels (CodeSeg* S)
753 /* Merge code labels. That means: For each instruction, remove all labels but
754  * one and adjust references accordingly.
755  */
756 {
757     unsigned I;
758
759     /* Walk over all code entries */
760     for (I = 0; I < CS_GetEntryCount (S); ++I) {
761
762         CodeLabel* RefLab;
763         unsigned   J;
764
765         /* Get a pointer to the next entry */
766         CodeEntry* E = CS_GetEntry (S, I);
767
768         /* If this entry has zero labels, continue with the next one */
769         unsigned LabelCount = CE_GetLabelCount (E);
770         if (LabelCount == 0) {
771             continue;
772         }
773
774         /* We have at least one label. Use the first one as reference label. */
775         RefLab = CE_GetLabel (E, 0);
776
777         /* Walk through the remaining labels and change references to these
778          * labels to a reference to the one and only label. Delete the labels
779          * that are no longer used. To increase performance, walk backwards
780          * through the list.
781          */
782         for (J = LabelCount-1; J >= 1; --J) {
783
784             /* Get the next label */
785             CodeLabel* L = CE_GetLabel (E, J);
786
787             /* Move all references from this label to the reference label */
788             CL_MoveRefs (L, RefLab);
789
790             /* Remove the label completely. */
791             CS_DelLabel (S, L);
792         }
793
794         /* The reference label is the only remaining label. Check if there
795          * are any references to this label, and delete it if this is not
796          * the case.
797          */
798         if (CollCount (&RefLab->JumpFrom) == 0) {
799             /* Delete the label */
800             CS_DelLabel (S, RefLab);
801         }
802     }
803 }
804
805
806
807 void CS_MoveLabels (CodeSeg* S, struct CodeEntry* Old, struct CodeEntry* New)
808 /* Move all labels from Old to New. The routine will move the labels itself
809  * if New does not have any labels, and move references if there is at least
810  * a label for new. If references are moved, the old label is deleted
811  * afterwards.
812  */
813 {
814     /* Get the number of labels to move */
815     unsigned OldLabelCount = CE_GetLabelCount (Old);
816
817     /* Does the new entry have itself a label? */
818     if (CE_HasLabel (New)) {
819
820         /* The new entry does already have a label - move references */
821         CodeLabel* NewLabel = CE_GetLabel (New, 0);
822         while (OldLabelCount--) {
823
824             /* Get the next label */
825             CodeLabel* OldLabel = CE_GetLabel (Old, OldLabelCount);
826
827             /* Move references */
828             CL_MoveRefs (OldLabel, NewLabel);
829
830             /* Delete the label */
831             CS_DelLabel (S, OldLabel);
832
833         }
834
835     } else {
836
837         /* The new entry does not have a label, just move them */
838         while (OldLabelCount--) {
839
840             /* Move the label to the new entry */
841             CE_MoveLabel (CE_GetLabel (Old, OldLabelCount), New);
842
843         }
844
845     }
846 }
847
848
849
850 void CS_RemoveLabelRef (CodeSeg* S, struct CodeEntry* E)
851 /* Remove the reference between E and the label it jumps to. The reference
852  * will be removed on both sides and E->JumpTo will be 0 after that. If
853  * the reference was the only one for the label, the label will get
854  * deleted.
855  */
856 {
857     /* Get a pointer to the label and make sure it exists */
858     CodeLabel* L = E->JumpTo;
859     CHECK (L != 0);
860
861     /* Delete the entry from the label */
862     CollDeleteItem (&L->JumpFrom, E);
863
864     /* The entry jumps no longer to L */
865     E->JumpTo = 0;
866
867     /* If there are no more references, delete the label */
868     if (CollCount (&L->JumpFrom) == 0) {
869         CS_DelLabel (S, L);
870     }
871 }
872
873
874
875 void CS_MoveLabelRef (CodeSeg* S, struct CodeEntry* E, CodeLabel* L)
876 /* Change the reference of E to L instead of the current one. If this
877  * was the only reference to the old label, the old label will get
878  * deleted.
879  */
880 {
881     /* Get the old label */
882     CodeLabel* OldLabel = E->JumpTo;
883
884     /* Be sure that code entry references a label */
885     PRECONDITION (OldLabel != 0);
886
887     /* Remove the reference to our label */
888     CS_RemoveLabelRef (S, E);
889
890     /* Use the new label */
891     CL_AddRef (L, E);
892 }
893
894
895
896 void CS_DelCodeAfter (CodeSeg* S, unsigned Last)
897 /* Delete all entries including the given one */
898 {
899     /* Get the number of entries in this segment */
900     unsigned Count = CS_GetEntryCount (S);
901
902     /* First pass: Delete all references to labels. If the reference count
903      * for a label drops to zero, delete it.
904      */
905     unsigned C = Count;
906     while (Last < C--) {
907
908         /* Get the next entry */
909         CodeEntry* E = CS_GetEntry (S, C);
910
911         /* Check if this entry has a label reference */
912         if (E->JumpTo) {
913             /* If the label is a label in the label pool and this is the last
914              * reference to the label, remove the label from the pool.
915              */
916             CodeLabel* L = E->JumpTo;
917             int Index = CollIndex (&S->Labels, L);
918             if (Index >= 0 && CollCount (&L->JumpFrom) == 1) {
919                 /* Delete it from the pool */
920                 CollDelete (&S->Labels, Index);
921             }
922
923             /* Remove the reference to the label */
924             CS_RemoveLabelRef (S, E);
925         }
926
927     }
928
929     /* Second pass: Delete the instructions. If a label attached to an
930      * instruction still has references, it must be references from outside
931      * the deleted area. Don't delete the label in this case, just make it
932      * ownerless and move it to the label pool.
933      */
934     C = Count;
935     while (Last < C--) {
936
937         /* Get the next entry */
938         CodeEntry* E = CS_GetEntry (S, C);
939
940         /* Check if this entry has a label attached */
941         if (CE_HasLabel (E)) {
942             /* Move the labels to the pool and clear the owner pointer */
943             CS_MoveLabelsToPool (S, E);
944         }
945
946         /* Delete the pointer to the entry */
947         CollDelete (&S->Entries, C);
948
949         /* Delete the entry itself */
950         FreeCodeEntry (E);
951     }
952 }
953
954
955
956 void CS_Output (const CodeSeg* S, FILE* F)
957 /* Output the code segment data to a file */
958 {
959     unsigned I;
960     const LineInfo* LI;
961
962     /* Get the number of entries in this segment */
963     unsigned Count = CS_GetEntryCount (S);
964
965     /* If the code segment is empty, bail out here */
966     if (Count == 0) {
967         return;
968     }
969
970     /* Output the segment directive */
971     fprintf (F, ".segment\t\"%s\"\n\n", S->SegName);
972
973     /* If this is a segment for a function, enter a function */
974     if (S->Func) {
975         fprintf (F, ".proc\t_%s\n\n", S->Func->Name);
976     }
977
978     /* Output all entries, prepended by the line information if it has changed */
979     LI = 0;
980     for (I = 0; I < Count; ++I) {
981         /* Get the next entry */
982         const CodeEntry* E = CollConstAt (&S->Entries, I);
983         /* Check if the line info has changed. If so, output the source line
984          * if the option is enabled and output debug line info if the debug
985          * option is enabled.
986          */
987         if (E->LI != LI) {
988             /* Line info has changed, remember the new line info */
989             LI = E->LI;
990
991             /* Add the source line as a comment */
992             if (AddSource) {
993                 fprintf (F, ";\n; %s\n;\n", LI->Line);
994             }
995
996             /* Add line debug info */
997             if (DebugInfo) {
998                 fprintf (F, "\t.dbg\tline, \"%s\", %u\n",
999                          GetInputName (LI), GetInputLine (LI));
1000             }
1001         }
1002         /* Output the code */
1003         CE_Output (E, F);
1004     }
1005
1006     /* If debug info is enabled, terminate the last line number information */
1007     if (DebugInfo) {
1008         fprintf (F, "\t.dbg\tline\n");
1009     }
1010
1011     /* If this is a segment for a function, leave the function */
1012     if (S->Func) {
1013         fprintf (F, "\n.endproc\n\n");
1014     }
1015 }
1016
1017
1018
1019 void CS_FreeRegInfo (CodeSeg* S)
1020 /* Free register infos for all instructions */
1021 {
1022     unsigned I;
1023     for (I = 0; I < CS_GetEntryCount (S); ++I) {
1024         CE_FreeRegInfo (CS_GetEntry(S, I));
1025     }
1026 }
1027
1028
1029
1030 void CS_GenRegInfo (CodeSeg* S)
1031 /* Generate register infos for all instructions */
1032 {
1033     unsigned I;
1034     RegContents Regs;
1035     RegContents* CurrentRegs;
1036     int WasJump;
1037
1038     /* Be sure to delete all register infos */
1039     CS_FreeRegInfo (S);
1040
1041     /* On entry, the register contents are unknown */
1042     RC_Invalidate (&Regs);
1043     CurrentRegs = &Regs;
1044
1045     /* First pass. Walk over all insns an note just the changes from one
1046      * insn to the next one.
1047      */
1048     WasJump = 0;
1049     for (I = 0; I < CS_GetEntryCount (S); ++I) {
1050
1051         CodeEntry* P;
1052
1053         /* Get the next instruction */
1054         CodeEntry* E = CollAtUnchecked (&S->Entries, I);
1055
1056         /* If the instruction has a label, we need some special handling */
1057         unsigned LabelCount = CE_GetLabelCount (E);
1058         if (LabelCount > 0) {
1059
1060             /* Loop over all entry points that jump here. If these entry
1061              * points already have register info, check if all values are
1062              * known and identical. If all values are identical, and the
1063              * preceeding instruction was not an unconditional branch, check
1064              * if the register value on exit of the preceeding instruction
1065              * is also identical. If all these values are identical, the
1066              * value of a register is known, otherwise it is unknown.
1067              */
1068             CodeLabel* Label = CE_GetLabel (E, 0);
1069             unsigned Entry;
1070             if (WasJump) {
1071                 /* Preceeding insn was an unconditional branch */
1072                 CodeEntry* J = CL_GetRef(Label, 0);
1073                 if (J->RI) {
1074                     Regs = J->RI->Out2;
1075                 } else {
1076                     RC_Invalidate (&Regs);
1077                 }
1078                 Entry = 1;
1079             } else {
1080                 Regs = *CurrentRegs;
1081                 Entry = 0;
1082             }
1083
1084             while (Entry < CL_GetRefCount (Label)) {
1085                 /* Get this entry */
1086                 CodeEntry* J = CL_GetRef (Label, Entry);
1087                 if (J->RI == 0) {
1088                     /* No register info for this entry, bail out */
1089                     RC_Invalidate (&Regs);
1090                     break;
1091                 }
1092                 if (J->RI->Out2.RegA != Regs.RegA) {
1093                     Regs.RegA = -1;
1094                 }
1095                 if (J->RI->Out2.RegX != Regs.RegX) {
1096                     Regs.RegX = -1;
1097                 }
1098                 if (J->RI->Out2.RegY != Regs.RegY) {
1099                     Regs.RegY = -1;
1100                 }
1101                 ++Entry;
1102             }
1103
1104             /* Use this register info */
1105             CurrentRegs = &Regs;
1106
1107         }
1108
1109         /* Generate register info for this instruction */
1110         CE_GenRegInfo (E, CurrentRegs);
1111
1112         /* Remember for the next insn if this insn was an uncondition branch */
1113         WasJump = (E->Info & OF_UBRA) != 0;
1114
1115         /* Output registers for this insn are input for the next */
1116         CurrentRegs = &E->RI->Out;
1117
1118         /* If this insn is a branch on zero flag, we may have more info on
1119          * register contents for one of both flow directions, but only if
1120          * there is a previous instruction.
1121          */
1122         if ((E->Info & OF_ZBRA) != 0 && (P = CS_GetPrevEntry (S, I)) != 0) {
1123
1124             /* Get the branch condition */
1125             bc_t BC = GetBranchCond (E->OPC);
1126
1127             /* Check the previous instruction */
1128             switch (P->OPC) {
1129
1130                 case OP65_ADC:
1131                 case OP65_AND:
1132                 case OP65_DEA:
1133                 case OP65_EOR:
1134                 case OP65_INA:
1135                 case OP65_LDA:
1136                 case OP65_ORA:
1137                 case OP65_PLA:
1138                 case OP65_SBC:
1139                     /* A is zero in one execution flow direction */
1140                     if (BC == BC_EQ) {
1141                         E->RI->Out2.RegA = 0;
1142                     } else {
1143                         E->RI->Out.RegA = 0;
1144                     }
1145                     break;
1146
1147                 case OP65_CMP:
1148                     /* If this is an immidiate compare, the A register has
1149                      * the value of the compare later.
1150                      */
1151                     if (CE_KnownImm (P)) {
1152                         if (BC == BC_EQ) {
1153                             E->RI->Out2.RegA = (unsigned char)P->Num;
1154                         } else {
1155                             E->RI->Out.RegA = (unsigned char)P->Num;
1156                         }
1157                     }
1158                     break;
1159
1160                 case OP65_CPX:
1161                     /* If this is an immidiate compare, the X register has
1162                      * the value of the compare later.
1163                      */
1164                     if (CE_KnownImm (P)) {
1165                         if (BC == BC_EQ) {
1166                             E->RI->Out2.RegX = (unsigned char)P->Num;
1167                         } else {
1168                             E->RI->Out.RegX = (unsigned char)P->Num;
1169                         }
1170                     }
1171                     break;
1172
1173                 case OP65_CPY:
1174                     /* If this is an immidiate compare, the Y register has
1175                      * the value of the compare later.
1176                      */
1177                     if (CE_KnownImm (P)) {
1178                         if (BC == BC_EQ) {
1179                             E->RI->Out2.RegY = (unsigned char)P->Num;
1180                         } else {
1181                             E->RI->Out.RegY = (unsigned char)P->Num;
1182                         }
1183                     }
1184                     break;
1185
1186                 case OP65_DEX:
1187                 case OP65_INX:
1188                 case OP65_LDX:
1189                 case OP65_PLX:
1190                     /* X is zero in one execution flow direction */
1191                     if (BC == BC_EQ) {
1192                         E->RI->Out2.RegX = 0;
1193                     } else {
1194                         E->RI->Out.RegX = 0;
1195                     }
1196                     break;
1197
1198                 case OP65_DEY:
1199                 case OP65_INY:
1200                 case OP65_LDY:
1201                 case OP65_PLY:
1202                     /* X is zero in one execution flow direction */
1203                     if (BC == BC_EQ) {
1204                         E->RI->Out2.RegY = 0;
1205                     } else {
1206                         E->RI->Out.RegY = 0;
1207                     }
1208                     break;
1209
1210                 case OP65_TAX:
1211                 case OP65_TXA:
1212                     /* If the branch is a beq, both A and X are zero at the
1213                      * branch target, otherwise they are zero at the next
1214                      * insn.
1215                      */
1216                     if (BC == BC_EQ) {
1217                         E->RI->Out2.RegA = E->RI->Out2.RegX = 0;
1218                     } else {
1219                         E->RI->Out.RegA = E->RI->Out.RegX = 0;
1220                     }
1221                     break;
1222
1223                 case OP65_TAY:
1224                 case OP65_TYA:
1225                     /* If the branch is a beq, both A and Y are zero at the
1226                      * branch target, otherwise they are zero at the next
1227                      * insn.
1228                      */
1229                     if (BC == BC_EQ) {
1230                         E->RI->Out2.RegA = E->RI->Out2.RegY = 0;
1231                     } else {
1232                         E->RI->Out.RegA = E->RI->Out.RegY = 0;
1233                     }
1234                     break;
1235
1236                 default:
1237                     break;
1238
1239             }
1240         }
1241     }
1242 }
1243
1244
1245