]> git.sur5r.net Git - cc65/blob - src/ca65/objcode.c
More lineinfo usage.
[cc65] / src / ca65 / objcode.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 objcode.c                                 */
4 /*                                                                           */
5 /*             Objectcode management for the ca65 macroassembler             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2008 Ullrich von Bassewitz                                       */
10 /*               Roemerstrasse 52                                            */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
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 #include <string.h>
37 #include <errno.h>
38
39 /* cc65 */
40 #include "error.h"
41 #include "fragment.h"
42 #include "objcode.h"
43 #include "segment.h"
44
45
46
47 /*****************************************************************************/
48 /*                                   Code                                    */
49 /*****************************************************************************/
50
51
52
53 void Emit0 (unsigned char OPC)
54 /* Emit an instruction with a zero sized operand */
55 {
56     Fragment* F = GenFragment (FRAG_LITERAL, 1);
57     F->V.Data [0] = OPC;
58 }
59
60
61
62 void Emit1 (unsigned char OPC, ExprNode* Value)
63 /* Emit an instruction with an one byte argument */
64 {
65     Emit0 (OPC);
66     EmitByte (Value);
67 }
68
69
70
71 void Emit2 (unsigned char OPC, ExprNode* Value)
72 /* Emit an instruction with a two byte argument */
73 {
74     Emit0 (OPC);
75     EmitWord (Value);
76 }
77
78
79
80 void Emit3 (unsigned char OPC, ExprNode* Expr)
81 /* Emit an instruction with a three byte argument */
82 {
83     Emit0 (OPC);
84     EmitFarAddr (Expr);
85 }
86
87
88
89 void EmitSigned (ExprNode* Expr, unsigned Size)
90 /* Emit a signed expression with the given size */
91 {
92     Fragment* F = GenFragment (FRAG_SEXPR, Size);
93     F->V.Expr = Expr;
94 }
95
96
97
98 void EmitPCRel (unsigned char OPC, ExprNode* Expr, unsigned Size)
99 /* Emit an opcode with a PC relative argument of one or two bytes */
100 {
101     Emit0 (OPC);
102     EmitSigned (Expr, Size);
103 }
104
105
106
107 void EmitData (const void* D, unsigned Size)
108 /* Emit data into the current segment */
109 {
110     /* Make a useful pointer from Data */
111     const unsigned char* Data = D;
112
113     /* Create lots of fragments for the data */
114     while (Size) {
115         Fragment* F;
116
117         /* Determine the length of the next fragment */
118         unsigned Len = Size;
119         if (Len > sizeof (F->V.Data)) {
120             Len = sizeof (F->V.Data);
121         }
122
123         /* Create a new fragment */
124         F = GenFragment (FRAG_LITERAL, Len);
125
126         /* Copy the data */
127         memcpy (F->V.Data, Data, Len);
128
129         /* Next chunk */
130         Data += Len;
131         Size -= Len;
132
133     }
134 }
135
136
137
138 void EmitStrBuf (const StrBuf* Data)
139 /* Emit a string into the current segment */
140 {
141     /* Use EmitData to output the data */
142     EmitData (SB_GetConstBuf (Data), SB_GetLen (Data));
143 }
144
145
146
147 void EmitByte (ExprNode* Expr)
148 /* Emit one byte */
149 {
150     /* Create a new fragment */
151     Fragment* F = GenFragment (FRAG_EXPR, 1);
152
153     /* Set the data */
154     F->V.Expr = Expr;
155 }
156
157
158
159 void EmitWord (ExprNode* Expr)
160 /* Emit one word */
161 {
162     /* Create a new fragment */
163     Fragment* F = GenFragment (FRAG_EXPR, 2);
164
165     /* Set the data */
166     F->V.Expr = Expr;
167 }
168
169
170
171 void EmitFarAddr (ExprNode* Expr)
172 /* Emit a 24 bit expression */
173 {
174     /* Create a new fragment */
175     Fragment* F = GenFragment (FRAG_EXPR, 3);
176
177     /* Set the data */
178     F->V.Expr = Expr;
179 }
180
181
182
183 void EmitDWord (ExprNode* Expr)
184 /* Emit one dword */
185 {
186     /* Create a new fragment */
187     Fragment* F = GenFragment (FRAG_EXPR, 4);
188
189     /* Set the data */
190     F->V.Expr = Expr;
191 }
192
193
194
195 void EmitFill (unsigned long Count)
196 /* Emit Count fill bytes */
197 {
198     while (Count) {
199         /* Calculate the size of the next chunk */
200         unsigned Chunk = (Count > 0xFFFF)? 0xFFFF : (unsigned) Count;
201         Count -= Chunk;
202
203         /* Emit one chunk */
204         GenFragment (FRAG_FILL, Chunk);
205     }
206 }
207
208
209