]> git.sur5r.net Git - cc65/blob - src/cc65/codelab.c
Renamed ExprDesc.Val to ExprDesc.IVal. Added an FVal field for a floating
[cc65] / src / cc65 / codelab.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 codelab.c                                 */
4 /*                                                                           */
5 /*                           Code label structure                            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2001     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 /* common */
37 #include "check.h"
38 #include "xmalloc.h"
39
40 /* cc65 */
41 #include "codeent.h"
42 #include "codelab.h"
43
44
45
46 /*****************************************************************************/
47 /*                                   Code                                    */
48 /*****************************************************************************/
49
50
51
52 CodeLabel* NewCodeLabel (const char* Name, unsigned Hash)
53 /* Create a new code label, initialize and return it */
54 {
55     /* Allocate memory */
56     CodeLabel* L = xmalloc (sizeof (CodeLabel));
57
58     /* Initialize the fields */
59     L->Next  = 0;
60     L->Name  = xstrdup (Name);
61     L->Hash  = Hash;
62     L->Owner = 0;
63     InitCollection (&L->JumpFrom);
64
65     /* Return the new label */
66     return L;
67 }
68
69
70
71 void FreeCodeLabel (CodeLabel* L)
72 /* Free the given code label */
73 {
74     /* Free the name */
75     xfree (L->Name);
76
77     /* Free the collection */
78     DoneCollection (&L->JumpFrom);
79
80     /* Delete the struct */
81     xfree (L);
82 }
83
84
85
86 void CL_AddRef (CodeLabel* L, struct CodeEntry* E)
87 /* Let the CodeEntry E reference the label L */
88 {
89     /* The insn at E jumps to this label */
90     E->JumpTo = L;
91
92     /* Replace the code entry argument with the name of the new label */
93     CE_SetArg (E, L->Name);
94
95     /* Remember that in the label */
96     CollAppend (&L->JumpFrom, E);
97 }
98
99
100
101 void CL_MoveRefs (CodeLabel* OldLabel, CodeLabel* NewLabel)
102 /* Move all references to OldLabel to point to NewLabel. OldLabel will have no
103  * more references on return.
104  */
105 {
106     /* Walk through all instructions referencing the old label */
107     unsigned Count = CL_GetRefCount (OldLabel);
108     while (Count--) {
109
110         /* Get the instruction that references the old label */
111         CodeEntry* E = CL_GetRef (OldLabel, Count);
112
113         /* Change the reference to the new label */
114         CHECK (E->JumpTo == OldLabel);
115         CL_AddRef (NewLabel, E);
116
117     }
118
119     /* There are no more references to the old label */
120     CollDeleteAll (&OldLabel->JumpFrom);
121 }
122
123
124
125 void CL_Output (const CodeLabel* L, FILE* F)
126 /* Output the code label to a file */
127 {
128     fprintf (F, "%s:", L->Name);
129     if (strlen (L->Name) > 6) {
130         /* Label is too long, add a linefeed */
131         fputc ('\n', F);
132     }
133 }
134
135
136
137