Lines Matching defs:entry

112     // o4         : (interpreter) entry point
371 // Upon entry, O7 has the return address returning into Java
429 // exceptions (e.g., NullPointerException or AbstractMethodError on entry) are
1381 address generate_disjoint_byte_copy(bool aligned, address *entry, const char *name) {
1397 if (entry != NULL) {
1398 *entry = __ pc();
1491 address *entry, const char *name) {
1509 if (entry != NULL) {
1510 *entry = __ pc();
1602 address generate_disjoint_short_copy(bool aligned, address *entry, const char * name) {
1618 if (entry != NULL) {
1619 *entry = __ pc();
1942 address *entry, const char *name) {
1962 if (entry != NULL) {
1963 *entry = __ pc();
2194 address generate_disjoint_int_copy(bool aligned, address *entry, const char *name) {
2202 if (entry != NULL) {
2203 *entry = __ pc();
2328 address *entry, const char *name) {
2335 if (entry != NULL) {
2336 *entry = __ pc();
2480 address generate_disjoint_long_copy(bool aligned, address *entry, const char *name) {
2487 if (entry != NULL) {
2488 *entry = __ pc();
2553 address *entry, const char *name) {
2562 if (entry != NULL) {
2563 *entry = __ pc();
2587 address generate_disjoint_oop_copy(bool aligned, address *entry, const char *name,
2600 if (entry != NULL) {
2601 *entry = __ pc();
2639 address *entry, const char *name,
2652 if (entry != NULL) {
2653 *entry = __ pc();
2732 address generate_checkcast_copy(const char *name, address *entry, bool dest_uninitialized = false) {
2773 if (entry != NULL) {
2774 *entry = __ pc();
2791 // (Loop is rotated; its entry is load_element.)
2805 // ======== loop entry is here ========
2866 // bump this on entry, not on exit:
2976 // bump this on entry, not on exit:
3247 address entry;
3257 StubRoutines::_jbyte_disjoint_arraycopy = generate_disjoint_byte_copy(false, &entry,
3259 StubRoutines::_jbyte_arraycopy = generate_conjoint_byte_copy(false, entry,
3262 StubRoutines::_arrayof_jbyte_disjoint_arraycopy = generate_disjoint_byte_copy(true, &entry,
3264 StubRoutines::_arrayof_jbyte_arraycopy = generate_conjoint_byte_copy(true, entry, NULL,
3269 StubRoutines::_jshort_disjoint_arraycopy = generate_disjoint_short_copy(false, &entry,
3271 StubRoutines::_jshort_arraycopy = generate_conjoint_short_copy(false, entry,
3274 StubRoutines::_arrayof_jshort_disjoint_arraycopy = generate_disjoint_short_copy(true, &entry,
3276 StubRoutines::_arrayof_jshort_arraycopy = generate_conjoint_short_copy(true, entry, NULL,
3281 StubRoutines::_arrayof_jint_disjoint_arraycopy = generate_disjoint_int_copy(true, &entry,
3283 StubRoutines::_arrayof_jint_arraycopy = generate_conjoint_int_copy(true, entry, &entry_jint_arraycopy,
3288 StubRoutines::_jint_disjoint_arraycopy = generate_disjoint_int_copy(false, &entry,
3290 StubRoutines::_jint_arraycopy = generate_conjoint_int_copy(false, entry,
3304 StubRoutines::_arrayof_jlong_disjoint_arraycopy = generate_disjoint_long_copy(true, &entry,
3306 StubRoutines::_arrayof_jlong_arraycopy = generate_conjoint_long_copy(true, entry, &entry_jlong_arraycopy,
3314 StubRoutines::_arrayof_oop_disjoint_arraycopy = generate_disjoint_oop_copy(true, &entry,
3316 StubRoutines::_arrayof_oop_arraycopy = generate_conjoint_oop_copy(true, entry, &entry_oop_arraycopy,
3319 StubRoutines::_arrayof_oop_disjoint_arraycopy_uninit = generate_disjoint_oop_copy(true, &entry,
3322 StubRoutines::_arrayof_oop_arraycopy_uninit = generate_conjoint_oop_copy(true, entry, NULL,
3328 StubRoutines::_oop_disjoint_arraycopy = generate_disjoint_oop_copy(false, &entry,
3330 StubRoutines::_oop_arraycopy = generate_conjoint_oop_copy(false, entry, &entry_oop_arraycopy,
3333 StubRoutines::_oop_disjoint_arraycopy_uninit = generate_disjoint_oop_copy(false, &entry,
3336 StubRoutines::_oop_arraycopy_uninit = generate_conjoint_oop_copy(false, entry, NULL,
3379 // Generates all stubs and initializes the entry points
3382 // entry points that exist in all platforms
3391 // entry points that are platform specific
3413 // Generates all stubs and initializes the entry points
3418 // These entry points require SharedInfo::stack0 to be set up in non-core builds