]> git.sur5r.net Git - cc65/blob - src/cc65/opcodes.c
fce75353020ad3fe8a23a362e4984a3cebc16915
[cc65] / src / cc65 / opcodes.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 opcodes.c                                 */
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 #include "stdlib.h"
37 #include <string.h>
38 #include <ctype.h>
39
40 /* common */
41 #include "check.h"
42
43 /* cc65 */
44 #include "codeinfo.h"
45 #include "error.h"
46 #include "opcodes.h"
47
48
49
50 /*****************************************************************************/
51 /*                                   Data                                    */
52 /*****************************************************************************/
53
54
55
56 /* Mapper table, mnemonic --> opcode */
57 static const OPCDesc OPCTable[OPC_COUNT] = {
58     { OPC_ADC, "adc", 0, REG_A,    REG_A,    OF_NONE    },
59     { OPC_AND, "and", 0, REG_A,    REG_A,    OF_NONE    },
60     { OPC_ASL, "asl", 0, REG_A,    REG_A,    OF_NONE    },
61     { OPC_BCC, "bcc", 2, REG_NONE, REG_NONE, OF_BRA     },
62     { OPC_BCS, "bcs", 2, REG_NONE, REG_NONE, OF_BRA     },
63     { OPC_BEQ, "beq", 2, REG_NONE, REG_NONE, OF_BRA     },
64     { OPC_BIT, "bit", 0, REG_A,    REG_NONE, OF_NONE    },
65     { OPC_BMI, "bmi", 2, REG_NONE, REG_NONE, OF_BRA     },
66     { OPC_BNE, "bne", 2, REG_NONE, REG_NONE, OF_BRA     },
67     { OPC_BPL, "bpl", 2, REG_NONE, REG_NONE, OF_BRA     },
68     { OPC_BRA, "bra", 2, REG_NONE, REG_NONE, OF_BRA     },
69     { OPC_BRK, "brk", 1, REG_NONE, REG_NONE, OF_NONE    },
70     { OPC_BVC, "bvc", 2, REG_NONE, REG_NONE, OF_BRA     },
71     { OPC_BVS, "bvs", 2, REG_NONE, REG_NONE, OF_BRA     },
72     { OPC_CLC, "clc", 1, REG_NONE, REG_NONE, OF_NONE    },
73     { OPC_CLD, "cld", 1, REG_NONE, REG_NONE, OF_NONE    },
74     { OPC_CLI, "cli", 1, REG_NONE, REG_NONE, OF_NONE    },
75     { OPC_CLV, "clv", 1, REG_NONE, REG_NONE, OF_NONE    },
76     { OPC_CMP, "cmp", 0, REG_A,    REG_NONE, OF_NONE    },
77     { OPC_CPX, "cpx", 0, REG_X,    REG_NONE, OF_NONE    },
78     { OPC_CPY, "cpy", 0, REG_Y,    REG_NONE, OF_NONE    },
79     { OPC_DEA, "dea", 1, REG_A,    REG_A,    OF_NONE    },
80     { OPC_DEC, "dec", 0, REG_NONE, REG_NONE, OF_NONE    },
81     { OPC_DEX, "dex", 1, REG_X,    REG_X,    OF_NONE    },
82     { OPC_DEY, "dey", 1, REG_Y,    REG_Y,    OF_NONE    },
83     { OPC_EOR, "eor", 0, REG_A,    REG_A,    OF_NONE    },
84     { OPC_INA, "ina", 1, REG_A,    REG_A,    OF_NONE    },
85     { OPC_INC, "inc", 0, REG_NONE, REG_NONE, OF_NONE    },
86     { OPC_INX, "inx", 1, REG_X,    REG_X,    OF_NONE    },
87     { OPC_INY, "iny", 1, REG_Y,    REG_Y,    OF_NONE    },
88     { OPC_JCC, "jcc", 5, REG_NONE, REG_NONE, OF_BRA     },
89     { OPC_JCS, "jcs", 5, REG_NONE, REG_NONE, OF_BRA     },
90     { OPC_JEQ, "jeq", 5, REG_NONE, REG_NONE, OF_BRA     },
91     { OPC_JMI, "jmi", 5, REG_NONE, REG_NONE, OF_BRA     },
92     { OPC_JMP, "jmp", 3, REG_NONE, REG_NONE, OF_BRA     },
93     { OPC_JNE, "jne", 5, REG_NONE, REG_NONE, OF_BRA     },
94     { OPC_JPL, "jpl", 5, REG_NONE, REG_NONE, OF_BRA     },
95     { OPC_JSR, "jsr", 3, REG_NONE, REG_NONE, OF_NONE    },
96     { OPC_JVC, "jvc", 5, REG_NONE, REG_NONE, OF_BRA     },
97     { OPC_JVS, "jvs", 5, REG_NONE, REG_NONE, OF_BRA     },
98     { OPC_LDA, "lda", 0, REG_NONE, REG_A,    OF_NONE    },
99     { OPC_LDX, "ldx", 0, REG_NONE, REG_X,    OF_NONE    },
100     { OPC_LDY, "ldy", 0, REG_NONE, REG_Y,    OF_NONE    },
101     { OPC_LSR, "lsr", 0, REG_A,    REG_A,    OF_NONE    },
102     { OPC_NOP, "nop", 1, REG_NONE, REG_NONE, OF_NONE    },
103     { OPC_ORA, "ora", 0, REG_A,    REG_A,    OF_NONE    },
104     { OPC_PHA, "pha", 1, REG_A,    REG_NONE, OF_NONE    },
105     { OPC_PHP, "php", 1, REG_NONE, REG_NONE, OF_NONE    },
106     { OPC_PHX, "phx", 1, REG_X,    REG_NONE, OF_NONE    },
107     { OPC_PHY, "phy", 1, REG_Y,    REG_NONE, OF_NONE    },
108     { OPC_PLA, "pla", 1, REG_NONE, REG_A,    OF_NONE    },
109     { OPC_PLP, "plp", 1, REG_NONE, REG_NONE, OF_NONE    },
110     { OPC_PLX, "plx", 1, REG_NONE, REG_X,    OF_NONE    },
111     { OPC_PLY, "ply", 1, REG_NONE, REG_Y,    OF_NONE    },
112     { OPC_ROL, "rol", 0, REG_A,    REG_A,    OF_NONE    },
113     { OPC_ROR, "ror", 0, REG_A,    REG_A,    OF_NONE    },
114     { OPC_RTI, "rti", 1, REG_NONE, REG_NONE, OF_NONE    },
115     { OPC_RTS, "rts", 1, REG_NONE, REG_NONE, OF_NONE    },
116     { OPC_SBC, "sbc", 0, REG_A,    REG_A,    OF_NONE    },
117     { OPC_SEC, "sec", 1, REG_NONE, REG_NONE, OF_NONE    },
118     { OPC_SED, "sed", 1, REG_NONE, REG_NONE, OF_NONE    },
119     { OPC_SEI, "sei", 1, REG_NONE, REG_NONE, OF_NONE    },
120     { OPC_STA, "sta", 0, REG_A,    REG_NONE, OF_NONE    },
121     { OPC_STX, "stx", 0, REG_X,    REG_NONE, OF_NONE    },
122     { OPC_STY, "sty", 0, REG_Y,    REG_NONE, OF_NONE    },
123     { OPC_TAX, "tax", 1, REG_A,    REG_X,    OF_NONE    },
124     { OPC_TAY, "tay", 1, REG_A,    REG_Y,    OF_NONE    },
125     { OPC_TRB, "trb", 0, REG_A,    REG_NONE, OF_NONE    },
126     { OPC_TSB, "tsb", 0, REG_A,    REG_NONE, OF_NONE    },
127     { OPC_TSX, "tsx", 1, REG_NONE, REG_X,    OF_NONE    },
128     { OPC_TXA, "txa", 1, REG_X,    REG_A,    OF_NONE    },
129     { OPC_TXS, "txs", 1, REG_X,    REG_NONE, OF_NONE    },
130     { OPC_TYA, "tya", 1, REG_A,    REG_A,    OF_NONE    },
131 };
132
133
134
135 /*****************************************************************************/
136 /*                                   Code                                    */
137 /*****************************************************************************/
138
139
140
141 static int Compare (const void* Key, const void* Desc)
142 /* Compare function for bsearch */
143 {
144     return strcmp (Key, ((OPCDesc*)Desc)->Mnemo);
145 }
146
147
148
149 const OPCDesc* FindOpcode (const char* M)
150 /* Find the given opcode and return the opcode number. If the opcode was not
151  * found, return OPC_INVALID.
152  */
153 {
154     unsigned I;
155     unsigned Len;
156
157     /* Check the length of the given string, then copy it into local
158      * storage, converting it to upper case.
159      */
160     char Mnemo[sizeof (OPCTable[0].Mnemo)];
161     Len = strlen (M);
162     if (Len >= sizeof (OPCTable[0].Mnemo)) {
163         /* Invalid length means invalid opcode */
164         return 0;
165     }
166     for (I = 0; I < Len; ++I) {
167         Mnemo[I] = tolower (M[I]);
168     }
169     Mnemo[I] = '\0';
170
171     /* Search for the mnemonic in the table and return the result */
172     return bsearch (Mnemo, OPCTable, OPC_COUNT, sizeof (OPCTable[0]), Compare);
173 }
174
175
176
177 unsigned GetInsnSize (opc_t OPC, am_t AM)
178 /* Return the size of the given instruction */
179 {
180     /* Get the opcode desc and check the size given there */
181     const OPCDesc* D = &OPCTable[OPC];
182     if (D->Size != 0) {
183         return D->Size;
184     }
185
186     /* Check the addressing mode. */
187     switch (AM) {
188         case AM_IMP:      return 1;
189         case AM_ACC:      return 1;
190         case AM_IMM:      return 2;
191         case AM_ZP:       return 2;
192         case AM_ZPX:      return 2;
193         case AM_ABS:      return 3;
194         case AM_ABSX:     return 3;
195         case AM_ABSY:     return 3;
196         case AM_ZPX_IND:  return 2;
197         case AM_ZP_INDY:  return 2;
198         case AM_ZP_IND:   return 2;
199         default:          FAIL ("Invalid addressing mode");
200     }
201 }
202
203
204
205 const OPCDesc* GetOPCDesc (opc_t OPC)
206 /* Get an opcode description */
207 {
208     /* Check the range */
209     PRECONDITION (OPC >= (opc_t)0 && OPC < OPC_COUNT);
210
211     /* Return the description */
212     return &OPCTable [OPC];
213 }
214
215
216
217 unsigned char GetAMUseInfo (am_t AM)
218 /* Get usage info for the given addressing mode (addressing modes that use
219  * index registers return REG_r info for these registers).
220  */
221 {
222     /* Check the addressing mode. */
223     switch (AM) {
224         case AM_ACC:      return REG_A;
225         case AM_ZPX:      return REG_X;
226         case AM_ABSX:     return REG_X;
227         case AM_ABSY:     return REG_Y;
228         case AM_ZPX_IND:  return REG_X;
229         case AM_ZP_INDY:  return REG_Y;
230         default:          return REG_NONE;
231     }
232 }
233
234
235
236 opc_t GetInverseBranch (opc_t OPC)
237 /* Return a brahcn that reverse the condition of the branch given in OPC */
238 {
239     switch (OPC) {
240         case OPC_BCC:   return OPC_BCS;
241         case OPC_BCS:   return OPC_BCC;
242         case OPC_BEQ:   return OPC_BNE;
243         case OPC_BMI:   return OPC_BPL;
244         case OPC_BNE:   return OPC_BEQ;
245         case OPC_BPL:   return OPC_BMI;
246         case OPC_BVC:   return OPC_BVS;
247         case OPC_BVS:   return OPC_BVC;
248         case OPC_JCC:   return OPC_JCS;
249         case OPC_JCS:   return OPC_JCC;
250         case OPC_JEQ:   return OPC_JNE;
251         case OPC_JMI:   return OPC_JPL;
252         case OPC_JNE:   return OPC_JEQ;
253         case OPC_JPL:   return OPC_JMI;
254         case OPC_JVC:   return OPC_JVS;
255         case OPC_JVS:   return OPC_JVC;
256         default:        Internal ("GetInverseBranch: Invalid opcode: %d", OPC);
257     }
258 }
259
260
261