Searched refs:addrSize (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DFPLoadDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
35 Operand op = getOperand1(bytesArray, operandSize, addrSize);
H A DFPStoreDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
35 Operand op = getOperand1(bytesArray, operandSize, addrSize);
H A DFPArithmeticDecoder.java41 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
42 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
43 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DLogicalDecoder.java40 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
42 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DRotateDecoder.java37 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
38 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
39 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSEArithmeticDecoder.java42 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
43 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
44 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSELogicalDecoder.java39 boolean addrSize, X86InstructionFactory factory) {
40 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
41 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
38 decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) argument
H A DSSEShiftDecoder.java37 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
38 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
39 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DShiftDecoder.java40 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
42 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DCallDecoder.java33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
H A DConditionalJmpDecoder.java36 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
37 Operand addr = getOperand1(bytesArray, operandSize, addrSize);
H A DFPInstructionDecoder.java42 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
43 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
H A DJmpDecoder.java33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
H A DArithmeticDecoder.java43 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
44 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
45 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
46 Operand op3 = getOperand3(bytesArray, operandSize, addrSize);
H A DSSEInstructionDecoder.java46 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
47 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
48 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
49 Operand op3 = getOperand3(bytesArray, operandSize, addrSize);
H A DBranchDecoder.java38 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
39 Operand addr = getOperand1(bytesArray, operandSize, addrSize);
H A DMoveDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
35 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
36 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSEMoveDecoder.java35 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
36 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
37 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DInstructionDecoder.java74 protected Operand getOperand1(byte[] bytesArray, boolean operandSize, boolean addrSize) { argument
76 return getOperand(bytesArray, addrMode1, operandType1, operandSize, addrSize);
82 protected Operand getOperand2(byte[] bytesArray, boolean operandSize, boolean addrSize) { argument
84 return getOperand(bytesArray, addrMode2, operandType2, operandSize, addrSize);
90 protected Operand getOperand3(byte[] bytesArray, boolean operandSize, boolean addrSize) { argument
92 return getOperand(bytesArray, addrMode3, operandType3, operandSize, addrSize);
134 boolean addrSize; //address-size prefix
140 addrSize = true;
142 addrSize = false;
143 this.name = getCorrectOpcodeName(name, prefixes, operandSize, addrSize);
157 decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) argument
166 getCorrectOpcodeName(String oldName, int prefixes, boolean operandSize, boolean addrSize) argument
200 getOperand(byte[] bytesArray, int addrMode, int operandType, boolean operandSize, boolean addrSize) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DVMRegImpl.java67 long addrSize = VM.getVM().getAddressSize();
68 return CStringUtilities.getString(regName.getAddressAt(index * addrSize));

Completed in 61 milliseconds