/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/hotspot/share/prims/stackwalk.cpp
580 строк
23 KB
Coleen Phillimore
8388791: Refactor JavaClasses Throwable and StackTrace classes
04 авг 2026, 15:13
04 авг 2026, 15:13
0bdfb3a
Код
Авторство
О чём код?
/* * Copyright (c) 2015, 2026, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. * */ #include "classfile/javaClasses.inline.hpp" #include "classfile/javaStackTraceClasses.hpp" #include "classfile/vmClasses.hpp" #include "classfile/vmSymbols.hpp" #include "logging/log.hpp" #include "logging/logStream.hpp" #include "memory/oopFactory.hpp" #include "memory/universe.hpp" #include "oops/klass.inline.hpp" #include "oops/method.inline.hpp" #include "oops/objArrayOop.inline.hpp" #include "oops/oop.inline.hpp" #include "prims/stackwalk.hpp" #include "runtime/continuationJavaClasses.inline.hpp" #include "runtime/globals.hpp" #include "runtime/handles.inline.hpp" #include "runtime/javaCalls.hpp" #include "runtime/javaThread.hpp" #include "runtime/keepStackGCProcessed.hpp" #include "runtime/stackWatermarkSet.hpp" #include "runtime/vframe.inline.hpp" #include "utilities/formatBuffer.hpp" #include "utilities/globalDefinitions.hpp" // setup and cleanup actions BaseFrameStream::BaseFrameStream(JavaThread* thread, Handle continuation) : _thread(thread), _continuation(continuation), _anchor(0L) { assert(thread != nullptr, ""); } void BaseFrameStream::setup_magic_on_entry(refArrayHandle frames_array) { frames_array->obj_at_put(magic_pos, _thread->threadObj()); _anchor = address_value(); assert(check_magic(frames_array), "invalid magic"); } bool BaseFrameStream::check_magic(refArrayHandle frames_array) { oop m1 = frames_array->obj_at(magic_pos); jlong m2 = _anchor; if (m1 == _thread->threadObj() && m2 == address_value()) return true; return false; } bool BaseFrameStream::cleanup_magic_on_exit(refArrayHandle frames_array) { bool ok = check_magic(frames_array); frames_array->obj_at_put(magic_pos, nullptr); _anchor = 0L; return ok; } void BaseFrameStream::set_continuation(Handle cont) { // ensure that the lifetime of the handle is that of the entire walk // This actually also sets a copy of the handle in the RegisterMap, // but that's OK, because we want them to be the same, anyway. // (although we don't rely on this sharing, and set the other copy again) _continuation.replace(cont()); } JavaFrameStream::JavaFrameStream(JavaThread* thread, jint mode, Handle cont_scope, Handle cont) : BaseFrameStream(thread, cont), _vfst(cont.is_null() ? vframeStream(thread, cont_scope) : vframeStream(cont(), cont_scope)) { _need_method_info = StackWalk::need_method_info(mode); } LiveFrameStream::LiveFrameStream(JavaThread* thread, RegisterMap* rm, Handle cont_scope, Handle cont) : BaseFrameStream(thread, cont), _cont_scope(cont_scope) { _map = rm; if (cont.is_null()) { _jvf = thread->last_java_vframe(rm); _cont_entry = thread->last_continuation(); } else { _jvf = Continuation::last_java_vframe(cont, rm); _cont_entry = nullptr; } } void JavaFrameStream::next() { _vfst.next(); if (_vfst.method()->is_continuation_enter_intrinsic()) _vfst.next(); } void LiveFrameStream::next() { assert(_cont_scope.is_null() || cont() != (oop)nullptr, "must be"); oop cont = this->cont(); if (cont != (oop)nullptr && Continuation::is_continuation_entry_frame(_jvf->fr(), _jvf->register_map())) { oop scope = jdk_internal_vm_Continuation::scope(cont); if (_cont_scope.not_null() && scope == _cont_scope()) { _jvf = nullptr; return; } _cont_entry = _cont_entry->parent(); } assert(!Continuation::is_scope_bottom(_cont_scope(), _jvf->fr(), _jvf->register_map()), ""); _jvf = _jvf->java_sender(); } // Returns the BaseFrameStream for the current stack being traversed. // // Parameters: // thread Current Java thread. // magic Magic value used for each stack walking // frames_array User-supplied buffers. The 0th element is reserved // for this BaseFrameStream to use // BaseFrameStream* BaseFrameStream::from_current(JavaThread* thread, jlong magic, refArrayHandle frames_array) { oop m1 = frames_array->obj_at(magic_pos); if (m1 != thread->threadObj()) return nullptr; if (magic == 0L) return nullptr; BaseFrameStream* stream = (BaseFrameStream*) (intptr_t) magic; if (!stream->is_valid_in(thread, frames_array)) return nullptr; return stream; } // Unpacks one or more frames into user-supplied buffers. // Updates the end index, and returns the number of unpacked frames. // Always start with the existing vfst.method and bci. // Do not call vfst.next to advance over the last returned value. // In other words, do not leave any stale data in the vfst. // // Parameters: // mode Restrict which frames to be decoded. // BaseFrameStream stream of frames // buffer_size Buffer size // start_index Start index to the user-supplied buffers. // frames_array Buffer to store stack frame information in, starting at start_index. // frames array is a ClassFrameInfo[] array when only getting caller // reference, and a StackFrameInfo[] array (or derivative) // otherwise. It should never be null. // end_index End index to the user-supplied buffers with unpacked frames. // // Returns the number of frames whose information was transferred into the buffers. // int StackWalk::fill_in_frames(jint mode, BaseFrameStream& stream, int buffer_size, int start_index, refArrayHandle frames_array, int& end_index, TRAPS) { log_debug(stackwalk)("fill_in_frames limit=%d start=%d frames length=%d", buffer_size, start_index, frames_array->length()); assert(buffer_size > 0, "invalid buffer_size"); assert(buffer_size <= frames_array->length(), "oob"); int frames_decoded = 0; for (; !stream.at_end(); stream.next()) { if (stream.continuation() != nullptr && stream.continuation() != stream.reg_map()->cont()) { // The code in StackStreamFactory.java has failed to set the continuation because frameBuffer.isAtBottom() // returns false if the end of a continuation falls precisely at the end of the batch. // By breaking here, we're signalling the Java code to set the continuation to the parent. break; } assert(stream.continuation() == nullptr || stream.continuation() == stream.reg_map()->cont(), ""); Method* method = stream.method(); if (method == nullptr) continue; // skip hidden frames for default StackWalker option (i.e. SHOW_HIDDEN_FRAMES // not set) and when StackWalker::getCallerClass is called if (!ShowHiddenFrames && skip_hidden_frames(mode)) { if (method->is_hidden()) { log_debug(stackwalk)(" skip hidden method: %s", stream.method()->external_name()); // End a batch on continuation bottom to let the Java side to set the continuation to its parent and continue if (stream.continuation() != nullptr && method->intrinsic_id() == vmIntrinsics::_Continuation_enter) break; continue; } } int index = end_index++; log_debug(stackwalk)(" frame %d: %s bci %d", index, stream.method()->external_name(), stream.bci()); stream.fill_frame(index, frames_array, methodHandle(THREAD, method), CHECK_0); frames_decoded++; // End a batch on continuation bottom to let the Java side to set the continuation to its parent and continue if (stream.continuation() != nullptr && method->intrinsic_id() == vmIntrinsics::_Continuation_enter) break; if (end_index >= buffer_size) break; } log_debug(stackwalk)("fill_in_frames returns %d at_end=%d", frames_decoded, stream.at_end()); return frames_decoded; } // Fill in the LiveStackFrameInfo at the given index in frames_array void LiveFrameStream::fill_frame(int index, refArrayHandle frames_array, const methodHandle& method, TRAPS) { HandleMark hm(THREAD); Handle stackFrame(THREAD, frames_array->obj_at(index)); fill_live_stackframe(stackFrame, method, CHECK); } // Fill in the StackFrameInfo at the given index in frames_array void JavaFrameStream::fill_frame(int index, refArrayHandle frames_array, const methodHandle& method, TRAPS) { if (_need_method_info) { HandleMark hm(THREAD); Handle stackFrame(THREAD, frames_array->obj_at(index)); fill_stackframe(stackFrame, method, CHECK); } else { HandleMark hm(THREAD); Handle stackFrame(THREAD, frames_array->obj_at(index)); java_lang_ClassFrameInfo::init_class(stackFrame, method); } } // Create and return a LiveStackFrame.PrimitiveSlot (if needed) for the // StackValue at the given index. 'type' is expected to be T_INT, T_LONG, // T_OBJECT, or T_CONFLICT. oop LiveFrameStream::create_primitive_slot_instance(StackValueCollection* values, int i, BasicType type, TRAPS) { Klass* k = vmClasses::LiveStackFrameInfo_klass(); InstanceKlass* ik = InstanceKlass::cast(k); JavaValue result(T_OBJECT); JavaCallArguments args; Symbol* signature = nullptr; // ## TODO: type is only available in LocalVariable table, if present. // ## StackValue type is T_INT or T_OBJECT (or converted to T_LONG on 64-bit) switch (type) { case T_INT: args.push_int(values->int_at(i)); signature = vmSymbols::asPrimitive_int_signature(); break; case T_LONG: args.push_long(values->long_at(i)); signature = vmSymbols::asPrimitive_long_signature(); break; case T_FLOAT: case T_DOUBLE: case T_BYTE: case T_SHORT: case T_CHAR: case T_BOOLEAN: THROW_MSG_(vmSymbols::java_lang_InternalError(), "Unexpected StackValue type", nullptr); case T_OBJECT: return values->obj_at(i)(); case T_CONFLICT: // put a non-null slot #ifdef _LP64 args.push_long(0); signature = vmSymbols::asPrimitive_long_signature(); #else args.push_int(0); signature = vmSymbols::asPrimitive_int_signature(); #endif break; default: ShouldNotReachHere(); } JavaCalls::call_static(&result, ik, vmSymbols::asPrimitive_name(), signature, &args, CHECK_NULL); return (instanceOop) result.get_oop(); } objArrayHandle LiveFrameStream::values_to_object_array(StackValueCollection* values, TRAPS) { objArrayHandle empty; int length = values->size(); objArrayOop array_oop = oopFactory::new_objArray(vmClasses::Object_klass(), length, CHECK_(empty)); objArrayHandle array_h(THREAD, array_oop); for (int i = 0; i < values->size(); i++) { StackValue* st = values->at(i); BasicType type = st->type(); int index = i; #ifdef _LP64 if (type != T_OBJECT && type != T_CONFLICT) { intptr_t ret = st->get_intptr(); // read full 64-bit slot type = T_LONG; // treat as long index--; // undo +1 in StackValueCollection::long_at } #endif oop obj = create_primitive_slot_instance(values, index, type, CHECK_(empty)); if (obj != nullptr) { array_h->obj_at_put(i, obj); } } return array_h; } objArrayHandle LiveFrameStream::monitors_to_object_array(GrowableArray<MonitorInfo*>* monitors, TRAPS) { int length = monitors->length(); objArrayOop array_oop = oopFactory::new_objArray(vmClasses::Object_klass(), length, CHECK_(objArrayHandle())); objArrayHandle array_h(THREAD, array_oop); for (int i = 0; i < length; i++) { MonitorInfo* monitor = monitors->at(i); array_h->obj_at_put(i, monitor->owner()); } return array_h; } // Fill StackFrameInfo with bci and initialize ResolvedMethodName void BaseFrameStream::fill_stackframe(Handle stackFrame, const methodHandle& method, TRAPS) { java_lang_StackFrameInfo::set_method_and_bci(stackFrame, method, bci(), cont(), THREAD); } // Fill LiveStackFrameInfo with locals, monitors, and expressions void LiveFrameStream::fill_live_stackframe(Handle stackFrame, const methodHandle& method, TRAPS) { fill_stackframe(stackFrame, method, CHECK); if (_jvf != nullptr) { ResourceMark rm(THREAD); HandleMark hm(THREAD); StackValueCollection* locals = _jvf->locals(); StackValueCollection* expressions = _jvf->expressions(); GrowableArray<MonitorInfo*>* monitors = _jvf->monitors(); int mode = 0; if (_jvf->is_interpreted_frame()) { mode = MODE_INTERPRETED; } else if (_jvf->is_compiled_frame()) { mode = MODE_COMPILED; } if (!locals->is_empty()) { objArrayHandle locals_h = values_to_object_array(locals, CHECK); java_lang_LiveStackFrameInfo::set_locals(stackFrame(), locals_h()); } if (!expressions->is_empty()) { objArrayHandle expressions_h = values_to_object_array(expressions, CHECK); java_lang_LiveStackFrameInfo::set_operands(stackFrame(), expressions_h()); } if (monitors->length() > 0) { objArrayHandle monitors_h = monitors_to_object_array(monitors, CHECK); java_lang_LiveStackFrameInfo::set_monitors(stackFrame(), monitors_h()); } java_lang_LiveStackFrameInfo::set_mode(stackFrame(), mode); } } // Begins stack walking. // // Parameters: // stackStream StackStream object // mode Stack walking mode. // skip_frames Number of frames to be skipped. // cont_scope Continuation scope to walk (if not in this scope, we'll walk all the way). // buffer_size Buffer size. // start_index Start index to the user-supplied buffers. // frames_array Buffer to store stack frame info in, starting at start_index. // frames array is a ClassFrameInfo[] array when only getting caller // reference, and a StackFrameInfo[] array (or derivative) // otherwise. It should never be null. // // Returns Object returned from AbstractStackWalker::doStackWalk call. // oop StackWalk::walk(Handle stackStream, jint mode, int skip_frames, Handle cont_scope, Handle cont, int buffer_size, int start_index, refArrayHandle frames_array, TRAPS) { ResourceMark rm(THREAD); HandleMark hm(THREAD); // needed to store a continuation in the RegisterMap JavaThread* jt = THREAD; log_debug(stackwalk)("Start walking: mode " INT32_FORMAT_X " skip %d frames, buffer size %d", mode, skip_frames, buffer_size); LogTarget(Debug, stackwalk) lt; if (lt.is_enabled()) { ResourceMark rm(THREAD); LogStream ls(lt); if (cont_scope() != nullptr) { ls.print("cont_scope: "); cont_scope()->print_on(&ls); } ls.cr(); } if (frames_array.is_null()) { THROW_MSG_(vmSymbols::java_lang_NullPointerException(), "frames_array is null", nullptr); } // Setup traversal onto my stack. if (live_frame_info(mode)) { RegisterMap regMap = cont.is_null() ? RegisterMap(jt, RegisterMap::UpdateMap::include, RegisterMap::ProcessFrames::include, RegisterMap::WalkContinuation::include) : RegisterMap(cont(), RegisterMap::UpdateMap::include); LiveFrameStream stream(jt, ®Map, cont_scope, cont); return fetchFirstBatch(stream, stackStream, mode, skip_frames, buffer_size, start_index, frames_array, THREAD); } else { JavaFrameStream stream(jt, mode, cont_scope, cont); return fetchFirstBatch(stream, stackStream, mode, skip_frames, buffer_size, start_index, frames_array, THREAD); } } oop StackWalk::fetchFirstBatch(BaseFrameStream& stream, Handle stackStream, jint mode, int skip_frames, int buffer_size, int start_index, refArrayHandle frames_array, TRAPS) { methodHandle m_doStackWalk(THREAD, Universe::do_stack_walk_method()); { Klass* stackWalker_klass = vmClasses::StackWalker_klass(); Klass* abstractStackWalker_klass = vmClasses::AbstractStackWalker_klass(); while (!stream.at_end()) { InstanceKlass* ik = stream.method()->method_holder(); if (ik != stackWalker_klass && ik != abstractStackWalker_klass && ik->super() != abstractStackWalker_klass) { break; } log_debug(stackwalk)(" skip %s", stream.method()->external_name()); stream.next(); } // stack frame has been traversed individually and resume stack walk // from the stack frame at depth == skip_frames. for (int n=0; n < skip_frames && !stream.at_end(); stream.next(), n++) { log_debug(stackwalk)(" skip %s", stream.method()->external_name()); } } int end_index = start_index; int numFrames = 0; if (!stream.at_end()) { KeepStackGCProcessedMark keep_stack(THREAD); numFrames = fill_in_frames(mode, stream, buffer_size, start_index, frames_array, end_index, CHECK_NULL); if (numFrames < 1) { THROW_MSG_(vmSymbols::java_lang_InternalError(), "stack walk: decode failed", nullptr); } } // JVM_CallStackWalk walks the stack and fills in stack frames, then calls to // Java method java.lang.StackStreamFactory.AbstractStackWalker::doStackWalk // which calls the implementation to consume the stack frames. // When JVM_CallStackWalk returns, it invalidates the stack stream. JavaValue result(T_OBJECT); JavaCallArguments args(stackStream); args.push_long(stream.address_value()); args.push_int(skip_frames); args.push_int(numFrames); args.push_int(start_index); args.push_int(end_index); // Link the thread and vframe stream into the callee-visible object stream.setup_magic_on_entry(frames_array); JavaCalls::call(&result, m_doStackWalk, &args, THREAD); // Do this before anything else happens, to disable any lingering stream objects bool ok = stream.cleanup_magic_on_exit(frames_array); // Throw pending exception if we must (void) (CHECK_NULL); if (!ok) { THROW_MSG_(vmSymbols::java_lang_InternalError(), "doStackWalk: corrupted buffers on exit", nullptr); } // Return normally return result.get_oop(); } // Walk the next batch of stack frames // // Parameters: // stackStream StackStream object // mode Stack walking mode. // magic Must be valid value to continue the stack walk // last_batch_count Number of frames fetched in the last batch. // buffer_size Buffer size. // start_index Start index to the user-supplied buffers. // frames_array Buffer to store StackFrame in, starting at start_index. // // Returns the number of frames filled in the buffer. // jint StackWalk::fetchNextBatch(Handle stackStream, jint mode, jlong magic, int last_batch_count, int buffer_size, int start_index, refArrayHandle frames_array, TRAPS) { JavaThread* jt = THREAD; BaseFrameStream* existing_stream = BaseFrameStream::from_current(jt, magic, frames_array); if (existing_stream == nullptr) { THROW_MSG_(vmSymbols::java_lang_InternalError(), "doStackWalk: corrupted buffers", 0L); } if (frames_array.is_null()) { THROW_MSG_(vmSymbols::java_lang_NullPointerException(), "frames_array is null", 0L); } log_debug(stackwalk)("StackWalk::fetchNextBatch last_batch_count %d buffer_size %d existing_stream " PTR_FORMAT " start %d", last_batch_count, buffer_size, p2i(existing_stream), start_index); int end_index = start_index; if (buffer_size <= start_index) { return 0; // No operation. } assert (frames_array->length() >= buffer_size, "frames_array length < buffer_size"); BaseFrameStream& stream = (*existing_stream); if (!stream.at_end()) { // If we have to get back here for even more frames, then 1) the user did not supply // an accurate hint suggesting the depth of the stack walk, and 2) we are not just // peeking at a few frames. Take the cost of flushing out any pending deferred GC // processing of the stack. KeepStackGCProcessedMark keep_stack(jt); // Advance past the last frame decoded in the previous batch. // If the last batch is empty, it means that the last batch returns after // it advanced the frame it previously decoded as it reaches the bottom of // the continuation and it returns to let Java side set the continuation. // Now this batch starts right at the first frame of another continuation. if (last_batch_count > 0) { // It is not always safe to dig out the name of the last frame // here, i.e. stream.method()->external_name(), since it may // have been reclaimed by HandleMark::pop_and_restore() together // with the rest of the previous batch. log_debug(stackwalk)("advanced past last frame decoded in the previous batch"); stream.next(); } if (!stream.at_end()) { int numFrames = fill_in_frames(mode, stream, buffer_size, start_index, frames_array, end_index, CHECK_0); if (numFrames < 1 && !skip_hidden_frames(mode)) { THROW_MSG_(vmSymbols::java_lang_InternalError(), "doStackWalk: later decode failed", 0L); } return numFrames; } } return 0; } void StackWalk::setContinuation(Handle stackStream, jlong magic, refArrayHandle frames_array, Handle cont, TRAPS) { JavaThread* jt = JavaThread::cast(THREAD); if (frames_array.is_null()) { THROW_MSG(vmSymbols::java_lang_NullPointerException(), "frames_array is null"); } BaseFrameStream* existing_stream = BaseFrameStream::from_current(jt, magic, frames_array); if (existing_stream == nullptr) { THROW_MSG(vmSymbols::java_lang_InternalError(), "doStackWalk: corrupted buffers"); } existing_stream->set_continuation(cont); }