/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/ |
H A D | V9DoneRetryDecoder.java | 33 Instruction instr = null; 39 instr = v9factory.newV9DoneInstruction(); 42 instr = v9factory.newV9RetryInstruction(); 45 instr = v9factory.newIllegalInstruction(instruction); 48 return instr;
|
H A D | V9SavedRestoredDecoder.java | 33 Instruction instr = null; 39 instr = v9factory.newV9SavedInstruction(); 42 instr = v9factory.newV9RestoredInstruction(); 45 instr = v9factory.newIllegalInstruction(instruction); 49 return instr;
|
H A D | V9FlushwDecoder.java | 33 Instruction instr = null; 36 instr = v9factory.newIllegalInstruction(instruction); 38 instr = v9factory.newV9FlushwInstruction(); 40 return instr;
|
H A D | JmplDecoder.java | 37 Instruction instr = null; 39 instr = factory.newIndirectCallInstruction(addr, rd); 44 instr = factory.newReturnInstruction(addr, rd, false /* not leaf */); 46 instr = factory.newReturnInstruction(addr, rd, true /* leaf */); 48 instr = factory.newJmplInstruction(addr, rd); 51 instr = factory.newJmplInstruction(addr, rd); 53 return instr;
|
H A D | V9ReadDecoder.java | 33 Instruction instr = null; 38 instr = v9factory.newIllegalInstruction(instruction); 46 instr = v9factory.newV9MembarInstruction((instruction & MMASK_MASK) >>> MMASK_START_BIT, 49 instr = v9factory.newStbarInstruction(); 52 instr = v9factory.newIllegalInstruction(instruction); 61 instr = v9factory.newV9ReadInstruction(specialRegNum, asrRegNum, rd); 64 return instr;
|
H A D | V9WriteDecoder.java | 33 Instruction instr = null; 39 instr = v9factory.newIllegalInstruction(instruction); 44 instr = v9factory.newV9SirInstruction(); 46 instr = v9factory.newIllegalInstruction(instruction); 55 instr = v9factory.newV9WriteInstruction(specialRegNum, asrRegNum, rs1, getOperand2(instruction)); 59 return instr;
|
H A D | ReadDecoder.java | 36 Instruction instr = null; 41 instr = factory.newStbarInstruction(); 43 instr = factory.newReadInstruction(specialReg, rs1Num, 46 return instr;
|
H A D | SethiDecoder.java | 31 Instruction instr = null; 36 instr = factory.newNoopInstruction(); 38 instr = factory.newSethiInstruction(imm22, rd); 40 return instr;
|
H A D | V9PopcDecoder.java | 34 Instruction instr = null; 37 instr = v9factory.newIllegalInstruction(instruction); 40 instr = v9factory.newV9PopcInstruction(getOperand2(instruction), rd); 42 return instr;
|
H A D | V9RdprDecoder.java | 32 Instruction instr = null; 36 instr = v9factory.newV9RdprInstruction(prNum, rd); 38 instr = v9factory.newIllegalInstruction(instruction); 41 return instr;
|
H A D | V9WrprDecoder.java | 32 Instruction instr = null; 37 instr = v9factory.newV9WrprInstruction(rs1, operand2, prNum); 39 instr = v9factory.newIllegalInstruction(instruction); 42 return instr;
|
H A D | LogicDecoder.java | 39 Instruction instr = null; 41 instr = factory.newMoveInstruction(name, op3, operand2, rd); 43 instr = factory.newLogicInstruction(name, op3, rtlOperation, rs1, operand2, rd); 45 return instr;
|
H A D | V9MOVrDecoder.java | 40 Instruction instr = null; 44 instr = v9factory.newIllegalInstruction(instruction); 50 instr = v9factory.newV9MOVrInstruction(name, rs1, operand2, rd, regConditionCode); 53 return instr;
|
H A D | SPARCDisassembler.java | 102 Instruction instr = null; 106 instr = null; 109 instr = (Instruction) instructionCache.get(new Integer(instruction)); 110 if (instr == null) { 115 instr = decodeFormat2Instruction(instruction); 119 instr = decodeFormat1Instruction(instruction); 123 instr = decodeFormat3AInstruction(instruction); 127 instr = decodeFormat3Instruction(instruction); 132 instructionCache.put(new Integer(instruction), instr); 135 visitor.visit(startPc + len, instr); [all...] |
H A D | V9FMOVccDecoder.java | 52 Instruction instr = null; 55 instr = v9factory.newIllegalInstruction(instruction); 63 instr = v9factory.newV9FMOVccInstruction(name,opf, conditionCode, conditionFlag, 67 return instr;
|
H A D | V9MOVccDecoder.java | 43 Instruction instr = null; 46 instr = v9factory.newIllegalInstruction(instruction); 53 instr = v9factory.newV9MOVccInstruction(name, conditionCode, conditionFlag, source, rd); 56 return instr;
|
H A D | WriteDecoder.java | 36 Instruction instr = null;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/ |
H A D | InstructionVisitor.java | 29 public void visit(long currentPc, Instruction instr); argument
|
/openjdk7/jdk/test/java/awt/print/PrinterJob/ |
H A D | PageRanges.java | 36 static String[] instr = { field in class:PageRanges 45 for (int i=0;i<instr.length;i++) { 46 System.out.println(instr[i]);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/ |
H A D | CodeWriter.java | 103 for (Instruction instr: attr.getInstructions()) { 106 w.writeDetails(instr); 107 writeInstr(instr); 109 println(report("error at or after byte " + instr.getPC())); 118 public void writeInstr(Instruction instr) { argument 119 print(String.format("%4d: %-13s ", instr.getPC(), instr.getMnemonic())); 125 instr.accept(instructionPrinter, indent); 132 public Void visitNoOperands(Instruction instr, Integer indent) { 136 public Void visitArrayType(Instruction instr, TypeKin [all...] |
H A D | InstructionDetailWriter.java | 56 abstract void writeDetails(Instruction instr); argument
|
/openjdk7/jdk/test/sun/reflect/CallerSensitive/ |
H A D | MethodFinder.java | 65 for (Instruction instr : c_attr.getInstructions()) { 66 int idx = instr.accept(codeVisitor, cprefs); 156 public Integer visitNoOperands(Instruction instr, List<Integer> p) { 160 public Integer visitArrayType(Instruction instr, TypeKind kind, List<Integer> p) { 164 public Integer visitBranch(Instruction instr, int offset, List<Integer> p) { 168 public Integer visitConstantPoolRef(Instruction instr, int index, List<Integer> p) { 172 public Integer visitConstantPoolRefAndValue(Instruction instr, int index, int value, List<Integer> p) { 176 public Integer visitLocal(Instruction instr, int index, List<Integer> p) { 180 public Integer visitLocalAndValue(Instruction instr, int index, int value, List<Integer> p) { 184 public Integer visitLookupSwitch(Instruction instr, in [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | FloatGRPDecoder.java | 154 Instruction instr = null; 156 instr = instrDecoder.decode(bytesArray, byteIndex, instrStartIndex, segmentOverride, prefixes, factory); 159 instr = factory.newIllegalInstruction(); 161 return instr;
|
/openjdk7/jdk/src/solaris/demo/jni/Poller/ |
H A D | SimpleServer.java | 61 private static InputStream[] instr = new InputStream[MAXCONN]; field in class:SimpleServer 128 private InputStream instr; field in class:SimpleServer.ConnHandler 129 public ConnHandler(InputStream inputStr) { instr = inputStr; } 137 bytes = instr.read (buff, 0, BYTESPEROP); 151 System.out.println("instr.read returned : " + bytes);
|
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | output_h.cpp | 1500 InstructForm *instr; local 1501 for( ; (instr = (InstructForm*)_instructions.iter()) != NULL; ) { 1503 if ( instr->ideal_only() ) continue; 1508 instr->_ident, instr->mach_base_class(_globalNames) ); 1510 fprintf(fp," MachOper *_opnd_array[%d];\n", instr->num_opnds() ); 1511 if ( instr->is_ideal_jump() ) { 1524 if ( instr->is_ideal_jump() ) { 1529 if( can_cisc_spill() && (instr->cisc_spill_alternate() != NULL) ) { 1535 instr [all...] |