]> git.sur5r.net Git - cc65/blob - src/cc65/codelab.c
89b45b0e6d4d9a0fb45699aad9460ea584fa11db
[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->Flags = 0;
63     L->Owner = 0;
64     InitCollection (&L->JumpFrom);
65
66     /* Return the new label */
67     return L;
68 }
69
70
71
72 void FreeCodeLabel (CodeLabel* L)
73 /* Free the given code label */
74 {
75     /* Free the name */
76     xfree (L->Name);
77
78     /* Free the collection */
79     DoneCollection (&L->JumpFrom);
80
81     /* Delete the struct */
82     xfree (L);
83 }
84
85
86
87 void AddLabelRef (CodeLabel* L, struct CodeEntry* E)
88 /* Let the CodeEntry E reference the label L */
89 {
90     /* The insn at E jumps to this label */
91     E->JumpTo = L;
92
93     /* Remember that in the label */
94     CollAppend (&L->JumpFrom, E);
95 }
96
97
98
99 void MoveLabelRefs (CodeLabel* OldLabel, CodeLabel* NewLabel)
100 /* Move all references to OldLabel to point to NewLabel. OldLabel will have no
101  * more references on return.
102  */
103 {
104     /* Walk through all instructions referencing the old label */
105     unsigned Count = CollCount (&OldLabel->JumpFrom);
106     while (Count--) {
107
108         /* Get the instruction that references the old label */
109         CodeEntry* E = CollAt (&OldLabel->JumpFrom, Count);
110
111         /* Change the reference to the new label */
112         CHECK (E->JumpTo == OldLabel);
113         AddLabelRef (NewLabel, E);
114
115     }
116
117     /* There are no more references to the old label */
118     CollDeleteAll (&OldLabel->JumpFrom);
119 }
120
121
122
123 void OutputCodeLabel (const CodeLabel* L, FILE* F)
124 /* Output the code label to a file */
125 {
126     fprintf (F, "%s:", L->Name);
127 }
128
129
130