]> git.sur5r.net Git - cc65/blob - src/cc65/opcodes.h
Working on the backend
[cc65] / src / cc65 / opcodes.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 opcodes.h                                 */
4 /*                                                                           */
5 /*                  Opcode and addressing mode definitions                   */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2001      Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
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 #ifndef OPCODES_H
37 #define OPCODES_H
38
39
40
41 /* common */
42 #include "inline.h"
43
44
45
46 /*****************************************************************************/
47 /*                                   Data                                    */
48 /*****************************************************************************/
49
50
51
52 /* Definitions for the possible opcodes */
53 typedef enum {
54     OPC_ADC,
55     OPC_AND,
56     OPC_ASL,
57     OPC_BCC,
58     OPC_BCS,
59     OPC_BEQ,
60     OPC_BIT,
61     OPC_BMI,
62     OPC_BNE,
63     OPC_BPL,
64     OPC_BRA,
65     OPC_BRK,
66     OPC_BVC,
67     OPC_BVS,
68     OPC_CLC,
69     OPC_CLD,
70     OPC_CLI,
71     OPC_CLV,
72     OPC_CMP,
73     OPC_CPX,
74     OPC_CPY,
75     OPC_DEA,
76     OPC_DEC,
77     OPC_DEX,
78     OPC_DEY,
79     OPC_EOR,
80     OPC_INA,
81     OPC_INC,
82     OPC_INX,
83     OPC_INY,
84     OPC_JCC,
85     OPC_JCS,
86     OPC_JEQ,
87     OPC_JMI,
88     OPC_JMP,
89     OPC_JNE,
90     OPC_JPL,
91     OPC_JSR,
92     OPC_JVC,
93     OPC_JVS,
94     OPC_LDA,
95     OPC_LDX,
96     OPC_LDY,
97     OPC_LSR,
98     OPC_NOP,
99     OPC_ORA,
100     OPC_PHA,
101     OPC_PHP,
102     OPC_PHX,
103     OPC_PHY,
104     OPC_PLA,
105     OPC_PLP,
106     OPC_PLX,
107     OPC_PLY,
108     OPC_ROL,
109     OPC_ROR,
110     OPC_RTI,
111     OPC_RTS,
112     OPC_SBC,
113     OPC_SEC,
114     OPC_SED,
115     OPC_SEI,
116     OPC_STA,
117     OPC_STX,
118     OPC_STY,
119     OPC_TAX,
120     OPC_TAY,
121     OPC_TRB,
122     OPC_TSB,
123     OPC_TSX,
124     OPC_TXA,
125     OPC_TXS,
126     OPC_TYA,
127     OPC_COUNT                           /* Number of opcodes available */
128 } opc_t;
129
130 /* Addressing modes (bitmapped). */
131 typedef enum {
132     AM_IMP      = 0x0001,               /* implicit */
133     AM_ACC      = 0x0002,               /* accumulator */
134     AM_IMM      = 0x0004,               /* immidiate */
135     AM_ZP       = 0x0008,               /* zeropage */
136     AM_ZPX      = 0x0010,               /* zeropage,X */
137     AM_ABS      = 0x0020,               /* absolute */
138     AM_ABSX     = 0x0040,               /* absolute,X */
139     AM_ABSY     = 0x0080,               /* absolute,Y */
140     AM_ZPX_IND  = 0x0100,               /* (zeropage,x) */
141     AM_ZP_INDY  = 0x0200,               /* (zeropage),y */
142     AM_ZP_IND   = 0x0400,               /* (zeropage) */
143     AM_BRA      = 0x0800                /* branch */
144 } am_t;
145
146 /* Branch conditions */
147 typedef enum {
148     BC_CC,
149     BC_CS,
150     BC_EQ,
151     BC_MI,
152     BC_NE,
153     BC_PL,
154     BC_SR,
155     BC_VC,
156     BC_VS
157 } bc_t;
158
159 /* Opcode info */
160 #define OF_NONE 0x0000U                 /* No additional information */
161 #define OF_UBRA 0x0001U                 /* Unconditional branch */
162 #define OF_CBRA 0x0002U                 /* Conditional branch */
163 #define OF_ZBRA 0x0004U                 /* Branch on zero flag condition */
164 #define OF_LBRA 0x0008U                 /* Jump/branch is long */
165 #define OF_RET  0x0010U                 /* Return from function */
166 #define OF_LOAD 0x0020U                 /* Register load */
167 #define OF_BRA  (OF_UBRA|OF_CBRA)       /* Operation is a jump/branch */
168 #define OF_DEAD (OF_UBRA|OF_RET)        /* Dead end - no exec behind this point */
169
170 /* Opcode description */
171 typedef struct {
172     opc_t           OPC;                /* Opcode */
173     char            Mnemo[4];           /* Mnemonic */
174     unsigned char   Size;               /* Size, 0 = check addressing mode */
175     unsigned char   Use;                /* Registers used by this insn */
176     unsigned char   Chg;                /* Registers changed by this insn */
177     unsigned char   Info;               /* Additional information */
178 } OPCDesc;
179
180 /* Opcode description table */
181 extern const OPCDesc OPCTable[OPC_COUNT];
182
183
184
185 /*****************************************************************************/
186 /*                                   Code                                    */
187 /*****************************************************************************/
188
189
190
191 const OPCDesc* FindOpcode (const char* OPC);
192 /* Find the given opcode and return the opcode description. If the opcode was
193  * not found, NULL is returned.
194  */
195
196 unsigned GetInsnSize (opc_t OPC, am_t AM);
197 /* Return the size of the given instruction */
198
199 #if defined(HAVE_INLINE)
200 INLINE const OPCDesc* GetOPCDesc (opc_t OPC)
201 /* Get an opcode description */
202 {
203     /* Return the description */
204     return &OPCTable [OPC];
205 }
206 #else
207 #  define GetOPCDesc(OPC)       (&OPCTable [(OPC)])
208 #endif
209
210 #if defined(HAVE_INLINE)
211 INLINE unsigned char GetOPCInfo (opc_t OPC)
212 /* Get opcode information */
213 {
214     /* Return the info */
215     return OPCTable[OPC].Info;
216 }
217 #else
218 #  define GetOPCInfo(OPC)       (OPCTable[(OPC)].Info)
219 #endif
220
221 unsigned char GetAMUseInfo (am_t AM);
222 /* Get usage info for the given addressing mode (addressing modes that use
223  * index registers return REG_r info for these registers).
224  */
225
226 opc_t GetInverseBranch (opc_t OPC);
227 /* Return a branch that reverse the condition of the branch given in OPC */
228
229 opc_t MakeShortBranch (opc_t OPC);
230 /* Return the short version of the given branch. If the branch is already
231  * a short branch, return the opcode unchanged.
232  */
233
234 opc_t MakeLongBranch (opc_t OPC);
235 /* Return the long version of the given branch. If the branch is already
236  * a long branch, return the opcode unchanged.
237  */
238
239 bc_t GetBranchCond (opc_t OPC);
240 /* Get the condition for the conditional branch in OPC */
241
242 bc_t GetInverseCond (bc_t BC);
243 /* Return the inverse condition of the given one */
244
245 opc_t GetLongBranch (bc_t BC);
246 /* Return a long branch for the given branch condition */
247
248 opc_t GetShortBranch (bc_t BC);
249 /* Return a short branch for the given branch condition */
250
251
252
253 /* End of opcodes.h */
254 #endif
255
256
257