2015-11-24 14:59:17 -08:00
|
|
|
/*
|
2016-07-22 10:15:42 -07:00
|
|
|
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
|
2015-11-24 14:59:17 -08:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SHARE_VM_PRIMS_STACKWALK_HPP
|
|
|
|
#define SHARE_VM_PRIMS_STACKWALK_HPP
|
|
|
|
|
|
|
|
#include "oops/oop.hpp"
|
|
|
|
#include "runtime/vframe.hpp"
|
|
|
|
|
2016-05-06 22:45:32 -07:00
|
|
|
//
|
|
|
|
// JavaFrameStream is used by StackWalker to iterate through Java stack frames
|
|
|
|
// on the given JavaThread.
|
|
|
|
//
|
|
|
|
class JavaFrameStream : public StackObj {
|
2015-11-24 14:59:17 -08:00
|
|
|
private:
|
|
|
|
enum {
|
|
|
|
magic_pos = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
JavaThread* _thread;
|
2016-05-06 22:45:32 -07:00
|
|
|
javaVFrame* _jvf;
|
2015-11-24 14:59:17 -08:00
|
|
|
jlong _anchor;
|
|
|
|
public:
|
2016-05-06 22:45:32 -07:00
|
|
|
JavaFrameStream(JavaThread* thread, RegisterMap* rm)
|
|
|
|
: _thread(thread), _anchor(0L) {
|
|
|
|
_jvf = _thread->last_java_vframe(rm);
|
|
|
|
}
|
|
|
|
|
|
|
|
javaVFrame* java_frame() { return _jvf; }
|
|
|
|
void next() { _jvf = _jvf->java_sender(); }
|
|
|
|
bool at_end() { return _jvf == NULL; }
|
2015-11-24 14:59:17 -08:00
|
|
|
|
2016-05-06 22:45:32 -07:00
|
|
|
Method* method() { return _jvf->method(); }
|
|
|
|
int bci() { return _jvf->bci(); }
|
2015-11-24 14:59:17 -08:00
|
|
|
|
2016-04-08 12:26:29 -07:00
|
|
|
void setup_magic_on_entry(objArrayHandle frames_array);
|
|
|
|
bool check_magic(objArrayHandle frames_array);
|
|
|
|
bool cleanup_magic_on_exit(objArrayHandle frames_array);
|
2015-11-24 14:59:17 -08:00
|
|
|
|
2016-04-08 12:26:29 -07:00
|
|
|
bool is_valid_in(Thread* thread, objArrayHandle frames_array) {
|
|
|
|
return (_thread == thread && check_magic(frames_array));
|
2015-11-24 14:59:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
jlong address_value() {
|
|
|
|
return (jlong) castable_address(this);
|
|
|
|
}
|
|
|
|
|
2016-05-06 22:45:32 -07:00
|
|
|
static JavaFrameStream* from_current(JavaThread* thread, jlong magic, objArrayHandle frames_array);
|
2015-11-24 14:59:17 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
class StackWalk : public AllStatic {
|
|
|
|
private:
|
2016-05-06 22:45:32 -07:00
|
|
|
static int fill_in_frames(jlong mode, JavaFrameStream& stream,
|
2015-11-24 14:59:17 -08:00
|
|
|
int max_nframes, int start_index,
|
|
|
|
objArrayHandle frames_array,
|
|
|
|
int& end_index, TRAPS);
|
|
|
|
|
|
|
|
static void fill_stackframe(Handle stackFrame, const methodHandle& method, int bci);
|
|
|
|
|
|
|
|
static void fill_live_stackframe(Handle stackFrame, const methodHandle& method, int bci,
|
|
|
|
javaVFrame* jvf, TRAPS);
|
|
|
|
|
|
|
|
static inline bool skip_hidden_frames(int mode) {
|
|
|
|
return (mode & JVM_STACKWALK_SHOW_HIDDEN_FRAMES) == 0;
|
|
|
|
}
|
|
|
|
static inline bool need_method_info(int mode) {
|
|
|
|
return (mode & JVM_STACKWALK_FILL_CLASS_REFS_ONLY) == 0;
|
|
|
|
}
|
|
|
|
static inline bool live_frame_info(int mode) {
|
|
|
|
return (mode & JVM_STACKWALK_FILL_LIVE_STACK_FRAMES) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2016-04-08 12:26:29 -07:00
|
|
|
static inline bool use_frames_array(int mode) {
|
|
|
|
return (mode & JVM_STACKWALK_FILL_CLASS_REFS_ONLY) == 0;
|
|
|
|
}
|
2015-11-24 14:59:17 -08:00
|
|
|
static oop walk(Handle stackStream, jlong mode,
|
|
|
|
int skip_frames, int frame_count, int start_index,
|
|
|
|
objArrayHandle frames_array,
|
|
|
|
TRAPS);
|
|
|
|
|
|
|
|
static jint moreFrames(Handle stackStream, jlong mode, jlong magic,
|
|
|
|
int frame_count, int start_index,
|
|
|
|
objArrayHandle frames_array,
|
|
|
|
TRAPS);
|
|
|
|
};
|
|
|
|
#endif // SHARE_VM_PRIMS_STACKWALK_HPP
|