1 /*****************************************************************************/
5 /* Code segment entry */
9 /* (C) 2001 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@musoftware.de */
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. */
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: */
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 */
32 /*****************************************************************************/
54 /*****************************************************************************/
56 /*****************************************************************************/
61 static char EmptyArg[] = "";
65 /*****************************************************************************/
66 /* Helper functions */
67 /*****************************************************************************/
71 static void FreeArg (char* Arg)
72 /* Free a code entry argument */
74 if (Arg != EmptyArg) {
81 static char* GetArgCopy (const char* Arg)
82 /* Create an argument copy for assignment */
84 if (Arg && Arg[0] != '\0') {
88 /* Use the empty argument string */
95 static int NumArg (const char* Arg, unsigned long* Num)
96 /* If the given argument is numerical, convert it and return true. Otherwise
97 * set Num to zero and return false.
103 /* Determine the base */
108 } else if (*Arg == '%') {
113 /* Convert the value. strtol is not exactly what we want here, but it's
114 * cheap and may be replaced by something fancier later.
116 Val = strtoul (Arg, &End, Base);
118 /* Check if the conversion was successful */
121 /* Could not convert */
136 /*****************************************************************************/
138 /*****************************************************************************/
142 CodeEntry* NewCodeEntry (const OPCDesc* D, am_t AM, const char* Arg, CodeLabel* JumpTo)
143 /* Create a new code entry, initialize and return it */
145 /* Allocate memory */
146 CodeEntry* E = xmalloc (sizeof (CodeEntry));
148 /* Initialize the fields */
151 E->Size = GetInsnSize (E->OPC, E->AM);
153 E->Arg = GetArgCopy (Arg);
154 if (NumArg (E->Arg, &E->Num)) {
155 E-> Flags = CEF_NUMARG;
162 if (E->OPC == OPC_JSR) {
163 /* A subroutine call */
164 GetFuncInfo (E->Arg, &E->Use, &E->Chg);
166 /* Some other instruction */
167 E->Use |= GetAMUseInfo (E->AM);
170 InitCollection (&E->Labels);
172 /* If we have a label given, add this entry to the label */
174 CollAppend (&JumpTo->JumpFrom, E);
177 /* Return the initialized struct */
183 void FreeCodeEntry (CodeEntry* E)
184 /* Free the given code entry */
186 /* Free the string argument if we have one */
189 /* Cleanup the collection */
190 DoneCollection (&E->Labels);
198 void ReplaceOPC (CodeEntry* E, opc_t OPC)
199 /* Replace the opcode of the instruction. This will also replace related info,
200 * Size, Use and Chg, but it will NOT update any arguments or labels.
203 /* Get the opcode descriptor */
204 const OPCDesc* D = GetOPCDesc (OPC);
206 /* Replace the opcode */
208 E->Size = GetInsnSize (E->OPC, E->AM);
212 if (E->OPC == OPC_JSR) {
213 /* A subroutine call */
214 GetFuncInfo (E->Arg, &E->Use, &E->Chg);
216 /* Some other instruction */
217 E->Use |= GetAMUseInfo (E->AM);
223 int CodeEntriesAreEqual (const CodeEntry* E1, const CodeEntry* E2)
224 /* Check if both code entries are equal */
226 return E1->OPC == E2->OPC && E1->AM == E2->AM && strcmp (E1->Arg, E2->Arg) == 0;
231 void AttachCodeLabel (CodeEntry* E, CodeLabel* L)
232 /* Attach the label to the entry */
234 /* Mark the label as defined */
237 /* Add it to the entries label list */
238 CollAppend (&E->Labels, L);
240 /* Tell the label about it's owner */
246 int CodeEntryHasLabel (const CodeEntry* E)
247 /* Check if the given code entry has labels attached */
249 return (CollCount (&E->Labels) > 0);
254 unsigned GetCodeLabelCount (const CodeEntry* E)
255 /* Get the number of labels attached to this entry */
257 return CollCount (&E->Labels);
262 CodeLabel* GetCodeLabel (CodeEntry* E, unsigned Index)
263 /* Get a label from this code entry */
265 return CollAt (&E->Labels, Index);
270 void MoveCodeLabel (CodeLabel* L, CodeEntry* E)
271 /* Move the code label L from it's former owner to the code entry E. */
273 /* Delete the label from the owner */
274 CollDeleteItem (&L->Owner->Labels, L);
276 /* Set the new owner */
277 CollAppend (&E->Labels, L);
283 int CodeEntryHasMark (const CodeEntry* E)
284 /* Return true if the given code entry has the CEF_USERMARK flag set */
286 return (E->Flags & CEF_USERMARK) != 0;
291 void CodeEntrySetMark (CodeEntry* E)
292 /* Set the CEF_USERMARK flag for the given entry */
294 E->Flags |= CEF_USERMARK;
299 void CodeEntryResetMark (CodeEntry* E)
300 /* Reset the CEF_USERMARK flag for the given entry */
302 E->Flags &= ~CEF_USERMARK;
307 void CodeEntrySetArg (CodeEntry* E, const char* Arg)
308 /* Set a new argument for the given code entry. An old string is deleted. */
310 /* Free the old argument */
313 /* Assign the new one */
314 E->Arg = GetArgCopy (Arg);
319 void OutputCodeEntry (const CodeEntry* E, FILE* F)
320 /* Output the code entry to a file */
326 /* If we have a label, print that */
327 unsigned LabelCount = CollCount (&E->Labels);
329 for (I = 0; I < LabelCount; ++I) {
330 OutputCodeLabel (CollConstAt (&E->Labels, I), F);
333 /* Get the opcode description */
334 D = GetOPCDesc (E->OPC);
336 /* Print the mnemonic */
337 Chars = fprintf (F, "\t%s", D->Mnemo);
339 /* Print the operand */
348 Chars += fprintf (F, "%*sa", 9-Chars, "");
353 Chars += fprintf (F, "%*s#%s", 9-Chars, "", E->Arg);
358 /* zeropage and absolute */
359 Chars += fprintf (F, "%*s%s", 9-Chars, "", E->Arg);
364 /* zeropage,X and absolute,X */
365 Chars += fprintf (F, "%*s%s,x", 9-Chars, "", E->Arg);
370 Chars += fprintf (F, "%*s%s,y", 9-Chars, "", E->Arg);
375 Chars += fprintf (F, "%*s(%s,x)", 9-Chars, "", E->Arg);
380 Chars += fprintf (F, "%*s(%s),y", 9-Chars, "", E->Arg);
385 Chars += fprintf (F, "%*s(%s)", 9-Chars, "", E->Arg);
390 Target = E->JumpTo? E->JumpTo->Name : E->Arg;
391 Chars += fprintf (F, "%*s%s", 9-Chars, "", Target);
395 Internal ("Invalid addressing mode");
399 /* Print usage info if requested by the debugging flag */
402 "%*s; USE: %c%c%c CHG: %c%c%c",
404 (E->Use & REG_A)? 'A' : '_',
405 (E->Use & REG_X)? 'X' : '_',
406 (E->Use & REG_Y)? 'Y' : '_',
407 (E->Chg & REG_A)? 'A' : '_',
408 (E->Chg & REG_X)? 'X' : '_',
409 (E->Chg & REG_Y)? 'Y' : '_');
412 /* Terminate the line */