Searched refs:InstructionDecoder (Results 1 - 25 of 45) sorted by relevance
12
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/ |
H A D | FPopDecoder.java | 29 abstract class FPopDecoder extends InstructionDecoder { 30 abstract InstructionDecoder getOpfDecoder(int opf); 34 InstructionDecoder decoder = getOpfDecoder(opf);
|
H A D | IllegalInstructionDecoder.java | 29 class IllegalInstructionDecoder extends InstructionDecoder {
|
H A D | UnimpDecoder.java | 29 class UnimpDecoder extends InstructionDecoder {
|
H A D | V9PrivilegedReadWriteDecoder.java | 29 abstract class V9PrivilegedReadWriteDecoder extends InstructionDecoder
|
H A D | V9FPop1Decoder.java | 32 static Map v9opfDecoders = new HashMap(); // Map<Integer, InstructionDecoder> 33 static void addV9OpfDecoder(int fpOpcode, InstructionDecoder decoder) { 52 InstructionDecoder getOpfDecoder(int opf) { 53 InstructionDecoder decoder = (InstructionDecoder) V8FPop1Decoder.opfDecoders.get(new Integer(opf)); 54 return (decoder !=null)? decoder : (InstructionDecoder) v9opfDecoders.get(new Integer(opf));
|
H A D | V8FPop2Decoder.java | 31 static Map fpop2Decoders = new HashMap(); // Map<Integer, InstructionDecoder> 32 static void addFPop2Decoder(int fpOpcode, InstructionDecoder decoder) { 46 InstructionDecoder getOpfDecoder(int opf) { 47 return (InstructionDecoder) fpop2Decoders.get(new Integer(opf));
|
H A D | CallDecoder.java | 29 class CallDecoder extends InstructionDecoder {
|
H A D | TrapDecoder.java | 29 class TrapDecoder extends InstructionDecoder {
|
H A D | SPARCDisassembler.java | 43 protected static InstructionDecoder illegalDecoder = new IllegalInstructionDecoder(); 44 protected static InstructionDecoder callDecoder = new CallDecoder(); 51 protected abstract InstructionDecoder getFormat2Decoder(int op2); 55 InstructionDecoder decoder = getFormat2Decoder(op2); 76 protected abstract InstructionDecoder getFormat3Decoder(int row, int column); 86 protected abstract InstructionDecoder getFormat3ADecoder(int row, int column);
|
H A D | CoprocessorDecoder.java | 29 class CoprocessorDecoder extends InstructionDecoder {
|
H A D | V9DoneRetryDecoder.java | 29 class V9DoneRetryDecoder extends InstructionDecoder
|
H A D | V9FlushwDecoder.java | 29 class V9FlushwDecoder extends InstructionDecoder
|
H A D | V9SavedRestoredDecoder.java | 29 class V9SavedRestoredDecoder extends InstructionDecoder
|
H A D | V9FPop2Decoder.java | 32 static Map v9fpop2Decoders = new HashMap(); // Map<Integer, InstructionDecoder> 33 static void addV9FPop2Decoder(int fpOpcode, InstructionDecoder decoder) { 83 InstructionDecoder getOpfDecoder(int opf) { 84 InstructionDecoder decoder = (InstructionDecoder) V8FPop2Decoder.fpop2Decoders.get(new Integer(opf)); 85 return (decoder != null) ? decoder : (InstructionDecoder) v9fpop2Decoders.get(new Integer(opf));
|
H A D | ReadWriteDecoder.java | 29 abstract class ReadWriteDecoder extends InstructionDecoder {
|
H A D | SethiDecoder.java | 29 class SethiDecoder extends InstructionDecoder {
|
H A D | V9PopcDecoder.java | 29 class V9PopcDecoder extends InstructionDecoder
|
H A D | BranchDecoder.java | 29 abstract class BranchDecoder extends InstructionDecoder {
|
H A D | Format3ADecoder.java | 29 abstract class Format3ADecoder extends InstructionDecoder
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | X86Disassembler.java | 46 private static final InstructionDecoder oneByteTable[] = { 54 new InstructionDecoder("pushl", ADDR_REG, ES), 55 new InstructionDecoder("popl", ADDR_REG, ES), 63 new InstructionDecoder("pushl", ADDR_REG, CS), 72 new InstructionDecoder("pushl", ADDR_REG, SS), 73 new InstructionDecoder("popl", ADDR_REG, SS), 81 new InstructionDecoder("pushl", ADDR_REG, DS), 82 new InstructionDecoder("popl", ADDR_REG, DS), 91 new InstructionDecoder("daa"), 100 new InstructionDecoder("da [all...] |
H A D | GRPDecoder.java | 29 public class GRPDecoder extends InstructionDecoder { 34 private static final InstructionDecoder grpTable[][] = { 43 new InstructionDecoder("cmpb", ADDR_E, b_mode, ADDR_I, b_mode) 53 new InstructionDecoder("cmpS", ADDR_E, v_mode, ADDR_I, v_mode) 63 new InstructionDecoder("cmpS", ADDR_E, v_mode, ADDR_I, b_mode) 126 new InstructionDecoder("testb", ADDR_E, b_mode, ADDR_I, b_mode), 127 null, /*new InstructionDecoder("(bad)", ADDR_E, b_mode)*/ 129 new InstructionDecoder("negb", ADDR_E, b_mode), 136 new InstructionDecoder("testS", ADDR_E, v_mode, ADDR_I, v_mode), 139 new InstructionDecoder("neg [all...] |
H A D | CallDecoder.java | 29 public class CallDecoder extends InstructionDecoder {
|
H A D | ConditionalJmpDecoder.java | 30 public class ConditionalJmpDecoder extends InstructionDecoder {
|
H A D | FPInstructionDecoder.java | 30 public class FPInstructionDecoder extends InstructionDecoder {
|
H A D | JmpDecoder.java | 29 public class JmpDecoder extends InstructionDecoder {
|
Completed in 792 milliseconds
12