annotate agent/src/share/classes/sun/jvm/hotspot/asm/sparc/SPARCV8Disassembler.java @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2002 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 package sun.jvm.hotspot.asm.sparc;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 import sun.jvm.hotspot.asm.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 import java.io.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 import java.util.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Please refer to "The SPARC Architecture Manual - Version 8"
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 public class SPARCV8Disassembler extends SPARCDisassembler {
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 public SPARCV8Disassembler(long startPc, byte[] code, SPARCInstructionFactory factory) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 super(startPc, code, factory);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 }
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 public SPARCV8Disassembler(long startPc, byte[] code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 this(startPc, code, new SPARCInstructionFactoryImpl());
a61af66fc99e Initial load
duke
parents:
diff changeset
41 }
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // decoders for format 2 instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
44 private static InstructionDecoder format2Decoders[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 new UnimpDecoder(),
a61af66fc99e Initial load
duke
parents:
diff changeset
46 illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 new IntegerBranchDecoder(),
a61af66fc99e Initial load
duke
parents:
diff changeset
48 illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
49 new SethiDecoder(),
a61af66fc99e Initial load
duke
parents:
diff changeset
50 illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 new FloatBranchDecoder(),
a61af66fc99e Initial load
duke
parents:
diff changeset
52 new CoprocessorBranchDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
53 };
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 protected InstructionDecoder getFormat2Decoder(int op2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return format2Decoders[op2];
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // op3 decoder table for op=3 (FORMAT_3) instructions - (memory instructions)
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Appendix F - Opcodes and Condition Codes - Page 229 - Table F-4
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 private static final InstructionDecoder format3Decoders[][] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 new LoadDecoder(LD, "ld", RTLDT_UNSIGNED_WORD), new AlternateSpaceLoadDecoder(LDA, "lda", RTLDT_UNSIGNED_WORD),
a61af66fc99e Initial load
duke
parents:
diff changeset
65 new LoadDecoder(LDF,"ld", RTLDT_FL_SINGLE), new SpecialLoadDecoder(LDC,"ld", SPARCSpecialRegisters.CREG)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 },
a61af66fc99e Initial load
duke
parents:
diff changeset
67 {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 new LoadDecoder(LDUB, "ldub", RTLDT_UNSIGNED_BYTE), new AlternateSpaceLoadDecoder(LDUBA, "lduba", RTLDT_UNSIGNED_BYTE),
a61af66fc99e Initial load
duke
parents:
diff changeset
69 new SpecialLoadDecoder(LDFSR, "ld", SPARCSpecialRegisters.FSR), new SpecialLoadDecoder(LDCSR, "ld", SPARCSpecialRegisters.CSR)
a61af66fc99e Initial load
duke
parents:
diff changeset
70 },
a61af66fc99e Initial load
duke
parents:
diff changeset
71 {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 new LoadDecoder(LDUH, "lduh", RTLDT_UNSIGNED_HALF), new AlternateSpaceLoadDecoder(LDUHA, "lduha", RTLDT_UNSIGNED_HALF),
a61af66fc99e Initial load
duke
parents:
diff changeset
73 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
74 },
a61af66fc99e Initial load
duke
parents:
diff changeset
75 {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 new LoadDecoder(LDD, "ldd", RTLDT_UNSIGNED_DWORD), new AlternateSpaceLoadDecoder(LDDA, "ldda", RTLDT_UNSIGNED_DWORD),
a61af66fc99e Initial load
duke
parents:
diff changeset
77 new LoadDecoder(LDDF, "ldd", RTLDT_FL_DOUBLE), new SpecialLoadDecoder(LDDC, "ldd", SPARCSpecialRegisters.CREG)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 },
a61af66fc99e Initial load
duke
parents:
diff changeset
79 {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 new StoreDecoder(ST, "st", RTLDT_UNSIGNED_WORD), new AlternateSpaceStoreDecoder(STA, "sta", RTLDT_UNSIGNED_WORD),
a61af66fc99e Initial load
duke
parents:
diff changeset
81 new StoreDecoder(STF, "st", RTLDT_FL_SINGLE), new SpecialStoreDecoder(STC, "st", SPARCSpecialRegisters.CREG)
a61af66fc99e Initial load
duke
parents:
diff changeset
82 },
a61af66fc99e Initial load
duke
parents:
diff changeset
83 {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 new StoreDecoder(STB, "stb", RTLDT_UNSIGNED_BYTE), new AlternateSpaceStoreDecoder(STBA, "stba", RTLDT_UNSIGNED_BYTE),
a61af66fc99e Initial load
duke
parents:
diff changeset
85 new SpecialStoreDecoder(STFSR, "st", SPARCSpecialRegisters.FSR), new SpecialStoreDecoder(STCSR, "st", SPARCSpecialRegisters.CSR),
a61af66fc99e Initial load
duke
parents:
diff changeset
86 },
a61af66fc99e Initial load
duke
parents:
diff changeset
87 {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 new StoreDecoder(STH, "sth", RTLDT_UNSIGNED_HALF), new AlternateSpaceStoreDecoder(STHA, "stha", RTLDT_UNSIGNED_HALF),
a61af66fc99e Initial load
duke
parents:
diff changeset
89 new SpecialStoreDecoder(STDFQ, "std", SPARCSpecialRegisters.FQ), new SpecialStoreDecoder(STDCQ, "std", SPARCSpecialRegisters.CQ),
a61af66fc99e Initial load
duke
parents:
diff changeset
90 },
a61af66fc99e Initial load
duke
parents:
diff changeset
91 {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 new StoreDecoder(STD, "std", RTLDT_UNSIGNED_DWORD), new AlternateSpaceStoreDecoder(STDA, "stda", RTLDT_UNSIGNED_DWORD),
a61af66fc99e Initial load
duke
parents:
diff changeset
93 new StoreDecoder(STDF, "std", RTLDT_FL_DOUBLE), new SpecialStoreDecoder(STDC, "std", SPARCSpecialRegisters.CREG)
a61af66fc99e Initial load
duke
parents:
diff changeset
94 },
a61af66fc99e Initial load
duke
parents:
diff changeset
95 {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 illegalDecoder, illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
97 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
98 },
a61af66fc99e Initial load
duke
parents:
diff changeset
99 {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 new LoadDecoder(LDSB, "ldsb", RTLDT_SIGNED_BYTE), new AlternateSpaceLoadDecoder(LDSBA, "ldsba", RTLDT_UNSIGNED_BYTE),
a61af66fc99e Initial load
duke
parents:
diff changeset
101 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
102 },
a61af66fc99e Initial load
duke
parents:
diff changeset
103 {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 new LoadDecoder(LDSH, "ldsh", RTLDT_SIGNED_HALF), new AlternateSpaceLoadDecoder(LDSHA, "ldsha", RTLDT_UNSIGNED_HALF),
a61af66fc99e Initial load
duke
parents:
diff changeset
105 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
106 },
a61af66fc99e Initial load
duke
parents:
diff changeset
107 {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 illegalDecoder, illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
109 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
110 },
a61af66fc99e Initial load
duke
parents:
diff changeset
111 {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 illegalDecoder, illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
114 },
a61af66fc99e Initial load
duke
parents:
diff changeset
115 {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 new LdstubDecoder(LDSTUB, "ldstub", RTLDT_UNSIGNED_BYTE), new AlternateSpaceLdstubDecoder(LDSTUBA, "ldstuba", RTLDT_UNSIGNED_BYTE),
a61af66fc99e Initial load
duke
parents:
diff changeset
117 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
118 },
a61af66fc99e Initial load
duke
parents:
diff changeset
119 {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 illegalDecoder, illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
122 },
a61af66fc99e Initial load
duke
parents:
diff changeset
123 {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 new SwapDecoder(SWAP, "swap", RTLDT_UNSIGNED_WORD), new AlternateSpaceSwapDecoder(SWAPA, "swapa", RTLDT_UNSIGNED_WORD),
a61af66fc99e Initial load
duke
parents:
diff changeset
125 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
126 },
a61af66fc99e Initial load
duke
parents:
diff changeset
127 };
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 protected InstructionDecoder getFormat3Decoder(int row, int column) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 return format3Decoders[row][column];
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // op3 decoder table for op=2 (FORMAT_3A) instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Appendix F - Opcodes and Condition Codes - Page 228 - Table F-3
a61af66fc99e Initial load
duke
parents:
diff changeset
135 protected static final InstructionDecoder format3ADecoders[][] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 new ArithmeticDecoder(ADD, "add", RTLOP_ADD), new ArithmeticDecoder(ADDcc, "addcc", RTLOP_ADD),
a61af66fc99e Initial load
duke
parents:
diff changeset
138 new ArithmeticDecoder(TADDcc, "taddcc", RTLOP_ADD), new WriteDecoder(SPARCSpecialRegisters.ASR)
a61af66fc99e Initial load
duke
parents:
diff changeset
139 },
a61af66fc99e Initial load
duke
parents:
diff changeset
140 {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 new LogicDecoder(AND, "and", RTLOP_AND), new LogicDecoder(ANDcc, "andcc", RTLOP_AND),
a61af66fc99e Initial load
duke
parents:
diff changeset
142 new ArithmeticDecoder(TSUBcc, "tsubcc", RTLOP_ADD), new WriteDecoder(SPARCSpecialRegisters.PSR)
a61af66fc99e Initial load
duke
parents:
diff changeset
143 },
a61af66fc99e Initial load
duke
parents:
diff changeset
144 {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 new LogicDecoder(OR, "or", RTLOP_OR), new LogicDecoder(ORcc, "orcc", RTLOP_OR),
a61af66fc99e Initial load
duke
parents:
diff changeset
146 new ArithmeticDecoder(TADDccTV, "taddcctv", RTLOP_ADD), new WriteDecoder(SPARCSpecialRegisters.WIM)
a61af66fc99e Initial load
duke
parents:
diff changeset
147 },
a61af66fc99e Initial load
duke
parents:
diff changeset
148 {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 new LogicDecoder(XOR, "xor", RTLOP_XOR), new LogicDecoder(XORcc, "xorcc", RTLOP_XOR),
a61af66fc99e Initial load
duke
parents:
diff changeset
150 new ArithmeticDecoder(TSUBccTV, "tsubcctv", RTLOP_SUB), new WriteDecoder(SPARCSpecialRegisters.TBR)
a61af66fc99e Initial load
duke
parents:
diff changeset
151 },
a61af66fc99e Initial load
duke
parents:
diff changeset
152 {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 new ArithmeticDecoder(SUB, "sub", RTLOP_SUB), new ArithmeticDecoder(SUBcc, "subcc", RTLOP_SUB),
a61af66fc99e Initial load
duke
parents:
diff changeset
154 new ArithmeticDecoder(MULScc, "mulscc", RTLOP_SMUL), new V8FPop1Decoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
155 },
a61af66fc99e Initial load
duke
parents:
diff changeset
156 {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 new LogicDecoder(ANDN, "andn", RTLOP_NAND), new LogicDecoder(ANDNcc, "andncc", RTLOP_NAND),
a61af66fc99e Initial load
duke
parents:
diff changeset
158 new ShiftDecoder(SLL, "sll", RTLOP_SLL), new V8FPop2Decoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
159 },
a61af66fc99e Initial load
duke
parents:
diff changeset
160 {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 new LogicDecoder(ORN, "orn", RTLOP_NOR), new LogicDecoder(ORNcc, "orncc", RTLOP_NOR),
a61af66fc99e Initial load
duke
parents:
diff changeset
162 new ShiftDecoder(SRL, "srl", RTLOP_SRL), new CoprocessorDecoder(CPop1)
a61af66fc99e Initial load
duke
parents:
diff changeset
163 },
a61af66fc99e Initial load
duke
parents:
diff changeset
164 {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 new LogicDecoder(XNOR, "xnor", RTLOP_XNOR), new LogicDecoder(XNORcc, "xnorcc", RTLOP_XNOR),
a61af66fc99e Initial load
duke
parents:
diff changeset
166 new ShiftDecoder(SRA, "sra", RTLOP_SRA), new CoprocessorDecoder(CPop2)
a61af66fc99e Initial load
duke
parents:
diff changeset
167 },
a61af66fc99e Initial load
duke
parents:
diff changeset
168 {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 new ArithmeticDecoder(ADDX, "addx", RTLOP_ADDC), new ArithmeticDecoder(ADDXcc, "addxcc", RTLOP_ADDC),
a61af66fc99e Initial load
duke
parents:
diff changeset
170 new ReadDecoder(SPARCSpecialRegisters.ASR), new JmplDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
171 },
a61af66fc99e Initial load
duke
parents:
diff changeset
172 {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 illegalDecoder, illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
174 new ReadDecoder(SPARCSpecialRegisters.PSR), new RettDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
175 },
a61af66fc99e Initial load
duke
parents:
diff changeset
176 {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 new ArithmeticDecoder(UMUL, "umul", RTLOP_UMUL), new ArithmeticDecoder(UMULcc, "umulcc", RTLOP_UMUL),
a61af66fc99e Initial load
duke
parents:
diff changeset
178 new ReadDecoder(SPARCSpecialRegisters.WIM), new TrapDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
179 },
a61af66fc99e Initial load
duke
parents:
diff changeset
180 {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 new ArithmeticDecoder(SMUL, "smul", RTLOP_SMUL), new ArithmeticDecoder(SMULcc, "smulcc", RTLOP_SMUL),
a61af66fc99e Initial load
duke
parents:
diff changeset
182 new ReadDecoder(SPARCSpecialRegisters.TBR), new FlushDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
183 },
a61af66fc99e Initial load
duke
parents:
diff changeset
184 {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 new ArithmeticDecoder(SUBX, "subx", RTLOP_SUBC), new ArithmeticDecoder(SUBXcc, "subxcc", RTLOP_SUBC),
a61af66fc99e Initial load
duke
parents:
diff changeset
186 illegalDecoder, new SaveDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
187 },
a61af66fc99e Initial load
duke
parents:
diff changeset
188 {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 illegalDecoder, illegalDecoder,
a61af66fc99e Initial load
duke
parents:
diff changeset
190 illegalDecoder, new RestoreDecoder()
a61af66fc99e Initial load
duke
parents:
diff changeset
191 },
a61af66fc99e Initial load
duke
parents:
diff changeset
192 {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 new ArithmeticDecoder(UDIV, "udiv", RTLOP_UDIV), new ArithmeticDecoder(UDIVcc, "udivcc", RTLOP_UDIV),
a61af66fc99e Initial load
duke
parents:
diff changeset
194 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
195 },
a61af66fc99e Initial load
duke
parents:
diff changeset
196 {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 new ArithmeticDecoder(SDIV, "sdiv", RTLOP_SDIV), new ArithmeticDecoder(SDIVcc, "sdivcc", RTLOP_SDIV),
a61af66fc99e Initial load
duke
parents:
diff changeset
198 illegalDecoder, illegalDecoder
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 };
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 protected InstructionDecoder getFormat3ADecoder(int row, int column) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 return format3ADecoders[row][column];
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }