]> git.sur5r.net Git - cc65/blob - src/cc65/codelab.c
Removed unused modules
[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     /* Remember that in the label */
93     CollAppend (&L->JumpFrom, E);
94 }
95
96
97
98 void CL_MoveRefs (CodeLabel* OldLabel, CodeLabel* NewLabel)
99 /* Move all references to OldLabel to point to NewLabel. OldLabel will have no
100  * more references on return.
101  */
102 {
103     /* Walk through all instructions referencing the old label */
104     unsigned Count = CL_GetRefCount (OldLabel);
105     while (Count--) {
106
107         /* Get the instruction that references the old label */
108         CodeEntry* E = CL_GetRef (OldLabel, Count);
109
110         /* Change the reference to the new label */
111         CHECK (E->JumpTo == OldLabel);
112         CL_AddRef (NewLabel, E);
113
114     }
115
116     /* There are no more references to the old label */
117     CollDeleteAll (&OldLabel->JumpFrom);
118 }
119
120
121
122 void CL_Output (const CodeLabel* L, FILE* F)
123 /* Output the code label to a file */
124 {
125     fprintf (F, "%s:", L->Name);
126     if (strlen (L->Name) > 6) {
127         /* Label is too long, add a linefeed */
128         fputc ('\n', F);
129     }
130 }
131
132
133
134