Searched defs:native (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dmutex.hpp94 // The rank native is only for use in Mutex's created by JVM_RawMonitorCreate,
112 native = max_nonleaf + 1 enumerator in enum:Monitor::lock_types
H A Dfprofiler.hpp91 int native() { function in class:VALUE_OBJ_CLASS_SPEC
98 return (interpreted() + compiled() + native() + compiling());
297 static int all_comp_ticks; // ticks in compiled code (+ native)
H A Dfprofiler.cpp232 tick_counter(int code, int native) { ticks_in_code = code; ticks_in_native = native; } argument
299 st->print(" + native");
980 // For runtime stubs, record as native rather than as compiled
1546 st->print("%d/%d/%d/%d", interpreted(), compiled(), native(), compiling());
/openjdk7/hotspot/src/share/vm/interpreter/
H A DabstractInterpreter.hpp97 native, // native method enumerator in enum:AbstractInterpreter::MethodKind
98 native_synchronized, // native method & is synchronized
129 number_of_result_handlers = 10 // number of result handlers for native calls
137 static address _native_entry_begin; // Region for native entry code
142 static address _native_abi_to_tosca[number_of_result_handlers]; // for native method result handlers
143 static address _slow_signature_handler; // the native method generic (slow) signature handler
233 // Support for native calls
316 // Converter for native abi result to tosca result
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp174 // Result goes to top of native stack.
178 // A result is in the tosca (abi result) from either a native method call or compiled
315 // returned. Place this result in the native abi that the caller expects.
318 // frame manager execept in this situation the caller is native code (c1/c2/call_stub)
320 // result in the expected location based on the native abi.
399 bool native) {
409 // we are non-native we in essence ensure that locals[0-1] exist. We play an extra trick in
436 // We don't need this for native calls because they return result in
440 if (!native) {
476 if (native) {
396 generate_compute_interpreter_state(const Register state, const Register locals, const Register sender_sp, bool native) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp108 // A result handler converts/unboxes a native call result into
112 // case of native methods, the caller's SP was not modified.
148 // A result is in the native abi result register from a native method call.
197 // native result is in O0, O1
305 // returned. Place this result in the native abi that the caller expects.
309 // frame manager execept in this situation the caller is native code (c1/c2/call_stub)
311 // result in the expected location based on the native abi.
576 // Interpreter stub for calling a native method. (C++ interpreter)
577 // This sets up a somewhat different looking stack for calling the native metho
1035 generate_compute_interpreter_state(const Register state, const Register prev_state, bool native) argument
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp1044 // All Java versions are required, native versions are optional
1123 void ADLParser::frame_pointer_parse(FrameForm *frame, bool native) { argument
1126 if (native) { frame->_c_frame_pointer = frame_pointer; }
1131 void ADLParser::interpreter_frame_pointer_parse(FrameForm *frame, bool native) { argument
1136 void ADLParser::inline_cache_parse(FrameForm *frame, bool native) { argument
1141 void ADLParser::interpreter_method_oop_parse(FrameForm *frame, bool native) { argument
1146 void ADLParser::cisc_spilling_operand_name_parse(FrameForm *frame, bool native) { argument
1185 void ADLParser::return_addr_parse(FrameForm *frame, bool native) { argument
1206 if (native) { frame->_c_return_addr_loc = in_register; }
1217 if (native) { fram
[all...]

Completed in 526 milliseconds