/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | icBuffer_zero.cpp | 44 address entry_point) { 42 assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) argument
|
H A D | cppInterpreterGenerator_zero.hpp | 35 static address generate_entry_impl(MacroAssembler* masm, address entry_point) { argument 38 entry->set_entry_point(entry_point); 43 address generate_entry(address entry_point) { argument 44 return generate_entry_impl(assembler(), entry_point);
|
H A D | interpreter_zero.hpp | 30 static void invoke_method(methodOop method, address entry_point, TRAPS) { argument 31 ((ZeroEntry *) entry_point)->invoke(method, THREAD); 34 address entry_point, 37 ((ZeroEntry *) entry_point)->invoke_osr(method, osr_buf, THREAD); 33 invoke_osr(methodOop method, address entry_point, address osr_buf, TRAPS) argument
|
H A D | entry_zero.hpp | 39 address entry_point() const { function in class:ZeroEntry 42 void set_entry_point(address entry_point) { argument 43 _entry_point = entry_point; 58 ((NormalEntryFunc) entry_point())(method, (intptr_t) this, THREAD), 63 ((OSREntryFunc) entry_point())(method, osr_buf, (intptr_t) this, THREAD),
|
H A D | stubGenerator_zero.cpp | 65 address entry_point, 92 Interpreter::invoke_method(method, entry_point, THREAD); 60 call_stub( JavaCallWrapper *call_wrapper, intptr_t* result, BasicType result_type, methodOop method, address entry_point, intptr_t* parameters, int parameter_words, TRAPS) argument
|
H A D | cppInterpreter_zero.cpp | 827 address entry_point = NULL; local 835 entry_point = ((InterpreterGenerator*) this)->generate_native_entry(false); 839 entry_point = ((InterpreterGenerator*) this)->generate_native_entry(false); 843 entry_point = ((InterpreterGenerator*) this)->generate_empty_entry(); 847 entry_point = ((InterpreterGenerator*) this)->generate_accessor_entry(); 851 entry_point = ((InterpreterGenerator*) this)->generate_abstract_entry(); 863 entry_point = ((InterpreterGenerator*) this)->generate_math_entry(kind); 867 entry_point = ((InterpreterGenerator*)this)->generate_Reference_get_entry(); 874 if (entry_point == NULL) 875 entry_point [all...] |
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | serviceThread.hpp | 39 ServiceThread(ThreadFunction entry_point) : JavaThread(entry_point) {}; argument
|
H A D | javaCalls.cpp | 368 address entry_point = method->from_interpreted_entry(); local 370 entry_point = method->interpreter_entry(); 412 entry_point,
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | icBuffer_sparc.cpp | 48 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) { argument 62 AddressLiteral entry(entry_point);
|
H A D | interpreter_sparc.cpp | 377 address entry_point = NULL; local 382 case Interpreter::native : entry_point = ((InterpreterGenerator*)this)->generate_native_entry(false); break; 383 case Interpreter::native_synchronized : entry_point = ((InterpreterGenerator*)this)->generate_native_entry(true); break; 384 case Interpreter::empty : entry_point = ((InterpreterGenerator*)this)->generate_empty_entry(); break; 385 case Interpreter::accessor : entry_point = ((InterpreterGenerator*)this)->generate_accessor_entry(); break; 386 case Interpreter::abstract : entry_point = ((InterpreterGenerator*)this)->generate_abstract_entry(); break; 398 : entry_point = ((InterpreterGenerator*)this)->generate_Reference_get_entry(); break; 404 if (entry_point) return entry_point;
|
H A D | c1_Runtime1_sparc.cpp | 42 int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry_point, int number_of_arguments) { argument 60 call(entry_point, relocInfo::runtime_call_type);
|
H A D | methodHandles_sparc.cpp | 217 address entry_point = __ pc(); local 279 return entry_point;
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | icBuffer_x86.cpp | 47 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) { argument 57 masm->jump(ExternalAddress(entry_point));
|
H A D | interpreter_x86_32.cpp | 86 address entry_point = __ pc(); 105 return entry_point; 116 address entry_point = __ pc(); 214 return entry_point; 228 address entry_point = __ pc(); local 242 return entry_point;
|
H A D | interpreter_x86_64.cpp | 211 address entry_point = __ pc(); 299 return entry_point; 309 address entry_point = __ pc(); local 324 return entry_point; 338 address entry_point = __ pc(); local 356 return entry_point;
|
H A D | methodHandles_x86.cpp | 217 address entry_point = __ pc(); local 275 return entry_point;
|
H A D | cppInterpreter_x86.cpp | 605 // On return (i.e. jump to entry_point) [ back to invocation of interpreter ] 805 address entry_point = __ pc(); local 934 return entry_point; 978 address entry_point = __ pc(); local 1483 return entry_point; 1660 address entry_point = __ pc(); 2150 InternalAddress entry(entry_point); 2194 interpreter_frame_manager = entry_point; 2195 return entry_point; 2201 address entry_point local [all...] |
H A D | templateInterpreter_x86_32.cpp | 418 // On return (i.e. jump to entry_point) [ back to invocation of interpreter ] 641 address entry_point = __ pc(); local 758 return entry_point; 869 address entry_point = __ pc(); local 1275 return entry_point; 1287 address entry_point = __ pc(); local 1434 return entry_point; 1492 address entry_point = NULL; local 1497 case Interpreter::native : entry_point = ((InterpreterGenerator*)this)->generate_native_entry(false); break; 1498 case Interpreter::native_synchronized : entry_point [all...] |
H A D | templateInterpreter_x86_64.cpp | 368 // On return (i.e. jump to entry_point) [ back to invocation of interpreter ] 611 address entry_point = __ pc(); local 743 return entry_point; 845 address entry_point = __ pc(); local 1287 return entry_point; 1299 address entry_point = __ pc(); local 1458 return entry_point; 1515 address entry_point = NULL; local 1520 case Interpreter::native : entry_point = ((InterpreterGenerator*)this)->generate_native_entry(false); break; 1521 case Interpreter::native_synchronized : entry_point [all...] |
/openjdk7/hotspot/src/share/vm/code/ |
H A D | vtableStubs.hpp | 62 address entry_point() const { return code_begin(); } function in class:VtableStub
|
H A D | compiledIC.cpp | 94 void CompiledIC::set_ic_destination(address entry_point) { argument 95 assert(entry_point != NULL, "must set legal entry point"); 100 tty->print_cr(" changing destination to " INTPTR_FORMAT, entry_point); 107 _ic_call->set_destination_mt_safe(entry_point); 398 entry = method_code->entry_point();
|
H A D | codeBlob.hpp | 307 address entry_point() { return code_begin(); } function in class:RuntimeStub 340 address entry_point() { return code_begin(); } function in class:SingletonBlob
|
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_new.cpp | 137 entry_point(void) { function
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | templateTable.cpp | 71 void TemplateTable::call_VM(Register oop_result, address entry_point) { argument 73 _masm->call_VM(oop_result, entry_point); 77 void TemplateTable::call_VM(Register oop_result, address entry_point, Register arg_1) { argument 79 _masm->call_VM(oop_result, entry_point, arg_1); 83 void TemplateTable::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2) { argument 85 _masm->call_VM(oop_result, entry_point, arg_1, arg_2); 89 void TemplateTable::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, Register arg_3) { argument 91 _masm->call_VM(oop_result, entry_point, arg_1, arg_2, arg_3); 95 void TemplateTable::call_VM(Register oop_result, Register last_java_sp, address entry_point) { argument 97 _masm->call_VM(oop_result, last_java_sp, entry_point); 101 call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1) argument 107 call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2) argument 113 call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, Register arg_3) argument [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/ |
H A D | ELFFileParser.java | 119 private int entry_point; // Elf32_Addr field in class:ELFFileParser.ELFFileImpl.ELFHeaderImpl 168 entry_point = readInt();
|