Searched defs:instruction (Results 1 - 25 of 77) sorted by relevance

1234

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DCallDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 int offset = (instruction & DISP_30_MASK) << 2;
H A DCoprocessorDecoder.java35 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
36 int rs1Num = getSourceRegister1(instruction);
37 int rs2Num = getSourceRegister2(instruction);
38 int rdNum = getDestinationRegister(instruction);
40 return factory.newCoprocessorInstruction(instruction, op3,
41 (instruction & OPC_MASK) >> OPF_START_BIT,
H A DIllegalInstructionDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 return factory.newIllegalInstruction(instruction);
H A DSethiDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 int rdNum = getDestinationRegister(instruction);
34 int imm22 = (instruction & DISP_22_MASK);
H A DUnimpDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 return factory.newUnimpInstruction(instruction & DISP_22_MASK);
H A DV9BranchDecoder.java31 static boolean getPredictTaken(int instruction) { argument
32 return (PREDICTION_MASK & instruction) != 0;
H A DV9CCBranchDecoder.java30 abstract int getConditionFlag(int instruction); argument
32 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
34 int conditionFlag = getConditionFlag(instruction);
35 boolean predictTaken = getPredictTaken(instruction);
36 int conditionCode = getConditionCode(instruction);
37 boolean annuled = getAnnuledBit(instruction);
40 PCRelativeAddress addr = new PCRelativeAddress(extractSignedIntFromNBits(instruction, 19) << 2);
H A DV9DoneRetryDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
34 int rdNum = getDestinationRegister(instruction);
45 instr = v9factory.newIllegalInstruction(instruction);
H A DV9FlushwDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
35 if (isIBitSet(instruction)) {
36 instr = v9factory.newIllegalInstruction(instruction);
H A DV9PopcDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 int rs1Num = getSourceRegister1(instruction);
37 instr = v9factory.newIllegalInstruction(instruction);
39 SPARCRegister rd = SPARCRegisters.getRegister(getDestinationRegister(instruction));
40 instr = v9factory.newV9PopcInstruction(getOperand2(instruction), rd);
H A DV9RdprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 int prNum = getSourceRegister1(instruction);
35 SPARCRegister rd = SPARCRegisters.getRegister(getDestinationRegister(instruction));
38 instr = v9factory.newIllegalInstruction(instruction);
H A DV9ReadDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
34 int specialRegNum = getSourceRegister1(instruction);
38 instr = v9factory.newIllegalInstruction(instruction);
40 int rdNum = getDestinationRegister(instruction);
44 boolean iBit = isIBitSet(instruction);
46 instr = v9factory.newV9MembarInstruction((instruction & MMASK_MASK) >>> MMASK_START_BIT,
47 (instruction & CMASK_MASK) >>> CMASK_START_BIT);
52 instr = v9factory.newIllegalInstruction(instruction);
H A DV9SavedRestoredDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
34 int rdNum = getDestinationRegister(instruction);
45 instr = v9factory.newIllegalInstruction(instruction);
H A DV9WriteDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
34 int specialRegNum = getDestinationRegister(instruction);
39 instr = v9factory.newIllegalInstruction(instruction);
41 int rs1Num = getSourceRegister1(instruction);
43 if (isIBitSet(instruction) && rs1Num == 0) {
46 instr = v9factory.newIllegalInstruction(instruction);
55 instr = v9factory.newV9WriteInstruction(specialRegNum, asrRegNum, rs1, getOperand2(instruction));
H A DV9WrprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 int prNum = getDestinationRegister(instruction);
35 SPARCRegister rs1 = SPARCRegisters.getRegister(getSourceRegister1(instruction));
36 ImmediateOrRegister operand2 = getOperand2(instruction);
39 instr = v9factory.newIllegalInstruction(instruction);
H A DAlternateSpaceLdstubDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
38 setAddressSpace(instruction, addr);
H A DAlternateSpaceLoadDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
38 setAddressSpace(instruction, addr);
H A DAlternateSpaceStoreDecoder.java34 protected Instruction decodeMemoryInstruction(int instruction, argument
38 setAddressSpace(instruction, addr);
H A DAlternateSpaceSwapDecoder.java34 Instruction decodeMemoryInstruction(int instruction, argument
38 setAddressSpace(instruction, addr);
H A DArithmeticDecoder.java34 Instruction decodeFormat3AInstruction(int instruction, argument
H A DFP2RegisterDecoder.java36 Instruction decodeFloatInstruction(int instruction, argument
H A DFPMoveDecoder.java36 Instruction decodeFloatInstruction(int instruction, argument
H A DFPopDecoder.java32 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 int opf = getOpf(instruction);
35 return (decoder == null) ? factory.newIllegalInstruction(instruction)
36 : decoder.decode(instruction, factory);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DPUSH.java72 private Instruction instruction; field in class:PUSH
82 instruction = INSTRUCTIONS[Constants.ICONST_0 + value];
84 instruction = new BIPUSH((byte)value);
86 instruction = new SIPUSH((short)value);
88 instruction = new LDC(cp.addInteger(value));
96 instruction = INSTRUCTIONS[Constants.ICONST_0 + (value? 1 : 0)];
105 instruction = FCONST_0;
107 instruction = FCONST_1;
109 instruction = FCONST_2;
111 instruction
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DREProgram.java40 char[] instruction; // The compiled regular expression 'program' field in class:REProgram
41 int lenInstruction; // The amount of the instruction buffer in use
48 * @param instruction Character array with RE opcode instructions in it
50 public REProgram(char[] instruction) argument
52 this(instruction, instruction.length);
58 * @param instruction Character array with RE opcode instructions in it
60 public REProgram(int parens, char[] instruction) argument
62 this(instruction, instruction
71 REProgram(char[] instruction, int lenInstruction) argument
105 setInstructions(char[] instruction, int lenInstruction) argument
[all...]

Completed in 98 milliseconds

1234