Searched defs:instr (Results 1 - 25 of 30) sorted by relevance

12

/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 DInstructionDetailWriter.java56 abstract void writeDetails(Instruction instr); argument
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 DLocalVariableTableWriter.java97 public void writeDetails(Instruction instr) { argument
98 int pc = instr.getPC();
H A DLocalVariableTypeTableWriter.java98 public void writeDetails(Instruction instr) { argument
99 int pc = instr.getPC();
H A DSourceWriter.java82 public void writeDetails(Instruction instr) { argument
84 Set<Integer> lines = lineMap.get(instr.getPC());
H A DTryBlockWriter.java94 public void writeDetails(Instruction instr) { argument
95 writeTrys(instr, NoteKind.END);
96 writeTrys(instr, NoteKind.START);
97 writeTrys(instr, NoteKind.HANDLER);
100 public void writeTrys(Instruction instr, NoteKind kind) { argument
102 int pc = instr.getPC();
H A DStackMapWriter.java118 public void writeDetails(Instruction instr) { argument
119 writeDetails(instr.getPC());
/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);
H A DPollingServer.java70 private static InputStream[] instr = new InputStream[MAXCONN]; field in class:PollingServer
165 instr[connects] = sockArr[connects].getInputStream();
243 instream = instr[map];
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.cpp69 void print_operand(Value instr);
70 void print_HIR(Value instr);
226 void CFGPrinterOutput::print_operand(Value instr) { argument
227 if (instr->operand()->is_virtual()) {
229 instr->operand()->print(output());
234 void CFGPrinterOutput::print_HIR(Value instr) { argument
237 if (instr->is_pinned()) {
241 output()->print("%d %d ", instr->printable_bci(), instr->use_count());
243 print_operand(instr);
[all...]
H A Dc1_Compilation.hpp171 Instruction* set_current_instruction(Instruction* instr) { argument
173 _current_instruction = instr;
255 InstructionMark(Compilation* compilation, Instruction* instr) { argument
257 _previous = _compilation->set_current_instruction(instr);
H A Dc1_InstructionPrinter.cpp194 void InstructionPrinter::print_op2(Op2* instr) { argument
195 print_value(instr->x());
196 output()->print(" %s ", op_name(instr->op()));
197 print_value(instr->y());
210 void InstructionPrinter::print_instr(Instruction* instr) { argument
211 instr->visit(this);
323 fill_to(instr_pos, filler); output()->print("instr");
329 void InstructionPrinter::print_line(Instruction* instr) { argument
331 if (instr->is_pinned()) output()->put('.');
332 fill_to(bci_pos ); output()->print("%d", instr
[all...]
H A Dc1_Canonicalizer.cpp809 static bool match_index_and_scale(Instruction* instr, argument
816 Convert* convert = instr->as_Convert();
818 instr = convert->value();
821 ShiftOp* shift = instr->as_ShiftOp();
843 ArithmeticOp* arith = instr->as_ArithmeticOp();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp268 bool NativeFarCall::is_call_at(address instr) { argument
269 return nativeInstruction_at(instr)->is_sethi();
H A DnativeInst_sparc.hpp344 inline NativeCall* nativeCall_at(address instr);
345 inline NativeCall* nativeCall_overwriting_at(address instr,
374 friend inline NativeCall* nativeCall_at(address instr);
375 friend NativeCall* nativeCall_overwriting_at(address instr, address destination = NULL) { argument
377 NativeCall* call = (NativeCall*)instr;
378 call->set_long_at(0 * BytesPerInstWord, call_instruction(destination, instr));
380 assert(call->addr_at(2 * BytesPerInstWord) - instr == instruction_size, "instruction size");
382 assert(nativeCall_at(instr)->destination() == destination, "correct call destination");
394 static bool is_call_at(address instr) { argument
395 return nativeInstruction_at(instr)
398 is_call_before(address instr) argument
402 is_call_to(address instr, address target) argument
414 nativeCall_at(address instr) argument
433 nativeFarCall_at(address instr) argument
434 nativeFarCall_overwriting_at(address instr, address destination = NULL) argument
478 nativeFarCall_at(address instr) argument
486 nativeFarCall_overwriting_at(address instr, address destination = NULL) argument
894 fill_delay_slot(int instr) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInstruction.java95 R visitNoOperands(Instruction instr, P p); argument
97 R visitArrayType(Instruction instr, TypeKind kind, P p); argument
99 R visitBranch(Instruction instr, int offset, P p); argument
101 R visitConstantPoolRef(Instruction instr, int index, P p); argument
103 R visitConstantPoolRefAndValue(Instruction instr, int index, int value, P p); argument
105 R visitLocal(Instruction instr, int index, P p); argument
107 R visitLocalAndValue(Instruction instr, int index, int value, P p); argument
109 R visitLookupSwitch(Instruction instr, int default_, int npairs, int[] matches, int[] offsets, P p); argument
111 R visitTableSwitch(Instruction instr, int default_, int low, int high, int[] offsets, P p); argument
113 R visitValue(Instruction instr, in argument
115 visitUnknown(Instruction instr, P p) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c899 GLint instr; local
901 GL_MAX_PROGRAM_INSTRUCTIONS_ARB, &instr);
902 if (instr > 512) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.hpp149 static bool is_call_at(address instr) { argument
150 return ((*instr) & 0xFF) == NativeCall::instruction_code;
157 static bool is_call_to(address instr, address target) { argument
158 return nativeInstruction_at(instr)->is_call() &&
159 nativeCall_at(instr)->destination() == target;
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp311 InstructForm *instr; local
312 for( ; (instr = (InstructForm*)_instructions.iter()) != NULL; ) {
314 instr->build_components();
317 if ( instr->_matrule == NULL ) continue;
319 MatchRule &mrule = *instr->_matrule;
320 Predicate *pred = instr->build_predicate();
323 const char *rootOp = instr->_ident;
327 const char *costStr = instr->cost();
333 const char *result = instr->reduce_result();
335 if ( instr
[all...]
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...]
H A Dadlparse.cpp146 InstructForm *instr; local
153 instr = new InstructForm(ident); // Create new instruction form
154 instr->_linenum = linenum();
155 _globalNames.Insert(ident, instr); // Add name to the name table
166 else get_oplist(instr->_parameters, instr->_localNames);
181 if (!strcmp(ident, "predicate")) instr->_predicate = pred_parse();
184 rule = instr->_matrule;
187 rule = match_parse(instr->_localNames);
189 instr
309 adjust_set_rule(InstructForm *instr) argument
1271 ins_pipe_parse(InstructForm &instr) argument
3164 size_parse(InstructForm *instr) argument
3199 opcode_parse(InstructForm *instr) argument
3803 effect_parse(InstructForm *instr) argument
3824 expand_parse(InstructForm *instr) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java712 public void visit(Bytecode instr) {
713 int curBci = instr.bci();
724 instrStr = escapeHTMLSpecialChars(instr.toString());
733 if (instr instanceof BytecodeNew) {
734 BytecodeNew newBytecode = (BytecodeNew) instr;
741 } else if(instr instanceof BytecodeInvoke) {
742 BytecodeInvoke invokeBytecode = (BytecodeInvoke) instr;
752 } else if (instr instanceof BytecodeGetPut) {
753 BytecodeGetPut getPut = (BytecodeGetPut) instr;
761 } else if (instr instanceo
965 visit(long currentPc, Instruction instr) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp761 void JavaThread::record_jump(address target, address instr, const char* file, int line) { argument
770 _jmp_ring[index]._instruction = (intptr_t) instr;

Completed in 69 milliseconds

12