]> git.sur5r.net Git - cc65/blob - src/cc65/codeent.h
ValidSegName now defined in segnames.h
[cc65] / src / cc65 / codeent.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 codeent.h                                 */
4 /*                                                                           */
5 /*                            Code segment entry                             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2001-2002 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 #ifndef CODEENT_H
37 #define CODEENT_H
38
39
40
41 #include <stdio.h>
42 #include <string.h>
43
44 /* common */
45 #include "coll.h"
46 #include "inline.h"
47
48 /* cc65 */
49 #include "codelab.h"
50 #include "lineinfo.h"
51 #include "opcodes.h"
52 #include "reginfo.h"
53
54
55
56 /*****************************************************************************/
57 /*                                   Data                                    */
58 /*****************************************************************************/
59
60
61
62 /* Flags used */
63 #define CEF_USERMARK    0x0001U         /* Generic mark by user functions */
64 #define CEF_NUMARG      0x0002U         /* Insn has numerical argument */
65
66 /* Code entry structure */
67 typedef struct CodeEntry CodeEntry;
68 struct CodeEntry {
69     opc_t               OPC;            /* Opcode */
70     am_t                AM;             /* Adressing mode */
71     char*               Arg;            /* Argument as string */
72     unsigned long       Num;            /* Numeric argument */
73     unsigned short      Flags;          /* Flags */
74     unsigned short      Info;           /* Additional code info */
75     unsigned short      Use;            /* Registers used */
76     unsigned short      Chg;            /* Registers changed/destroyed */
77     unsigned char       Size;           /* Estimated size */
78     CodeLabel*          JumpTo;         /* Jump label */
79     Collection          Labels;         /* Labels for this instruction */
80     LineInfo*           LI;             /* Source line info for this insn */
81     RegInfo*            RI;             /* Register info for this insn */
82 };
83
84
85
86 /*****************************************************************************/
87 /*                                   Code                                    */
88 /*****************************************************************************/
89
90
91
92 const char* MakeHexArg (unsigned Num);
93 /* Convert Num into a string in the form $XY, suitable for passing it as an
94  * argument to NewCodeEntry, and return a pointer to the string.
95  * BEWARE: The function returns a pointer to a static buffer, so the value is
96  * gone if you call it twice (and apart from that it's not thread and signal
97  * safe).
98  */
99
100 CodeEntry* NewCodeEntry (opc_t OPC, am_t AM, const char* Arg,
101                          CodeLabel* JumpTo, LineInfo* LI);
102 /* Create a new code entry, initialize and return it */
103
104 void FreeCodeEntry (CodeEntry* E);
105 /* Free the given code entry */
106
107 void CE_ReplaceOPC (CodeEntry* E, opc_t OPC);
108 /* Replace the opcode of the instruction. This will also replace related info,
109  * Size, Use and Chg, but it will NOT update any arguments or labels.
110  */
111
112 int CodeEntriesAreEqual (const CodeEntry* E1, const CodeEntry* E2);
113 /* Check if both code entries are equal */
114
115 void CE_AttachLabel (CodeEntry* E, CodeLabel* L);
116 /* Attach the label to the entry */
117
118 #if defined(HAVE_INLINE)
119 INLINE int CE_HasLabel (const CodeEntry* E)
120 /* Check if the given code entry has labels attached */
121 {
122     return (CollCount (&E->Labels) > 0);
123 }
124 #else
125 #  define CE_HasLabel(E)        (CollCount (&(E)->Labels) > 0)
126 #endif
127
128 #if defined(HAVE_INLINE)
129 INLINE unsigned CE_GetLabelCount (const CodeEntry* E)
130 /* Get the number of labels attached to this entry */
131 {
132     return CollCount (&E->Labels);
133 }
134 #else
135 #  define CE_GetLabelCount(E)   CollCount (&(E)->Labels)
136 #endif
137
138 #if defined(HAVE_INLINE)
139 INLINE CodeLabel* CE_GetLabel (CodeEntry* E, unsigned Index)
140 /* Get a label from this code entry */
141 {
142     return CollAt (&E->Labels, Index);
143 }
144 #else
145 #  define CE_GetLabel(E, Index) CollAt (&(E)->Labels, (Index))
146 #endif
147
148 void CE_MoveLabel (CodeLabel* L, CodeEntry* E);
149 /* Move the code label L from it's former owner to the code entry E. */
150
151 #if defined(HAVE_INLINE)
152 INLINE int CE_HasMark (const CodeEntry* E)
153 /* Return true if the given code entry has the CEF_USERMARK flag set */
154 {
155     return (E->Flags & CEF_USERMARK) != 0;
156 }
157 #else
158 #  define CE_HasMark(E) (((E)->Flags & CEF_USERMARK) != 0)
159 #endif
160
161 #if defined(HAVE_INLINE)
162 INLINE void CE_SetMark (CodeEntry* E)
163 /* Set the CEF_USERMARK flag for the given entry */
164 {
165     E->Flags |= CEF_USERMARK;
166 }
167 #else
168 #  define CE_SetMark(E) ((E)->Flags |= CEF_USERMARK)
169 #endif
170
171 #if defined(HAVE_INLINE)
172 INLINE void CE_ResetMark (CodeEntry* E)
173 /* Reset the CEF_USERMARK flag for the given entry */
174 {
175     E->Flags &= ~CEF_USERMARK;
176 }
177 #else
178 #  define CE_ResetMark(E)       ((E)->Flags &= ~CEF_USERMARK)
179 #endif
180
181 void CE_SetNumArg (CodeEntry* E, long Num);
182 /* Set a new numeric argument for the given code entry that must already
183  * have a numeric argument.
184  */
185
186 int CE_KnownImm (const CodeEntry* E);
187 /* Return true if the argument of E is a known immediate value */
188
189 #if defined(HAVE_INLINE)
190 INLINE int CE_IsCallTo (const CodeEntry* E, const char* Name)
191 /* Check if this is a call to the given function */
192 {
193     return (E->OPC == OP65_JSR && strcmp (E->Arg, Name) == 0);
194 }
195 #else
196 #  define CE_IsCallTo(E, Name) ((E)->OPC == OP65_JSR && strcmp ((E)->Arg, (Name)) == 0)
197 #endif
198
199 int CE_UseLoadFlags (const CodeEntry* E);
200 /* Return true if the instruction uses any flags that are set by a load of
201  * a register (N and Z).
202  */
203
204 void CE_FreeRegInfo (CodeEntry* E);
205 /* Free an existing register info struct */
206
207 void CE_GenRegInfo (CodeEntry* E, RegContents* InputRegs);
208 /* Generate register info for this instruction. If an old info exists, it is
209  * overwritten.
210  */
211
212 void CE_Output (const CodeEntry* E, FILE* F);
213 /* Output the code entry to a file */
214
215
216
217 /* End of codeent.h */
218 #endif
219
220
221
222