hotspot/src/share/vm/prims/stackwalk.hpp
changeset 41095 97cca074c2be
parent 40001 f37246e66d2b
child 41280 74b314ad1e9a
equal deleted inserted replaced
41094:4e0c638397c9 41095:97cca074c2be
    80   static void fill_stackframe(Handle stackFrame, const methodHandle& method, int bci);
    80   static void fill_stackframe(Handle stackFrame, const methodHandle& method, int bci);
    81 
    81 
    82   static void fill_live_stackframe(Handle stackFrame, const methodHandle& method, int bci,
    82   static void fill_live_stackframe(Handle stackFrame, const methodHandle& method, int bci,
    83                                    javaVFrame* jvf, TRAPS);
    83                                    javaVFrame* jvf, TRAPS);
    84 
    84 
       
    85   static inline bool get_caller_class(int mode) {
       
    86     return (mode & JVM_STACKWALK_GET_CALLER_CLASS) != 0;
       
    87   }
    85   static inline bool skip_hidden_frames(int mode) {
    88   static inline bool skip_hidden_frames(int mode) {
    86     return (mode & JVM_STACKWALK_SHOW_HIDDEN_FRAMES) == 0;
    89     return (mode & JVM_STACKWALK_SHOW_HIDDEN_FRAMES) == 0;
    87   }
    90   }
    88   static inline bool need_method_info(int mode) {
    91   static inline bool need_method_info(int mode) {
    89     return (mode & JVM_STACKWALK_FILL_CLASS_REFS_ONLY) == 0;
    92     return (mode & JVM_STACKWALK_FILL_CLASS_REFS_ONLY) == 0;