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 DFPopDecoder.java29 abstract class FPopDecoder extends InstructionDecoder {
30 abstract InstructionDecoder getOpfDecoder(int opf);
34 InstructionDecoder decoder = getOpfDecoder(opf);
H A DIllegalInstructionDecoder.java29 class IllegalInstructionDecoder extends InstructionDecoder {
H A DUnimpDecoder.java29 class UnimpDecoder extends InstructionDecoder {
H A DV9PrivilegedReadWriteDecoder.java29 abstract class V9PrivilegedReadWriteDecoder extends InstructionDecoder
H A DV9FPop1Decoder.java32 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 DV8FPop2Decoder.java31 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 DCallDecoder.java29 class CallDecoder extends InstructionDecoder {
H A DTrapDecoder.java29 class TrapDecoder extends InstructionDecoder {
H A DSPARCDisassembler.java43 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 DCoprocessorDecoder.java29 class CoprocessorDecoder extends InstructionDecoder {
H A DV9DoneRetryDecoder.java29 class V9DoneRetryDecoder extends InstructionDecoder
H A DV9FlushwDecoder.java29 class V9FlushwDecoder extends InstructionDecoder
H A DV9SavedRestoredDecoder.java29 class V9SavedRestoredDecoder extends InstructionDecoder
H A DV9FPop2Decoder.java32 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 DReadWriteDecoder.java29 abstract class ReadWriteDecoder extends InstructionDecoder {
H A DSethiDecoder.java29 class SethiDecoder extends InstructionDecoder {
H A DV9PopcDecoder.java29 class V9PopcDecoder extends InstructionDecoder
H A DBranchDecoder.java29 abstract class BranchDecoder extends InstructionDecoder {
H A DFormat3ADecoder.java29 abstract class Format3ADecoder extends InstructionDecoder
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86Disassembler.java46 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 DGRPDecoder.java29 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 DCallDecoder.java29 public class CallDecoder extends InstructionDecoder {
H A DConditionalJmpDecoder.java30 public class ConditionalJmpDecoder extends InstructionDecoder {
H A DFPInstructionDecoder.java30 public class FPInstructionDecoder extends InstructionDecoder {
H A DJmpDecoder.java29 public class JmpDecoder extends InstructionDecoder {

Completed in 792 milliseconds

12