Lines Matching refs:address

79   address _start_pc;
80 address _end_pc;
81 address _error_exit_pc;
83 static address _common_exit_stub_pc;
88 void set_start_pc(address pc) { _start_pc = pc; } in set_start_pc()
89 void set_end_pc(address pc) { _end_pc = pc; } in set_end_pc()
90 void set_error_exit_pc(address pc) { _error_exit_pc = pc; } in set_error_exit_pc()
91 address start_pc() const { return _start_pc; } in start_pc()
92 address end_pc() const { return _end_pc; } in end_pc()
93 address error_exit_pc() const { return _error_exit_pc; } in error_exit_pc()
95 static void set_common_exit_stub_pc(address pc) { _common_exit_stub_pc = pc; } in set_common_exit_stub_pc()
96 static address common_exit_stub_pc() { return _common_exit_stub_pc; } in common_exit_stub_pc()
98 static UnsafeCopyMemory* add_to_table(address start_pc, address end_pc, address error_exit_pc) { in add_to_table()
109 static bool contains_pc(address pc);
110 static address page_error_continue_pc(address pc);
119 …UnsafeCopyMemoryMark(StubCodeGenerator* cgen, bool add_entry, bool continue_at_scope_end, address
132 static address _verify_oop_subroutine_entry;
134 …static address _call_stub_return_address; // the return PC, when returning to a cal…
135 static address _call_stub_entry;
136 static address _forward_exception_entry;
137 static address _catch_exception_entry;
138 static address _throw_AbstractMethodError_entry;
139 static address _throw_IncompatibleClassChangeError_entry;
140 static address _throw_NullPointerException_at_call_entry;
141 static address _throw_StackOverflowError_entry;
142 static address _throw_delayed_StackOverflowError_entry;
144 static address _atomic_xchg_entry;
145 static address _atomic_xchg_long_entry;
146 static address _atomic_store_entry;
147 static address _atomic_cmpxchg_entry;
148 static address _atomic_cmpxchg_byte_entry;
149 static address _atomic_cmpxchg_long_entry;
150 static address _atomic_add_entry;
151 static address _atomic_add_long_entry;
152 static address _fence_entry;
153 static address _d2i_wrapper;
154 static address _d2l_wrapper;
168 static address _jbyte_arraycopy;
169 static address _jshort_arraycopy;
170 static address _jint_arraycopy;
171 static address _jlong_arraycopy;
172 static address _oop_arraycopy, _oop_arraycopy_uninit;
173 static address _jbyte_disjoint_arraycopy;
174 static address _jshort_disjoint_arraycopy;
175 static address _jint_disjoint_arraycopy;
176 static address _jlong_disjoint_arraycopy;
177 static address _oop_disjoint_arraycopy, _oop_disjoint_arraycopy_uninit;
183 static address _arrayof_jbyte_arraycopy;
184 static address _arrayof_jshort_arraycopy;
185 static address _arrayof_jint_arraycopy;
186 static address _arrayof_jlong_arraycopy;
187 static address _arrayof_oop_arraycopy, _arrayof_oop_arraycopy_uninit;
188 static address _arrayof_jbyte_disjoint_arraycopy;
189 static address _arrayof_jshort_disjoint_arraycopy;
190 static address _arrayof_jint_disjoint_arraycopy;
191 static address _arrayof_jlong_disjoint_arraycopy;
192 static address _arrayof_oop_disjoint_arraycopy, _arrayof_oop_disjoint_arraycopy_uninit;
195 static address _checkcast_arraycopy, _checkcast_arraycopy_uninit;
196 static address _unsafe_arraycopy;
197 static address _generic_arraycopy;
199 static address _jbyte_fill;
200 static address _jshort_fill;
201 static address _jint_fill;
202 static address _arrayof_jbyte_fill;
203 static address _arrayof_jshort_fill;
204 static address _arrayof_jint_fill;
207 static address _zero_aligned_words;
209 static address _aescrypt_encryptBlock;
210 static address _aescrypt_decryptBlock;
211 static address _cipherBlockChaining_encryptAESCrypt;
212 static address _cipherBlockChaining_decryptAESCrypt;
213 static address _counterMode_AESCrypt;
214 static address _ghash_processBlocks;
215 static address _base64_encodeBlock;
217 static address _sha1_implCompress;
218 static address _sha1_implCompressMB;
219 static address _sha256_implCompress;
220 static address _sha256_implCompressMB;
221 static address _sha512_implCompress;
222 static address _sha512_implCompressMB;
224 static address _updateBytesCRC32;
225 static address _crc_table_adr;
227 static address _crc32c_table_addr;
228 static address _updateBytesCRC32C;
229 static address _updateBytesAdler32;
231 static address _multiplyToLen;
232 static address _squareToLen;
233 static address _mulAdd;
234 static address _montgomeryMultiply;
235 static address _montgomerySquare;
237 static address _vectorizedMismatch;
239 static address _dexp;
240 static address _dlog;
241 static address _dlog10;
242 static address _dpow;
243 static address _dsin;
244 static address _dcos;
245 static address _dlibm_sin_cos_huge;
246 static address _dlibm_reduce_pi04l;
247 static address _dlibm_tan_cot_huge;
248 static address _dtan;
251 static address _safefetch32_entry;
252 static address _safefetch32_fault_pc;
253 static address _safefetch32_continuation_pc;
254 static address _safefetchN_entry;
255 static address _safefetchN_fault_pc;
256 static address _safefetchN_continuation_pc;
263 static bool is_stub_code(address addr) { return contains(addr); } in is_stub_code()
265 static bool contains(address addr) { in contains()
278 …static address verify_oop_subroutine_entry_address() { return (address)&_verify_oop_subroutine… in verify_oop_subroutine_entry_address()
280 static address catch_exception_entry() { return _catch_exception_entry; } in catch_exception_entry()
284 address link,
288 address entry_point,
297 static address forward_exception_entry() { return _forward_exception_entry; } in forward_exception_entry()
299 …static address throw_AbstractMethodError_entry() { return _throw_AbstractMethodError_entry… in throw_AbstractMethodError_entry()
300 …static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeEr… in throw_IncompatibleClassChangeError_entry()
301 …static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_c… in throw_NullPointerException_at_call_entry()
302 …static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry;… in throw_StackOverflowError_entry()
303 …static address throw_delayed_StackOverflowError_entry() { return _throw_delayed_StackOverflowErro… in throw_delayed_StackOverflowError_entry()
305 static address atomic_xchg_entry() { return _atomic_xchg_entry; } in atomic_xchg_entry()
306 static address atomic_xchg_long_entry() { return _atomic_xchg_long_entry; } in atomic_xchg_long_entry()
307 static address atomic_store_entry() { return _atomic_store_entry; } in atomic_store_entry()
308 static address atomic_cmpxchg_entry() { return _atomic_cmpxchg_entry; } in atomic_cmpxchg_entry()
309 static address atomic_cmpxchg_byte_entry() { return _atomic_cmpxchg_byte_entry; } in atomic_cmpxchg_byte_entry()
310 static address atomic_cmpxchg_long_entry() { return _atomic_cmpxchg_long_entry; } in atomic_cmpxchg_long_entry()
311 static address atomic_add_entry() { return _atomic_add_entry; } in atomic_add_entry()
312 static address atomic_add_long_entry() { return _atomic_add_long_entry; } in atomic_add_long_entry()
313 static address fence_entry() { return _fence_entry; } in fence_entry()
315 static address d2i_wrapper() { return _d2i_wrapper; } in d2i_wrapper()
316 static address d2l_wrapper() { return _d2l_wrapper; } in d2l_wrapper()
318 …static address addr_fpu_cntrl_wrd_std() { return (address)&_fpu_cntrl_wrd_std; } in addr_fpu_cntrl_wrd_std()
319 static address addr_fpu_cntrl_wrd_24() { return (address)&_fpu_cntrl_wrd_24; } in addr_fpu_cntrl_wrd_24()
320 …static address addr_fpu_cntrl_wrd_trunc() { return (address)&_fpu_cntrl_wrd_trunc; } in addr_fpu_cntrl_wrd_trunc()
321 static address addr_mxcsr_std() { return (address)&_mxcsr_std; } in addr_mxcsr_std()
322 …static address addr_fpu_subnormal_bias1() { return (address)&_fpu_subnormal_bias1; } in addr_fpu_subnormal_bias1()
323 …static address addr_fpu_subnormal_bias2() { return (address)&_fpu_subnormal_bias2; } in addr_fpu_subnormal_bias2()
326 …static address select_arraycopy_function(BasicType t, bool aligned, bool disjoint, const char* &na…
328 static address jbyte_arraycopy() { return _jbyte_arraycopy; } in jbyte_arraycopy()
329 static address jshort_arraycopy() { return _jshort_arraycopy; } in jshort_arraycopy()
330 static address jint_arraycopy() { return _jint_arraycopy; } in jint_arraycopy()
331 static address jlong_arraycopy() { return _jlong_arraycopy; } in jlong_arraycopy()
332 static address oop_arraycopy(bool dest_uninitialized = false) { in oop_arraycopy()
335 static address jbyte_disjoint_arraycopy() { return _jbyte_disjoint_arraycopy; } in jbyte_disjoint_arraycopy()
336 static address jshort_disjoint_arraycopy() { return _jshort_disjoint_arraycopy; } in jshort_disjoint_arraycopy()
337 static address jint_disjoint_arraycopy() { return _jint_disjoint_arraycopy; } in jint_disjoint_arraycopy()
338 static address jlong_disjoint_arraycopy() { return _jlong_disjoint_arraycopy; } in jlong_disjoint_arraycopy()
339 static address oop_disjoint_arraycopy(bool dest_uninitialized = false) { in oop_disjoint_arraycopy()
343 static address arrayof_jbyte_arraycopy() { return _arrayof_jbyte_arraycopy; } in arrayof_jbyte_arraycopy()
344 static address arrayof_jshort_arraycopy() { return _arrayof_jshort_arraycopy; } in arrayof_jshort_arraycopy()
345 static address arrayof_jint_arraycopy() { return _arrayof_jint_arraycopy; } in arrayof_jint_arraycopy()
346 static address arrayof_jlong_arraycopy() { return _arrayof_jlong_arraycopy; } in arrayof_jlong_arraycopy()
347 static address arrayof_oop_arraycopy(bool dest_uninitialized = false) { in arrayof_oop_arraycopy()
351 static address arrayof_jbyte_disjoint_arraycopy() { return _arrayof_jbyte_disjoint_arraycopy; } in arrayof_jbyte_disjoint_arraycopy()
352 static address arrayof_jshort_disjoint_arraycopy() { return _arrayof_jshort_disjoint_arraycopy; } in arrayof_jshort_disjoint_arraycopy()
353 static address arrayof_jint_disjoint_arraycopy() { return _arrayof_jint_disjoint_arraycopy; } in arrayof_jint_disjoint_arraycopy()
354 static address arrayof_jlong_disjoint_arraycopy() { return _arrayof_jlong_disjoint_arraycopy; } in arrayof_jlong_disjoint_arraycopy()
355 static address arrayof_oop_disjoint_arraycopy(bool dest_uninitialized = false) { in arrayof_oop_disjoint_arraycopy()
358 static address checkcast_arraycopy(bool dest_uninitialized = false) { in checkcast_arraycopy()
361 static address unsafe_arraycopy() { return _unsafe_arraycopy; } in unsafe_arraycopy()
366 static address generic_arraycopy() { return _generic_arraycopy; } in generic_arraycopy()
368 static address jbyte_fill() { return _jbyte_fill; } in jbyte_fill()
369 static address jshort_fill() { return _jshort_fill; } in jshort_fill()
370 static address jint_fill() { return _jint_fill; } in jint_fill()
371 static address arrayof_jbyte_fill() { return _arrayof_jbyte_fill; } in arrayof_jbyte_fill()
372 static address arrayof_jshort_fill() { return _arrayof_jshort_fill; } in arrayof_jshort_fill()
373 static address arrayof_jint_fill() { return _arrayof_jint_fill; } in arrayof_jint_fill()
375 static address aescrypt_encryptBlock() { return _aescrypt_encryptBlock; } in aescrypt_encryptBlock()
376 static address aescrypt_decryptBlock() { return _aescrypt_decryptBlock; } in aescrypt_decryptBlock()
377 …static address cipherBlockChaining_encryptAESCrypt() { return _cipherBlockChaining_encryptAESCryp… in cipherBlockChaining_encryptAESCrypt()
378 …static address cipherBlockChaining_decryptAESCrypt() { return _cipherBlockChaining_decryptAESCryp… in cipherBlockChaining_decryptAESCrypt()
379 static address counterMode_AESCrypt() { return _counterMode_AESCrypt; } in counterMode_AESCrypt()
380 static address ghash_processBlocks() { return _ghash_processBlocks; } in ghash_processBlocks()
381 static address base64_encodeBlock() { return _base64_encodeBlock; } in base64_encodeBlock()
382 static address sha1_implCompress() { return _sha1_implCompress; } in sha1_implCompress()
383 static address sha1_implCompressMB() { return _sha1_implCompressMB; } in sha1_implCompressMB()
384 static address sha256_implCompress() { return _sha256_implCompress; } in sha256_implCompress()
385 static address sha256_implCompressMB() { return _sha256_implCompressMB; } in sha256_implCompressMB()
386 static address sha512_implCompress() { return _sha512_implCompress; } in sha512_implCompress()
387 static address sha512_implCompressMB() { return _sha512_implCompressMB; } in sha512_implCompressMB()
389 static address updateBytesCRC32() { return _updateBytesCRC32; } in updateBytesCRC32()
390 static address crc_table_addr() { return _crc_table_adr; } in crc_table_addr()
392 static address crc32c_table_addr() { return _crc32c_table_addr; } in crc32c_table_addr()
393 static address updateBytesCRC32C() { return _updateBytesCRC32C; } in updateBytesCRC32C()
394 static address updateBytesAdler32() { return _updateBytesAdler32; } in updateBytesAdler32()
396 static address multiplyToLen() { return _multiplyToLen; } in multiplyToLen()
397 static address squareToLen() { return _squareToLen; } in squareToLen()
398 static address mulAdd() { return _mulAdd; } in mulAdd()
399 static address montgomeryMultiply() { return _montgomeryMultiply; } in montgomeryMultiply()
400 static address montgomerySquare() { return _montgomerySquare; } in montgomerySquare()
402 static address vectorizedMismatch() { return _vectorizedMismatch; } in vectorizedMismatch()
404 static address dexp() { return _dexp; } in dexp()
405 static address dlog() { return _dlog; } in dlog()
406 static address dlog10() { return _dlog10; } in dlog10()
407 static address dpow() { return _dpow; } in dpow()
408 static address dsin() { return _dsin; } in dsin()
409 static address dcos() { return _dcos; } in dcos()
410 static address dlibm_reduce_pi04l() { return _dlibm_reduce_pi04l; } in dlibm_reduce_pi04l()
411 static address dlibm_sin_cos_huge() { return _dlibm_sin_cos_huge; } in dlibm_sin_cos_huge()
412 static address dlibm_tan_cot_huge() { return _dlibm_tan_cot_huge; } in dlibm_tan_cot_huge()
413 static address dtan() { return _dtan; } in dtan()
415 static address select_fill_function(BasicType t, bool aligned, const char* &name);
417 static address zero_aligned_words() { return _zero_aligned_words; } in zero_aligned_words()
429 static bool is_safefetch_fault(address pc) { in is_safefetch_fault()
435 static address continuation_for_safefetch_fault(address pc) { in continuation_for_safefetch_fault()