Searched refs:instr (Results 1 - 25 of 65) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DV9DoneRetryDecoder.java33 Instruction instr = null;
39 instr = v9factory.newV9DoneInstruction();
42 instr = v9factory.newV9RetryInstruction();
45 instr = v9factory.newIllegalInstruction(instruction);
48 return instr;
H A DV9SavedRestoredDecoder.java33 Instruction instr = null;
39 instr = v9factory.newV9SavedInstruction();
42 instr = v9factory.newV9RestoredInstruction();
45 instr = v9factory.newIllegalInstruction(instruction);
49 return instr;
H A DV9FlushwDecoder.java33 Instruction instr = null;
36 instr = v9factory.newIllegalInstruction(instruction);
38 instr = v9factory.newV9FlushwInstruction();
40 return instr;
H A DJmplDecoder.java37 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 DV9ReadDecoder.java33 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 DV9WriteDecoder.java33 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 DReadDecoder.java36 Instruction instr = null;
41 instr = factory.newStbarInstruction();
43 instr = factory.newReadInstruction(specialReg, rs1Num,
46 return instr;
H A DSethiDecoder.java31 Instruction instr = null;
36 instr = factory.newNoopInstruction();
38 instr = factory.newSethiInstruction(imm22, rd);
40 return instr;
H A DV9PopcDecoder.java34 Instruction instr = null;
37 instr = v9factory.newIllegalInstruction(instruction);
40 instr = v9factory.newV9PopcInstruction(getOperand2(instruction), rd);
42 return instr;
H A DV9RdprDecoder.java32 Instruction instr = null;
36 instr = v9factory.newV9RdprInstruction(prNum, rd);
38 instr = v9factory.newIllegalInstruction(instruction);
41 return instr;
H A DV9WrprDecoder.java32 Instruction instr = null;
37 instr = v9factory.newV9WrprInstruction(rs1, operand2, prNum);
39 instr = v9factory.newIllegalInstruction(instruction);
42 return instr;
H A DLogicDecoder.java39 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 DV9MOVrDecoder.java40 Instruction instr = null;
44 instr = v9factory.newIllegalInstruction(instruction);
50 instr = v9factory.newV9MOVrInstruction(name, rs1, operand2, rd, regConditionCode);
53 return instr;
H A DSPARCDisassembler.java102 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 DV9FMOVccDecoder.java52 Instruction instr = null;
55 instr = v9factory.newIllegalInstruction(instruction);
63 instr = v9factory.newV9FMOVccInstruction(name,opf, conditionCode, conditionFlag,
67 return instr;
H A DV9MOVccDecoder.java43 Instruction instr = null;
46 instr = v9factory.newIllegalInstruction(instruction);
53 instr = v9factory.newV9MOVccInstruction(name, conditionCode, conditionFlag, source, rd);
56 return instr;
H A DWriteDecoder.java36 Instruction instr = null;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DInstructionVisitor.java29 public void visit(long currentPc, Instruction instr); argument
/openjdk7/jdk/test/java/awt/print/PrinterJob/
H A DPageRanges.java36 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 DCodeWriter.java103 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 DInstructionDetailWriter.java56 abstract void writeDetails(Instruction instr); argument
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DMethodFinder.java65 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 DFloatGRPDecoder.java154 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 DSimpleServer.java61 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 Doutput_h.cpp1500 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...]

Completed in 118 milliseconds

123