1 /* 2 * Copyright (c) 2003, 2025, Oracle and/or its affiliates. All rights reserved. 3 * Copyright 2007, 2008, 2010, 2015 Red Hat, Inc. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 * 6 * This code is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 only, as 8 * published by the Free Software Foundation. 9 * 10 * This code is distributed in the hope that it will be useful, but WITHOUT 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13 * version 2 for more details (a copy is included in the LICENSE file that 14 * accompanied this code). 15 * 16 * You should have received a copy of the GNU General Public License version 17 * 2 along with this work; if not, write to the Free Software Foundation, 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 * 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 * or visit www.oracle.com if you need additional information or have any 22 * questions. 23 * 24 */ 25 26 #include "asm/assembler.inline.hpp" 27 #include "interpreter/interpreter.hpp" 28 #include "nativeInst_zero.hpp" 29 #include "oops/instanceOop.hpp" 30 #include "oops/method.hpp" 31 #include "oops/objArrayKlass.hpp" 32 #include "oops/oop.inline.hpp" 33 #include "prims/methodHandles.hpp" 34 #include "runtime/frame.inline.hpp" 35 #include "runtime/handles.inline.hpp" 36 #include "runtime/javaThread.hpp" 37 #include "runtime/sharedRuntime.hpp" 38 #include "runtime/stubCodeGenerator.hpp" 39 #include "runtime/stubRoutines.hpp" 40 #include "stack_zero.inline.hpp" 41 #ifdef COMPILER2 42 #include "opto/runtime.hpp" 43 #endif 44 45 // Declaration and definition of StubGenerator (no .hpp file). 46 // For a more detailed description of the stub routine structure 47 // see the comment in stubRoutines.hpp 48 49 class StubGenerator: public StubCodeGenerator { 50 private: 51 // The call stub is used to call Java from C 52 static void call_stub( 53 JavaCallWrapper *call_wrapper, 54 intptr_t* result, 55 BasicType result_type, 56 Method* method, 57 address entry_point, 58 intptr_t* parameters, 59 int parameter_words, 60 TRAPS) { 61 JavaThread *thread = THREAD; 62 ZeroStack *stack = thread->zero_stack(); 63 64 // Make sure we have no pending exceptions 65 assert(!HAS_PENDING_EXCEPTION, "call_stub called with pending exception"); 66 67 // Set up the stack if necessary 68 bool stack_needs_teardown = false; 69 if (stack->needs_setup()) { 70 size_t zero_stack_size = stack->suggest_size(thread); 71 stack->setup(alloca(zero_stack_size), zero_stack_size); 72 stack_needs_teardown = true; 73 } 74 75 // Allocate and initialize our frame 76 EntryFrame *frame = 77 EntryFrame::build(parameters, parameter_words, call_wrapper, THREAD); 78 79 if (!HAS_PENDING_EXCEPTION) { 80 // Push the frame 81 thread->push_zero_frame(frame); 82 83 // Make the call 84 Interpreter::invoke_method(method, entry_point, THREAD); 85 86 // Store the result 87 if (!HAS_PENDING_EXCEPTION) { 88 switch (result_type) { 89 case T_INT: 90 *(jint *) result = *(jint *) stack->sp(); 91 break; 92 case T_LONG: 93 *(jlong *) result = *(jlong *) stack->sp(); 94 break; 95 case T_FLOAT: 96 *(jfloat *) result = *(jfloat *) stack->sp(); 97 break; 98 case T_DOUBLE: 99 *(jdouble *) result = *(jdouble *) stack->sp(); 100 break; 101 case T_OBJECT: 102 *(oop *) result = *(oop *) stack->sp(); 103 break; 104 default: 105 ShouldNotReachHere(); 106 } 107 } 108 109 // Unwind the frame 110 thread->pop_zero_frame(); 111 } 112 113 // Tear down the stack if necessary 114 if (stack_needs_teardown) 115 stack->teardown(); 116 } 117 118 // These stubs get called from some dumb test routine. 119 // I'll write them properly when they're called from 120 // something that's actually doing something. 121 static void fake_arraycopy_stub(address src, address dst, int count) { 122 assert(count == 0, "huh?"); 123 } 124 125 void generate_arraycopy_stubs() { 126 // Call the conjoint generation methods immediately after 127 // the disjoint ones so that short branches from the former 128 // to the latter can be generated. 129 StubRoutines::_jbyte_disjoint_arraycopy = (address) fake_arraycopy_stub; 130 StubRoutines::_jbyte_arraycopy = (address) fake_arraycopy_stub; 131 132 StubRoutines::_jshort_disjoint_arraycopy = (address) fake_arraycopy_stub; 133 StubRoutines::_jshort_arraycopy = (address) fake_arraycopy_stub; 134 135 StubRoutines::_jint_disjoint_arraycopy = (address) fake_arraycopy_stub; 136 StubRoutines::_jint_arraycopy = (address) fake_arraycopy_stub; 137 138 StubRoutines::_jlong_disjoint_arraycopy = (address) fake_arraycopy_stub; 139 StubRoutines::_jlong_arraycopy = (address) fake_arraycopy_stub; 140 141 StubRoutines::_oop_disjoint_arraycopy = ShouldNotCallThisStub(); 142 StubRoutines::_oop_arraycopy = ShouldNotCallThisStub(); 143 144 StubRoutines::_checkcast_arraycopy = ShouldNotCallThisStub(); 145 StubRoutines::_generic_arraycopy = ShouldNotCallThisStub(); 146 147 // Shared code tests for "null" to discover the stub is not generated. 148 StubRoutines::_unsafe_arraycopy = nullptr; 149 150 // Shared code tests for "null" to discover the stub is not generated. 151 StubRoutines::_unsafe_setmemory = nullptr; 152 153 // We don't generate specialized code for HeapWord-aligned source 154 // arrays, so just use the code we've already generated 155 StubRoutines::_arrayof_jbyte_disjoint_arraycopy = 156 StubRoutines::_jbyte_disjoint_arraycopy; 157 StubRoutines::_arrayof_jbyte_arraycopy = 158 StubRoutines::_jbyte_arraycopy; 159 160 StubRoutines::_arrayof_jshort_disjoint_arraycopy = 161 StubRoutines::_jshort_disjoint_arraycopy; 162 StubRoutines::_arrayof_jshort_arraycopy = 163 StubRoutines::_jshort_arraycopy; 164 165 StubRoutines::_arrayof_jint_disjoint_arraycopy = 166 StubRoutines::_jint_disjoint_arraycopy; 167 StubRoutines::_arrayof_jint_arraycopy = 168 StubRoutines::_jint_arraycopy; 169 170 StubRoutines::_arrayof_jlong_disjoint_arraycopy = 171 StubRoutines::_jlong_disjoint_arraycopy; 172 StubRoutines::_arrayof_jlong_arraycopy = 173 StubRoutines::_jlong_arraycopy; 174 175 StubRoutines::_arrayof_oop_disjoint_arraycopy = 176 StubRoutines::_oop_disjoint_arraycopy; 177 StubRoutines::_arrayof_oop_arraycopy = 178 StubRoutines::_oop_arraycopy; 179 } 180 181 void generate_preuniverse_stubs() { 182 StubRoutines::_fence_entry = ShouldNotCallThisStub(); 183 StubRoutines::_atomic_xchg_entry = ShouldNotCallThisStub(); 184 StubRoutines::_atomic_cmpxchg_entry = ShouldNotCallThisStub(); 185 StubRoutines::_atomic_cmpxchg_long_entry = ShouldNotCallThisStub(); 186 StubRoutines::_atomic_add_entry = ShouldNotCallThisStub(); 187 } 188 189 void generate_initial_stubs() { 190 // entry points that exist in all platforms Note: This is code 191 // that could be shared among different platforms - however the 192 // benefit seems to be smaller than the disadvantage of having a 193 // much more complicated generator structure. See also comment in 194 // stubRoutines.hpp. 195 196 StubRoutines::_forward_exception_entry = ShouldNotCallThisStub(); 197 StubRoutines::_call_stub_entry = (address) call_stub; 198 StubRoutines::_catch_exception_entry = ShouldNotCallThisStub(); 199 } 200 201 void generate_continuation_stubs() { 202 // do nothing 203 } 204 205 void generate_compiler_stubs() { 206 // do nothing 207 } 208 209 void generate_final_stubs() { 210 // arraycopy stubs used by compilers 211 generate_arraycopy_stubs(); 212 213 } 214 215 public: 216 StubGenerator(CodeBuffer* code, StubGenBlobId blob_id) : StubCodeGenerator(code, blob_id) { 217 switch(blob_id) { 218 case preuniverse_id: 219 generate_preuniverse_stubs(); 220 break; 221 case initial_id: 222 generate_initial_stubs(); 223 break; 224 case continuation_id: 225 generate_continuation_stubs(); 226 break; 227 case compiler_id: 228 // do nothing 229 break; 230 case final_id: 231 generate_final_stubs(); 232 break; 233 default: 234 fatal("unexpected blob id: %d", blob_id); 235 break; 236 }; 237 } 238 }; 239 240 void StubGenerator_generate(CodeBuffer* code, StubGenBlobId blob_id) { 241 StubGenerator g(code, blob_id); 242 } 243 244 EntryFrame *EntryFrame::build(const intptr_t* parameters, 245 int parameter_words, 246 JavaCallWrapper* call_wrapper, 247 TRAPS) { 248 249 ZeroStack *stack = THREAD->zero_stack(); 250 stack->overflow_check(header_words + parameter_words, CHECK_NULL); 251 252 stack->push(0); // next_frame, filled in later 253 intptr_t *fp = stack->sp(); 254 assert(fp - stack->sp() == next_frame_off, "should be"); 255 256 stack->push(ENTRY_FRAME); 257 assert(fp - stack->sp() == frame_type_off, "should be"); 258 259 stack->push((intptr_t) call_wrapper); 260 assert(fp - stack->sp() == call_wrapper_off, "should be"); 261 262 for (int i = 0; i < parameter_words; i++) 263 stack->push(parameters[i]); 264 265 return (EntryFrame *) fp; 266 }