Lines Matching refs:address

137   static address    _native_entry_begin;                        // Region for native entry code
138 static address _native_entry_end;
141 static address _entry_table[number_of_method_entries]; // entry points for a given method
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
145 static address _rethrow_exception_entry; // rethrows an activation in previous frame
159 static address entry_for_kind(MethodKind k) { assert(0 <= k && k < number_of_method_entries, "illegal kind"); return _entry_table[k]; }
160 static address entry_for_method(methodHandle m) { return entry_for_kind(method_kind(m)); }
163 static void set_entry_for_kind(MethodKind k, address e);
172 static address deopt_entry (TosState state, int length) { ShouldNotReachHere(); return NULL; }
173 static address return_entry (TosState state, int length) { ShouldNotReachHere(); return NULL; }
175 static address rethrow_exception_entry() { return _rethrow_exception_entry; }
182 // Compute the entry address for continuation after
183 static address deopt_continue_after_entry(methodOop method,
184 address bcp,
187 // Compute the entry address for reexecution
188 static address deopt_reexecute_entry(methodOop method, address bcp);
234 static address slow_signature_handler() { return _slow_signature_handler; }
235 static address result_handler(BasicType type) { return _native_abi_to_tosca[BasicType_as_index(type)]; }
237 static bool in_native_entry(address pc) { return _native_entry_begin <= pc && pc < _native_entry_end; }
267 return Bytes::get_native_u8((address)slot_addr);
274 Bytes::put_native_u8((address)slot_addr, value);
317 address generate_result_handler_for(BasicType type);
318 address generate_slow_signature_handler();
321 address generate_method_entry(AbstractInterpreter::MethodKind kind);