]> git.sur5r.net Git - cc65/blob - src/cc65/codeseg.c
Don't allow to call subroutines that aren't actual functions.
[cc65] / src / cc65 / codeseg.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 codeseg.c                                 */
4 /*                                                                           */
5 /*                          Code segment structure                           */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2001-2009, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
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 "debugflag.h"
43 #include "global.h"
44 #include "hashstr.h"
45 #include "strbuf.h"
46 #include "strutil.h"
47 #include "xmalloc.h"
48
49 /* cc65 */
50 #include "asmlabel.h"
51 #include "codeent.h"
52 #include "codeinfo.h"
53 #include "codeseg.h"
54 #include "datatype.h"
55 #include "error.h"
56 #include "global.h"
57 #include "ident.h"
58 #include "output.h"
59 #include "symentry.h"
60
61
62
63 /*****************************************************************************/
64 /*                             Helper functions                              */
65 /*****************************************************************************/
66
67
68
69 static void CS_PrintFunctionHeader (const CodeSeg* S)
70 /* Print a comment with the function signature to the output file */
71 {
72     /* Get the associated function */
73     const SymEntry* Func = S->Func;
74
75     /* If this is a global code segment, do nothing */
76     if (Func) {
77         WriteOutput ("; ---------------------------------------------------------------\n"
78                      "; ");
79         PrintFuncSig (OutputFile, Func->Name, Func->Type);
80         WriteOutput ("\n"
81                      "; ---------------------------------------------------------------\n"
82                      "\n");
83     }
84 }
85
86
87
88 static void CS_MoveLabelsToEntry (CodeSeg* S, CodeEntry* E)
89 /* Move all labels from the label pool to the given entry and remove them
90  * from the pool.
91  */
92 {
93     /* Transfer the labels if we have any */
94     unsigned I;
95     unsigned LabelCount = CollCount (&S->Labels);
96     for (I = 0; I < LabelCount; ++I) {
97
98         /* Get the label */
99         CodeLabel* L = CollAt (&S->Labels, I);
100
101         /* Attach it to the entry */
102         CE_AttachLabel (E, L);
103     }
104
105     /* Delete the transfered labels */
106     CollDeleteAll (&S->Labels);
107 }
108
109
110
111 static void CS_MoveLabelsToPool (CodeSeg* S, CodeEntry* E)
112 /* Move the labels of the code entry E to the label pool of the code segment */
113 {
114     unsigned LabelCount = CE_GetLabelCount (E);
115     while (LabelCount--) {
116         CodeLabel* L = CE_GetLabel (E, LabelCount);
117         L->Owner = 0;
118         CollAppend (&S->Labels, L);
119     }
120     CollDeleteAll (&E->Labels);
121 }
122
123
124
125 static CodeLabel* CS_FindLabel (CodeSeg* S, const char* Name, unsigned Hash)
126 /* Find the label with the given name. Return the label or NULL if not found */
127 {
128     /* Get the first hash chain entry */
129     CodeLabel* L = S->LabelHash[Hash];
130
131     /* Search the list */
132     while (L) {
133         if (strcmp (Name, L->Name) == 0) {
134             /* Found */
135             break;
136         }
137         L = L->Next;
138     }
139     return L;
140 }
141
142
143
144 static CodeLabel* CS_NewCodeLabel (CodeSeg* S, const char* Name, unsigned Hash)
145 /* Create a new label and insert it into the label hash table */
146 {
147     /* Create a new label */
148     CodeLabel* L = NewCodeLabel (Name, Hash);
149
150     /* Enter the label into the hash table */
151     L->Next = S->LabelHash[L->Hash];
152     S->LabelHash[L->Hash] = L;
153
154     /* Return the new label */
155     return L;
156 }
157
158
159
160 static void CS_RemoveLabelFromHash (CodeSeg* S, CodeLabel* L)
161 /* Remove the given code label from the hash list */
162 {
163     /* Get the first entry in the hash chain */
164     CodeLabel* List = S->LabelHash[L->Hash];
165     CHECK (List != 0);
166
167     /* First, remove the label from the hash chain */
168     if (List == L) {
169         /* First entry in hash chain */
170         S->LabelHash[L->Hash] = L->Next;
171     } else {
172         /* Must search through the chain */
173         while (List->Next != L) {
174             /* If we've reached the end of the chain, something is *really* wrong */
175             CHECK (List->Next != 0);
176             /* Next entry */
177             List = List->Next;
178         }
179         /* The next entry is the one, we have been searching for */
180         List->Next = L->Next;
181     }
182 }
183
184
185
186 /*****************************************************************************/
187 /*                    Functions for parsing instructions                     */
188 /*****************************************************************************/
189
190
191
192 static const char* SkipSpace (const char* S)
193 /* Skip white space and return an updated pointer */
194 {
195     while (IsSpace (*S)) {
196         ++S;
197     }
198     return S;
199 }
200
201
202
203 static const char* ReadToken (const char* L, const char* Term,
204                               char* Buf, unsigned BufSize)
205 /* Read the next token into Buf, return the updated line pointer. The
206  * token is terminated by one of the characters given in term.
207  */
208 {
209     /* Read/copy the token */
210     unsigned I = 0;
211     unsigned ParenCount = 0;
212     while (*L && (ParenCount > 0 || strchr (Term, *L) == 0)) {
213         if (I < BufSize-1) {
214             Buf[I] = *L;
215         } else if (I == BufSize-1) {
216             /* Cannot store this character, this is an input error (maybe
217              * identifier too long or similar).
218              */
219             Error ("ASM code error: syntax error");
220         }
221         ++I;
222         if (*L == ')') {
223             --ParenCount;
224         } else if (*L == '(') {
225             ++ParenCount;
226         }
227         ++L;
228     }
229
230     /* Terminate the buffer contents */
231     Buf[I] = '\0';
232
233     /* Return the updated line pointer */
234     return L;
235 }
236
237
238
239 static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L)
240 /* Parse an instruction nnd generate a code entry from it. If the line contains
241  * errors, output an error message and return NULL.
242  * For simplicity, we don't accept the broad range of input a "real" assembler
243  * does. The instruction and the argument are expected to be separated by
244  * white space, for example.
245  */
246 {
247     char                Mnemo[IDENTSIZE+10];
248     const OPCDesc*      OPC;
249     am_t                AM = 0;         /* Initialize to keep gcc silent */
250     char                Arg[IDENTSIZE+10];
251     char                Reg;
252     CodeEntry*          E;
253     CodeLabel*          Label;
254
255     /* Read the first token and skip white space after it */
256     L = SkipSpace (ReadToken (L, " \t:", Mnemo, sizeof (Mnemo)));
257
258     /* Check if we have a label */
259     if (*L == ':') {
260
261         /* Skip the colon and following white space */
262         L = SkipSpace (L+1);
263
264         /* Add the label */
265         CS_AddLabel (S, Mnemo);
266
267         /* If we have reached end of line, bail out, otherwise a mnemonic
268          * may follow.
269          */
270         if (*L == '\0') {
271             return 0;
272         }
273
274         L = SkipSpace (ReadToken (L, " \t", Mnemo, sizeof (Mnemo)));
275     }
276
277     /* Try to find the opcode description for the mnemonic */
278     OPC = FindOP65 (Mnemo);
279
280     /* If we didn't find the opcode, print an error and bail out */
281     if (OPC == 0) {
282         Error ("ASM code error: %s is not a valid mnemonic", Mnemo);
283         return 0;
284     }
285
286     /* Get the addressing mode */
287     Arg[0] = '\0';
288     switch (*L) {
289
290         case '\0':
291             /* Implicit or accu */
292             if (OPC->Info & OF_NOIMP) {
293                 AM = AM65_ACC;
294             } else {
295                 AM = AM65_IMP;
296             }
297             break;
298
299         case '#':
300             /* Immidiate */
301             StrCopy (Arg, sizeof (Arg), L+1);
302             AM = AM65_IMM;
303             break;
304
305         case '(':
306             /* Indirect */
307             L = ReadToken (L+1, ",)", Arg, sizeof (Arg));
308
309             /* Check for errors */
310             if (*L == '\0') {
311                 Error ("ASM code error: syntax error");
312                 return 0;
313             }
314
315             /* Check the different indirect modes */
316             if (*L == ',') {
317                 /* Expect zp x indirect */
318                 L = SkipSpace (L+1);
319                 if (toupper (*L) != 'X') {
320                     Error ("ASM code error: `X' expected");
321                     return 0;
322                 }
323                 L = SkipSpace (L+1);
324                 if (*L != ')') {
325                     Error ("ASM code error: `)' expected");
326                     return 0;
327                 }
328                 L = SkipSpace (L+1);
329                 if (*L != '\0') {
330                     Error ("ASM code error: syntax error");
331                     return 0;
332                 }
333                 AM = AM65_ZPX_IND;
334             } else if (*L == ')') {
335                 /* zp indirect or zp indirect, y */
336                 L = SkipSpace (L+1);
337                 if (*L == ',') {
338                     L = SkipSpace (L+1);
339                     if (toupper (*L) != 'Y') {
340                         Error ("ASM code error: `Y' expected");
341                         return 0;
342                     }
343                     L = SkipSpace (L+1);
344                     if (*L != '\0') {
345                         Error ("ASM code error: syntax error");
346                         return 0;
347                     }
348                     AM = AM65_ZP_INDY;
349                 } else if (*L == '\0') {
350                     AM = AM65_ZP_IND;
351                 } else {
352                     Error ("ASM code error: syntax error");
353                     return 0;
354                 }
355             }
356             break;
357
358         case 'a':
359         case 'A':
360             /* Accumulator? */
361             if (L[1] == '\0') {
362                 AM = AM65_ACC;
363                 break;
364             }
365             /* FALLTHROUGH */
366
367         default:
368             /* Absolute, maybe indexed */
369             L = ReadToken (L, ",", Arg, sizeof (Arg));
370             if (*L == '\0') {
371                 /* Absolute, zeropage or branch */
372                 if ((OPC->Info & OF_BRA) != 0) {
373                     /* Branch */
374                     AM = AM65_BRA;
375                 } else if (GetZPInfo(Arg) != 0) {
376                     AM = AM65_ZP;
377                 } else {
378                     /* Check for subroutine call to local label */
379                     if ((OPC->Info & OF_CALL) && IsLocalLabelName (Arg)) {
380                         Error ("ASM code error: "
381                                "Cannot use local label `%s' in subroutine call",
382                                Arg);
383                     }
384                     AM = AM65_ABS;
385                 }
386             } else if (*L == ',') {
387                 /* Indexed */
388                 L = SkipSpace (L+1);
389                 if (*L == '\0') {
390                     Error ("ASM code error: syntax error");
391                     return 0;
392                 } else {
393                     Reg = toupper (*L);
394                     L = SkipSpace (L+1);
395                     if (Reg == 'X') {
396                         if (GetZPInfo(Arg) != 0) {
397                             AM = AM65_ZPX;
398                         } else {
399                             AM = AM65_ABSX;
400                         }
401                     } else if (Reg == 'Y') {
402                         AM = AM65_ABSY;
403                     } else {
404                         Error ("ASM code error: syntax error");
405                         return 0;
406                     }
407                     if (*L != '\0') {
408                         Error ("ASM code error: syntax error");
409                         return 0;
410                     }
411                 }
412             }
413             break;
414
415     }
416
417     /* If the instruction is a branch, check for the label and generate it
418      * if it does not exist. This may lead to unused labels (if the label
419      * is actually an external one) which are removed by the CS_MergeLabels
420      * function later.
421      */
422     Label = 0;
423     if (AM == AM65_BRA) {
424
425         /* Generate the hash over the label, then search for the label */
426         unsigned Hash = HashStr (Arg) % CS_LABEL_HASH_SIZE;
427         Label = CS_FindLabel (S, Arg, Hash);
428
429         /* If we don't have the label, it's a forward ref - create it */
430         if (Label == 0) {
431             /* Generate a new label */
432             Label = CS_NewCodeLabel (S, Arg, Hash);
433         }
434     }
435
436     /* We do now have the addressing mode in AM. Allocate a new CodeEntry
437      * structure and initialize it.
438      */
439     E = NewCodeEntry (OPC->OPC, AM, Arg, Label, LI);
440
441     /* Return the new code entry */
442     return E;
443 }
444
445
446
447 /*****************************************************************************/
448 /*                                   Code                                    */
449 /*****************************************************************************/
450
451
452
453 CodeSeg* NewCodeSeg (const char* SegName, SymEntry* Func)
454 /* Create a new code segment, initialize and return it */
455 {
456     unsigned I;
457     const Type* RetType;
458
459     /* Allocate memory */
460     CodeSeg* S = xmalloc (sizeof (CodeSeg));
461
462     /* Initialize the fields */
463     S->SegName  = xstrdup (SegName);
464     S->Func     = Func;
465     InitCollection (&S->Entries);
466     InitCollection (&S->Labels);
467     for (I = 0; I < sizeof(S->LabelHash) / sizeof(S->LabelHash[0]); ++I) {
468         S->LabelHash[I] = 0;
469     }
470
471     /* If we have a function given, get the return type of the function.
472      * Assume ANY return type besides void will use the A and X registers.
473      */
474     if (S->Func && !IsTypeVoid ((RetType = GetFuncReturn (Func->Type)))) {
475         if (SizeOf (RetType) == SizeOf (type_long)) {
476             S->ExitRegs = REG_EAX;
477         } else {
478             S->ExitRegs = REG_AX;
479         }
480     } else {
481         S->ExitRegs = REG_NONE;
482     }
483
484     /* Copy the global optimization settings */
485     S->Optimize       = (unsigned char) IS_Get (&Optimize);
486     S->CodeSizeFactor = (unsigned) IS_Get (&CodeSizeFactor);
487
488     /* Return the new struct */
489     return S;
490 }
491
492
493
494 void CS_AddEntry (CodeSeg* S, struct CodeEntry* E)
495 /* Add an entry to the given code segment */
496 {
497     /* Transfer the labels if we have any */
498     CS_MoveLabelsToEntry (S, E);
499
500     /* Add the entry to the list of code entries in this segment */
501     CollAppend (&S->Entries, E);
502 }
503
504
505
506 void CS_AddVLine (CodeSeg* S, LineInfo* LI, const char* Format, va_list ap)
507 /* Add a line to the given code segment */
508 {
509     const char* L;
510     CodeEntry*  E;
511     char        Token[IDENTSIZE+10];
512
513     /* Format the line */
514     StrBuf Buf = STATIC_STRBUF_INITIALIZER;
515     SB_VPrintf (&Buf, Format, ap);
516
517     /* Skip whitespace */
518     L = SkipSpace (SB_GetConstBuf (&Buf));
519
520     /* Check which type of instruction we have */
521     E = 0;      /* Assume no insn created */
522     switch (*L) {
523
524         case '\0':
525             /* Empty line, just ignore it */
526             break;
527
528         case ';':
529             /* Comment or hint, ignore it for now */
530             break;
531
532         case '.':
533             /* Control instruction */
534             ReadToken (L, " \t", Token, sizeof (Token));
535             Error ("ASM code error: Pseudo instruction `%s' not supported", Token);
536             break;
537
538         default:
539             E = ParseInsn (S, LI, L);
540             break;
541     }
542
543     /* If we have a code entry, transfer the labels and insert it */
544     if (E) {
545         CS_AddEntry (S, E);
546     }
547
548     /* Cleanup the string buffer */
549     SB_Done (&Buf);
550 }
551
552
553
554 void CS_AddLine (CodeSeg* S, LineInfo* LI, const char* Format, ...)
555 /* Add a line to the given code segment */
556 {
557     va_list ap;
558     va_start (ap, Format);
559     CS_AddVLine (S, LI, Format, ap);
560     va_end (ap);
561 }
562
563
564
565 void CS_InsertEntry (CodeSeg* S, struct CodeEntry* E, unsigned Index)
566 /* Insert the code entry at the index given. Following code entries will be
567  * moved to slots with higher indices.
568  */
569 {
570     /* Insert the entry into the collection */
571     CollInsert (&S->Entries, E, Index);
572 }
573
574
575
576 void CS_DelEntry (CodeSeg* S, unsigned Index)
577 /* Delete an entry from the code segment. This includes moving any associated
578  * labels, removing references to labels and even removing the referenced labels
579  * if the reference count drops to zero.
580  * Note: Labels are moved forward if possible, that is, they are moved to the
581  * next insn (not the preceeding one).
582  */
583 {
584     /* Get the code entry for the given index */
585     CodeEntry* E = CS_GetEntry (S, Index);
586
587     /* If the entry has a labels, we have to move this label to the next insn.
588      * If there is no next insn, move the label into the code segement label
589      * pool. The operation is further complicated by the fact that the next
590      * insn may already have a label. In that case change all reference to
591      * this label and delete the label instead of moving it.
592      */
593     unsigned Count = CE_GetLabelCount (E);
594     if (Count > 0) {
595
596         /* The instruction has labels attached. Check if there is a next
597          * instruction.
598          */
599         if (Index == CS_GetEntryCount (S)-1) {
600
601             /* No next instruction, move to the codeseg label pool */
602             CS_MoveLabelsToPool (S, E);
603
604         } else {
605
606             /* There is a next insn, get it */
607             CodeEntry* N = CS_GetEntry (S, Index+1);
608
609             /* Move labels to the next entry */
610             CS_MoveLabels (S, E, N);
611
612         }
613     }
614
615     /* If this insn references a label, remove the reference. And, if the
616      * the reference count for this label drops to zero, remove this label.
617      */
618     if (E->JumpTo) {
619         /* Remove the reference */
620         CS_RemoveLabelRef (S, E);
621     }
622
623     /* Delete the pointer to the insn */
624     CollDelete (&S->Entries, Index);
625
626     /* Delete the instruction itself */
627     FreeCodeEntry (E);
628 }
629
630
631
632 void CS_DelEntries (CodeSeg* S, unsigned Start, unsigned Count)
633 /* Delete a range of code entries. This includes removing references to labels,
634  * labels attached to the entries and so on.
635  */
636 {
637     /* Start deleting the entries from the rear, because this involves less
638      * memory moving.
639      */
640     while (Count--) {
641         CS_DelEntry (S, Start + Count);
642     }
643 }
644
645
646
647 void CS_MoveEntries (CodeSeg* S, unsigned Start, unsigned Count, unsigned NewPos)
648 /* Move a range of entries from one position to another. Start is the index
649  * of the first entry to move, Count is the number of entries and NewPos is
650  * the index of the target entry. The entry with the index Start will later
651  * have the index NewPos. All entries with indices NewPos and above are
652  * moved to higher indices. If the code block is moved to the end of the
653  * current code, and if pending labels exist, these labels will get attached
654  * to the first instruction of the moved block (the first one after the
655  * current code end)
656  */
657 {
658     /* If NewPos is at the end of the code segment, move any labels from the
659      * label pool to the first instruction of the moved range.
660      */
661     if (NewPos == CS_GetEntryCount (S)) {
662         CS_MoveLabelsToEntry (S, CS_GetEntry (S, Start));
663     }
664
665     /* Move the code block to the destination */
666     CollMoveMultiple (&S->Entries, Start, Count, NewPos);
667 }
668
669
670
671 struct CodeEntry* CS_GetPrevEntry (CodeSeg* S, unsigned Index)
672 /* Get the code entry preceeding the one with the index Index. If there is no
673  * preceeding code entry, return NULL.
674  */
675 {
676     if (Index == 0) {
677         /* This is the first entry */
678         return 0;
679     } else {
680         /* Previous entry available */
681         return CollAtUnchecked (&S->Entries, Index-1);
682     }
683 }
684
685
686
687 struct CodeEntry* CS_GetNextEntry (CodeSeg* S, unsigned Index)
688 /* Get the code entry following the one with the index Index. If there is no
689  * following code entry, return NULL.
690  */
691 {
692     if (Index >= CollCount (&S->Entries)-1) {
693         /* This is the last entry */
694         return 0;
695     } else {
696         /* Code entries left */
697         return CollAtUnchecked (&S->Entries, Index+1);
698     }
699 }
700
701
702
703 int CS_GetEntries (CodeSeg* S, struct CodeEntry** List,
704                    unsigned Start, unsigned Count)
705 /* Get Count code entries into List starting at index start. Return true if
706  * we got the lines, return false if not enough lines were available.
707  */
708 {
709     /* Check if enough entries are available */
710     if (Start + Count > CollCount (&S->Entries)) {
711         return 0;
712     }
713
714     /* Copy the entries */
715     while (Count--) {
716         *List++ = CollAtUnchecked (&S->Entries, Start++);
717     }
718
719     /* We have the entries */
720     return 1;
721 }
722
723
724
725 unsigned CS_GetEntryIndex (CodeSeg* S, struct CodeEntry* E)
726 /* Return the index of a code entry */
727 {
728     int Index = CollIndex (&S->Entries, E);
729     CHECK (Index >= 0);
730     return Index;
731 }
732
733
734
735 int CS_RangeHasLabel (CodeSeg* S, unsigned Start, unsigned Count)
736 /* Return true if any of the code entries in the given range has a label
737  * attached. If the code segment does not span the given range, check the
738  * possible span instead.
739  */
740 {
741     unsigned EntryCount = CS_GetEntryCount(S);
742
743     /* Adjust count. We expect at least Start to be valid. */
744     CHECK (Start < EntryCount);
745     if (Start + Count > EntryCount) {
746         Count = EntryCount - Start;
747     }
748
749     /* Check each entry. Since we have validated the index above, we may
750      * use the unchecked access function in the loop which is faster.
751      */
752     while (Count--) {
753         const CodeEntry* E = CollAtUnchecked (&S->Entries, Start++);
754         if (CE_HasLabel (E)) {
755             return 1;
756         }
757     }
758
759     /* No label in the complete range */
760     return 0;
761 }
762
763
764
765 CodeLabel* CS_AddLabel (CodeSeg* S, const char* Name)
766 /* Add a code label for the next instruction to follow */
767 {
768     /* Calculate the hash from the name */
769     unsigned Hash = HashStr (Name) % CS_LABEL_HASH_SIZE;
770
771     /* Try to find the code label if it does already exist */
772     CodeLabel* L = CS_FindLabel (S, Name, Hash);
773
774     /* Did we find it? */
775     if (L) {
776         /* We found it - be sure it does not already have an owner */
777         if (L->Owner) {
778             Error ("ASM label `%s' is already defined", Name);
779             return L;
780         }
781     } else {
782         /* Not found - create a new one */
783         L = CS_NewCodeLabel (S, Name, Hash);
784     }
785
786     /* Safety. This call is quite costly, but safety is better */
787     if (CollIndex (&S->Labels, L) >= 0) {
788         Error ("ASM label `%s' is already defined", Name);
789         return L;
790     }
791
792     /* We do now have a valid label. Remember it for later */
793     CollAppend (&S->Labels, L);
794
795     /* Return the label */
796     return L;
797 }
798
799
800
801 CodeLabel* CS_GenLabel (CodeSeg* S, struct CodeEntry* E)
802 /* If the code entry E does already have a label, return it. Otherwise
803  * create a new label, attach it to E and return it.
804  */
805 {
806     CodeLabel* L;
807
808     if (CE_HasLabel (E)) {
809
810         /* Get the label from this entry */
811         L = CE_GetLabel (E, 0);
812
813     } else {
814
815         /* Get a new name */
816         const char* Name = LocalLabelName (GetLocalLabel ());
817
818         /* Generate the hash over the name */
819         unsigned Hash = HashStr (Name) % CS_LABEL_HASH_SIZE;
820
821         /* Create a new label */
822         L = CS_NewCodeLabel (S, Name, Hash);
823
824         /* Attach this label to the code entry */
825         CE_AttachLabel (E, L);
826
827     }
828
829     /* Return the label */
830     return L;
831 }
832
833
834
835 void CS_DelLabel (CodeSeg* S, CodeLabel* L)
836 /* Remove references from this label and delete it. */
837 {
838     unsigned Count, I;
839
840     /* First, remove the label from the hash chain */
841     CS_RemoveLabelFromHash (S, L);
842
843     /* Remove references from insns jumping to this label */
844     Count = CollCount (&L->JumpFrom);
845     for (I = 0; I < Count; ++I) {
846         /* Get the insn referencing this label */
847         CodeEntry* E = CollAt (&L->JumpFrom, I);
848         /* Remove the reference */
849         CE_ClearJumpTo (E);
850     }
851     CollDeleteAll (&L->JumpFrom);
852
853     /* Remove the reference to the owning instruction if it has one. The
854      * function may be called for a label without an owner when deleting
855      * unfinished parts of the code. This is unfortunate since it allows
856      * errors to slip through.
857      */
858     if (L->Owner) {
859         CollDeleteItem (&L->Owner->Labels, L);
860     }
861
862     /* All references removed, delete the label itself */
863     FreeCodeLabel (L);
864 }
865
866
867
868 void CS_MergeLabels (CodeSeg* S)
869 /* Merge code labels. That means: For each instruction, remove all labels but
870  * one and adjust references accordingly.
871  */
872 {
873     unsigned I;
874     unsigned J;
875
876     /* First, remove all labels from the label symbol table that don't have an
877      * owner (this means that they are actually external labels but we didn't
878      * know that previously since they may have also been forward references).
879      */
880     for (I = 0; I < CS_LABEL_HASH_SIZE; ++I) {
881
882         /* Get the first label in this hash chain */
883         CodeLabel** L = &S->LabelHash[I];
884         while (*L) {
885             if ((*L)->Owner == 0) {
886
887                 /* The label does not have an owner, remove it from the chain */
888                 CodeLabel* X = *L;
889                 *L = X->Next;
890
891                 /* Cleanup any entries jumping to this label */
892                 for (J = 0; J < CL_GetRefCount (X); ++J) {
893                     /* Get the entry referencing this label */
894                     CodeEntry* E = CL_GetRef (X, J);
895                     /* And remove the reference. Do NOT call CE_ClearJumpTo
896                      * here, because this will also clear the label name,
897                      * which is not what we want.
898                      */
899                     E->JumpTo = 0;
900                 }
901
902                 /* Print some debugging output */
903                 if (Debug) {
904                     printf ("Removing unused global label `%s'", X->Name);
905                 }
906
907                 /* And free the label */
908                 FreeCodeLabel (X);
909             } else {
910                 /* Label is owned, point to next code label pointer */
911                 L = &((*L)->Next);
912             }
913         }
914     }
915
916     /* Walk over all code entries */
917     for (I = 0; I < CS_GetEntryCount (S); ++I) {
918
919         CodeLabel* RefLab;
920         unsigned   J;
921
922         /* Get a pointer to the next entry */
923         CodeEntry* E = CS_GetEntry (S, I);
924
925         /* If this entry has zero labels, continue with the next one */
926         unsigned LabelCount = CE_GetLabelCount (E);
927         if (LabelCount == 0) {
928             continue;
929         }
930
931         /* We have at least one label. Use the first one as reference label. */
932         RefLab = CE_GetLabel (E, 0);
933
934         /* Walk through the remaining labels and change references to these
935          * labels to a reference to the one and only label. Delete the labels
936          * that are no longer used. To increase performance, walk backwards
937          * through the list.
938          */
939         for (J = LabelCount-1; J >= 1; --J) {
940
941             /* Get the next label */
942             CodeLabel* L = CE_GetLabel (E, J);
943
944             /* Move all references from this label to the reference label */
945             CL_MoveRefs (L, RefLab);
946
947             /* Remove the label completely. */
948             CS_DelLabel (S, L);
949         }
950
951         /* The reference label is the only remaining label. Check if there
952          * are any references to this label, and delete it if this is not
953          * the case.
954          */
955         if (CollCount (&RefLab->JumpFrom) == 0) {
956             /* Delete the label */
957             CS_DelLabel (S, RefLab);
958         }
959     }
960 }
961
962
963
964 void CS_MoveLabels (CodeSeg* S, struct CodeEntry* Old, struct CodeEntry* New)
965 /* Move all labels from Old to New. The routine will move the labels itself
966  * if New does not have any labels, and move references if there is at least
967  * a label for new. If references are moved, the old label is deleted
968  * afterwards.
969  */
970 {
971     /* Get the number of labels to move */
972     unsigned OldLabelCount = CE_GetLabelCount (Old);
973
974     /* Does the new entry have itself a label? */
975     if (CE_HasLabel (New)) {
976
977         /* The new entry does already have a label - move references */
978         CodeLabel* NewLabel = CE_GetLabel (New, 0);
979         while (OldLabelCount--) {
980
981             /* Get the next label */
982             CodeLabel* OldLabel = CE_GetLabel (Old, OldLabelCount);
983
984             /* Move references */
985             CL_MoveRefs (OldLabel, NewLabel);
986
987             /* Delete the label */
988             CS_DelLabel (S, OldLabel);
989
990         }
991
992     } else {
993
994         /* The new entry does not have a label, just move them */
995         while (OldLabelCount--) {
996
997             /* Move the label to the new entry */
998             CE_MoveLabel (CE_GetLabel (Old, OldLabelCount), New);
999
1000         }
1001
1002     }
1003 }
1004
1005
1006
1007 void CS_RemoveLabelRef (CodeSeg* S, struct CodeEntry* E)
1008 /* Remove the reference between E and the label it jumps to. The reference
1009  * will be removed on both sides and E->JumpTo will be 0 after that. If
1010  * the reference was the only one for the label, the label will get
1011  * deleted.
1012  */
1013 {
1014     /* Get a pointer to the label and make sure it exists */
1015     CodeLabel* L = E->JumpTo;
1016     CHECK (L != 0);
1017
1018     /* Delete the entry from the label */
1019     CollDeleteItem (&L->JumpFrom, E);
1020
1021     /* The entry jumps no longer to L */
1022     CE_ClearJumpTo (E);
1023
1024     /* If there are no more references, delete the label */
1025     if (CollCount (&L->JumpFrom) == 0) {
1026         CS_DelLabel (S, L);
1027     }
1028 }
1029
1030
1031
1032 void CS_MoveLabelRef (CodeSeg* S, struct CodeEntry* E, CodeLabel* L)
1033 /* Change the reference of E to L instead of the current one. If this
1034  * was the only reference to the old label, the old label will get
1035  * deleted.
1036  */
1037 {
1038     /* Get the old label */
1039     CodeLabel* OldLabel = E->JumpTo;
1040
1041     /* Be sure that code entry references a label */
1042     PRECONDITION (OldLabel != 0);
1043
1044     /* Remove the reference to our label */
1045     CS_RemoveLabelRef (S, E);
1046
1047     /* Use the new label */
1048     CL_AddRef (L, E);
1049 }
1050
1051
1052
1053 void CS_DelCodeAfter (CodeSeg* S, unsigned Last)
1054 /* Delete all entries including the given one */
1055 {
1056     /* Get the number of entries in this segment */
1057     unsigned Count = CS_GetEntryCount (S);
1058
1059     /* First pass: Delete all references to labels. If the reference count
1060      * for a label drops to zero, delete it.
1061      */
1062     unsigned C = Count;
1063     while (Last < C--) {
1064
1065         /* Get the next entry */
1066         CodeEntry* E = CS_GetEntry (S, C);
1067
1068         /* Check if this entry has a label reference */
1069         if (E->JumpTo) {
1070             /* If the label is a label in the label pool and this is the last
1071              * reference to the label, remove the label from the pool.
1072              */
1073             CodeLabel* L = E->JumpTo;
1074             int Index = CollIndex (&S->Labels, L);
1075             if (Index >= 0 && CollCount (&L->JumpFrom) == 1) {
1076                 /* Delete it from the pool */
1077                 CollDelete (&S->Labels, Index);
1078             }
1079
1080             /* Remove the reference to the label */
1081             CS_RemoveLabelRef (S, E);
1082         }
1083
1084     }
1085
1086     /* Second pass: Delete the instructions. If a label attached to an
1087      * instruction still has references, it must be references from outside
1088      * the deleted area. Don't delete the label in this case, just make it
1089      * ownerless and move it to the label pool.
1090      */
1091     C = Count;
1092     while (Last < C--) {
1093
1094         /* Get the next entry */
1095         CodeEntry* E = CS_GetEntry (S, C);
1096
1097         /* Check if this entry has a label attached */
1098         if (CE_HasLabel (E)) {
1099             /* Move the labels to the pool and clear the owner pointer */
1100             CS_MoveLabelsToPool (S, E);
1101         }
1102
1103         /* Delete the pointer to the entry */
1104         CollDelete (&S->Entries, C);
1105
1106         /* Delete the entry itself */
1107         FreeCodeEntry (E);
1108     }
1109 }
1110
1111
1112
1113 void CS_ResetMarks (CodeSeg* S, unsigned First, unsigned Last)
1114 /* Remove all user marks from the entries in the given range */
1115 {
1116     while (First <= Last) {
1117         CE_ResetMark (CS_GetEntry (S, First++));
1118     }
1119 }
1120
1121
1122
1123 int CS_IsBasicBlock (CodeSeg* S, unsigned First, unsigned Last)
1124 /* Check if the given code segment range is a basic block. That is, check if
1125  * First is the only entrance and Last is the only exit. This means that no
1126  * jump/branch inside the block may jump to an insn below First or after(!)
1127  * Last, and that no insn may jump into this block from the outside.
1128  */
1129 {
1130     unsigned I;
1131
1132     /* Don't accept invalid ranges */
1133     CHECK (First <= Last);
1134
1135     /* First pass: Walk over the range and remove all marks from the entries */
1136     CS_ResetMarks (S, First, Last);
1137
1138     /* Second pass: Walk over the range checking all labels. Note: There may be
1139      * label on the first insn which is ok.
1140      */
1141     I = First + 1;
1142     while (I <= Last) {
1143
1144         /* Get the next entry */
1145         CodeEntry* E = CS_GetEntry (S, I);
1146
1147         /* Check if this entry has one or more labels, if so, check which
1148          * entries jump to this label.
1149          */
1150         unsigned LabelCount = CE_GetLabelCount (E);
1151         unsigned LabelIndex;
1152         for (LabelIndex = 0; LabelIndex < LabelCount; ++LabelIndex) {
1153
1154             /* Get this label */
1155             CodeLabel* L = CE_GetLabel (E, LabelIndex);
1156
1157             /* Walk over all entries that jump to this label. Check for each
1158              * of the entries if it is out of the range.
1159              */
1160             unsigned RefCount = CL_GetRefCount (L);
1161             unsigned RefIndex;
1162             for (RefIndex = 0; RefIndex < RefCount; ++RefIndex) {
1163
1164                 /* Get the code entry that jumps here */
1165                 CodeEntry* Ref = CL_GetRef (L, RefIndex);
1166
1167                 /* Walk over out complete range and check if we find the
1168                  * refering entry. This is cheaper than using CS_GetEntryIndex,
1169                  * because CS_GetEntryIndex will search the complete code
1170                  * segment and not just our range.
1171                  */
1172                 unsigned J;
1173                 for (J = First; J <= Last; ++J) {
1174                     if (Ref == CS_GetEntry (S, J)) {
1175                         break;
1176                     }
1177                 }
1178                 if (J > Last) {
1179                     /* We did not find the entry. This means that the jump to
1180                      * out code segment entry E came from outside the range,
1181                      * which in turn means that the given range is not a basic
1182                      * block.
1183                      */
1184                     CS_ResetMarks (S, First, Last);
1185                     return 0;
1186                 }
1187
1188                 /* If we come here, we found the entry. Mark it, so we know
1189                  * that the branch to the label is in range.
1190                  */
1191                 CE_SetMark (Ref);
1192             }
1193         }
1194
1195         /* Next entry */
1196         ++I;
1197     }
1198
1199     /* Third pass: Walk again over the range and check all branches. If we
1200      * find a branch that is not marked, its target is not inside the range
1201      * (since we checked all the labels in the range before).
1202      */
1203     I = First;
1204     while (I <= Last) {
1205
1206         /* Get the next entry */
1207         CodeEntry* E = CS_GetEntry (S, I);
1208
1209         /* Check if this is a branch and if so, if it has a mark */
1210         if (E->Info & (OF_UBRA | OF_CBRA)) {
1211             if (!CE_HasMark (E)) {
1212                 /* No mark means not a basic block. Before bailing out, be sure
1213                  * to remove the marks from the remaining entries.
1214                  */
1215                 CS_ResetMarks (S, I+1, Last);
1216                 return 0;
1217             }
1218
1219             /* Remove the mark */
1220             CE_ResetMark (E);
1221         }
1222
1223         /* Next entry */
1224         ++I;
1225     }
1226
1227     /* Done - this is a basic block */
1228     return 1;
1229 }
1230
1231
1232
1233 void CS_OutputPrologue (const CodeSeg* S)
1234 /* If the given code segment is a code segment for a function, output the
1235  * assembler prologue into the file. That is: Output a comment header, switch
1236  * to the correct segment and enter the local function scope. If the code
1237  * segment is global, do nothing.
1238  */
1239 {
1240     /* Get the function associated with the code segment */
1241     SymEntry* Func = S->Func;
1242
1243     /* If the code segment is associated with a function, print a function
1244      * header and enter a local scope. Be sure to switch to the correct
1245      * segment before outputing the function label.
1246      */
1247     if (Func) {
1248         /* Get the function descriptor */
1249         CS_PrintFunctionHeader (S);
1250         WriteOutput (".segment\t\"%s\"\n\n.proc\t_%s", S->SegName, Func->Name);
1251         if (IsQualNear (Func->Type)) {
1252             WriteOutput (": near");
1253         } else if (IsQualFar (Func->Type)) {
1254             WriteOutput (": far");
1255         }
1256         WriteOutput ("\n\n");
1257     }
1258
1259 }
1260
1261
1262
1263 void CS_OutputEpilogue (const CodeSeg* S)
1264 /* If the given code segment is a code segment for a function, output the
1265  * assembler epilogue into the file. That is: Close the local function scope.
1266  */
1267 {
1268     if (S->Func) {
1269         WriteOutput ("\n.endproc\n\n");
1270     }
1271 }
1272
1273
1274
1275 void CS_Output (CodeSeg* S)
1276 /* Output the code segment data to the output file */
1277 {
1278     unsigned I;
1279     const LineInfo* LI;
1280
1281     /* Get the number of entries in this segment */
1282     unsigned Count = CS_GetEntryCount (S);
1283
1284     /* If the code segment is empty, bail out here */
1285     if (Count == 0) {
1286         return;
1287     }
1288
1289     /* Generate register info */
1290     CS_GenRegInfo (S);
1291
1292     /* Output the segment directive */
1293     WriteOutput (".segment\t\"%s\"\n\n", S->SegName);
1294
1295     /* Output all entries, prepended by the line information if it has changed */
1296     LI = 0;
1297     for (I = 0; I < Count; ++I) {
1298         /* Get the next entry */
1299         const CodeEntry* E = CollConstAt (&S->Entries, I);
1300         /* Check if the line info has changed. If so, output the source line
1301          * if the option is enabled and output debug line info if the debug
1302          * option is enabled.
1303          */
1304         if (E->LI != LI) {
1305             /* Line info has changed, remember the new line info */
1306             LI = E->LI;
1307
1308             /* Add the source line as a comment. Beware: When line continuation
1309              * was used, the line may contain newlines.
1310              */
1311             if (AddSource) {
1312                 const char* L = LI->Line;
1313                 WriteOutput (";\n; ");
1314                 while (*L) {
1315                     const char* N = strchr (L, '\n');
1316                     if (N) {
1317                         /* We have a newline, just write the first part */
1318                         WriteOutput ("%.*s\n; ", N - L, L);
1319                         L = N+1;
1320                     } else {
1321                         /* No Newline, write as is */
1322                         WriteOutput ("%s\n", L);
1323                         break;
1324                     }
1325                 }
1326                 WriteOutput (";\n");
1327             }
1328
1329             /* Add line debug info */
1330             if (DebugInfo) {
1331                 WriteOutput ("\t.dbg\tline, \"%s\", %u\n",
1332                              GetInputName (LI), GetInputLine (LI));
1333             }
1334         }
1335         /* Output the code */
1336         CE_Output (E);
1337     }
1338
1339     /* If debug info is enabled, terminate the last line number information */
1340     if (DebugInfo) {
1341         WriteOutput ("\t.dbg\tline\n");
1342     }
1343
1344     /* Free register info */
1345     CS_FreeRegInfo (S);
1346 }
1347
1348
1349
1350 void CS_FreeRegInfo (CodeSeg* S)
1351 /* Free register infos for all instructions */
1352 {
1353     unsigned I;
1354     for (I = 0; I < CS_GetEntryCount (S); ++I) {
1355         CE_FreeRegInfo (CS_GetEntry(S, I));
1356     }
1357 }
1358
1359
1360
1361 void CS_GenRegInfo (CodeSeg* S)
1362 /* Generate register infos for all instructions */
1363 {
1364     unsigned I;
1365     RegContents Regs;           /* Initial register contents */
1366     RegContents* CurrentRegs;   /* Current register contents */
1367     int WasJump;                /* True if last insn was a jump */
1368     int Done;                   /* All runs done flag */
1369
1370     /* Be sure to delete all register infos */
1371     CS_FreeRegInfo (S);
1372
1373     /* We may need two runs to get back references right */
1374     do {
1375
1376         /* Assume we're done after this run */
1377         Done = 1;
1378
1379         /* On entry, the register contents are unknown */
1380         RC_Invalidate (&Regs);
1381         CurrentRegs = &Regs;
1382
1383         /* Walk over all insns and note just the changes from one insn to the
1384          * next one.
1385          */
1386         WasJump = 0;
1387         for (I = 0; I < CS_GetEntryCount (S); ++I) {
1388
1389             CodeEntry* P;
1390
1391             /* Get the next instruction */
1392             CodeEntry* E = CollAtUnchecked (&S->Entries, I);
1393
1394             /* If the instruction has a label, we need some special handling */
1395             unsigned LabelCount = CE_GetLabelCount (E);
1396             if (LabelCount > 0) {
1397
1398                 /* Loop over all entry points that jump here. If these entry
1399                  * points already have register info, check if all values are
1400                  * known and identical. If all values are identical, and the
1401                  * preceeding instruction was not an unconditional branch, check
1402                  * if the register value on exit of the preceeding instruction
1403                  * is also identical. If all these values are identical, the
1404                  * value of a register is known, otherwise it is unknown.
1405                  */
1406                 CodeLabel* Label = CE_GetLabel (E, 0);
1407                 unsigned Entry;
1408                 if (WasJump) {
1409                     /* Preceeding insn was an unconditional branch */
1410                     CodeEntry* J = CL_GetRef(Label, 0);
1411                     if (J->RI) {
1412                         Regs = J->RI->Out2;
1413                     } else {
1414                         RC_Invalidate (&Regs);
1415                     }
1416                     Entry = 1;
1417                 } else {
1418                     Regs = *CurrentRegs;
1419                     Entry = 0;
1420                 }
1421
1422                 while (Entry < CL_GetRefCount (Label)) {
1423                     /* Get this entry */
1424                     CodeEntry* J = CL_GetRef (Label, Entry);
1425                     if (J->RI == 0) {
1426                         /* No register info for this entry. This means that the
1427                          * instruction that jumps here is at higher addresses and
1428                          * the jump is a backward jump. We need a second run to
1429                          * get the register info right in this case. Until then,
1430                          * assume unknown register contents.
1431                          */
1432                         Done = 0;
1433                         RC_Invalidate (&Regs);
1434                         break;
1435                     }
1436                     if (J->RI->Out2.RegA != Regs.RegA) {
1437                         Regs.RegA = UNKNOWN_REGVAL;
1438                     }
1439                     if (J->RI->Out2.RegX != Regs.RegX) {
1440                         Regs.RegX = UNKNOWN_REGVAL;
1441                     }
1442                     if (J->RI->Out2.RegY != Regs.RegY) {
1443                         Regs.RegY = UNKNOWN_REGVAL;
1444                     }
1445                     if (J->RI->Out2.SRegLo != Regs.SRegLo) {
1446                         Regs.SRegLo = UNKNOWN_REGVAL;
1447                     }
1448                     if (J->RI->Out2.SRegHi != Regs.SRegHi) {
1449                         Regs.SRegHi = UNKNOWN_REGVAL;
1450                     }
1451                     if (J->RI->Out2.Tmp1 != Regs.Tmp1) {
1452                         Regs.Tmp1 = UNKNOWN_REGVAL;
1453                     }
1454                     ++Entry;
1455                 }
1456
1457                 /* Use this register info */
1458                 CurrentRegs = &Regs;
1459
1460             }
1461
1462             /* Generate register info for this instruction */
1463             CE_GenRegInfo (E, CurrentRegs);
1464
1465             /* Remember for the next insn if this insn was an uncondition branch */
1466             WasJump = (E->Info & OF_UBRA) != 0;
1467
1468             /* Output registers for this insn are input for the next */
1469             CurrentRegs = &E->RI->Out;
1470
1471             /* If this insn is a branch on zero flag, we may have more info on
1472              * register contents for one of both flow directions, but only if
1473              * there is a previous instruction.
1474              */
1475             if ((E->Info & OF_ZBRA) != 0 && (P = CS_GetPrevEntry (S, I)) != 0) {
1476
1477                 /* Get the branch condition */
1478                 bc_t BC = GetBranchCond (E->OPC);
1479
1480                 /* Check the previous instruction */
1481                 switch (P->OPC) {
1482
1483                     case OP65_ADC:
1484                     case OP65_AND:
1485                     case OP65_DEA:
1486                     case OP65_EOR:
1487                     case OP65_INA:
1488                     case OP65_LDA:
1489                     case OP65_ORA:
1490                     case OP65_PLA:
1491                     case OP65_SBC:
1492                         /* A is zero in one execution flow direction */
1493                         if (BC == BC_EQ) {
1494                             E->RI->Out2.RegA = 0;
1495                         } else {
1496                             E->RI->Out.RegA = 0;
1497                         }
1498                         break;
1499
1500                     case OP65_CMP:
1501                         /* If this is an immidiate compare, the A register has
1502                          * the value of the compare later.
1503                          */
1504                         if (CE_IsConstImm (P)) {
1505                             if (BC == BC_EQ) {
1506                                 E->RI->Out2.RegA = (unsigned char)P->Num;
1507                             } else {
1508                                 E->RI->Out.RegA = (unsigned char)P->Num;
1509                             }
1510                         }
1511                         break;
1512
1513                     case OP65_CPX:
1514                         /* If this is an immidiate compare, the X register has
1515                          * the value of the compare later.
1516                          */
1517                         if (CE_IsConstImm (P)) {
1518                             if (BC == BC_EQ) {
1519                                 E->RI->Out2.RegX = (unsigned char)P->Num;
1520                             } else {
1521                                 E->RI->Out.RegX = (unsigned char)P->Num;
1522                             }
1523                         }
1524                         break;
1525
1526                     case OP65_CPY:
1527                         /* If this is an immidiate compare, the Y register has
1528                          * the value of the compare later.
1529                          */
1530                         if (CE_IsConstImm (P)) {
1531                             if (BC == BC_EQ) {
1532                                 E->RI->Out2.RegY = (unsigned char)P->Num;
1533                             } else {
1534                                 E->RI->Out.RegY = (unsigned char)P->Num;
1535                             }
1536                         }
1537                         break;
1538
1539                     case OP65_DEX:
1540                     case OP65_INX:
1541                     case OP65_LDX:
1542                     case OP65_PLX:
1543                         /* X is zero in one execution flow direction */
1544                         if (BC == BC_EQ) {
1545                             E->RI->Out2.RegX = 0;
1546                         } else {
1547                             E->RI->Out.RegX = 0;
1548                         }
1549                         break;
1550
1551                     case OP65_DEY:
1552                     case OP65_INY:
1553                     case OP65_LDY:
1554                     case OP65_PLY:
1555                         /* X is zero in one execution flow direction */
1556                         if (BC == BC_EQ) {
1557                             E->RI->Out2.RegY = 0;
1558                         } else {
1559                             E->RI->Out.RegY = 0;
1560                         }
1561                         break;
1562
1563                     case OP65_TAX:
1564                     case OP65_TXA:
1565                         /* If the branch is a beq, both A and X are zero at the
1566                          * branch target, otherwise they are zero at the next
1567                          * insn.
1568                          */
1569                         if (BC == BC_EQ) {
1570                             E->RI->Out2.RegA = E->RI->Out2.RegX = 0;
1571                         } else {
1572                             E->RI->Out.RegA = E->RI->Out.RegX = 0;
1573                         }
1574                         break;
1575
1576                     case OP65_TAY:
1577                     case OP65_TYA:
1578                         /* If the branch is a beq, both A and Y are zero at the
1579                          * branch target, otherwise they are zero at the next
1580                          * insn.
1581                          */
1582                         if (BC == BC_EQ) {
1583                             E->RI->Out2.RegA = E->RI->Out2.RegY = 0;
1584                         } else {
1585                             E->RI->Out.RegA = E->RI->Out.RegY = 0;
1586                         }
1587                         break;
1588
1589                     default:
1590                         break;
1591
1592                 }
1593             }
1594         }
1595     } while (!Done);
1596
1597 }
1598
1599
1600