hotspot/src/share/vm/prims/stackwalk.hpp
changeset 46505 fd4bc78630b1
parent 43677 5228814c1da2
equal deleted inserted replaced
46504:38048d4d20e7 46505:fd4bc78630b1
     1 /*
     1 /*
     2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    43   };
    43   };
    44 
    44 
    45   JavaThread*           _thread;
    45   JavaThread*           _thread;
    46   jlong                 _anchor;
    46   jlong                 _anchor;
    47 protected:
    47 protected:
    48   void fill_stackframe(Handle stackFrame, const methodHandle& method);
    48   void fill_stackframe(Handle stackFrame, const methodHandle& method, TRAPS);
    49 public:
    49 public:
    50   BaseFrameStream(JavaThread* thread) : _thread(thread), _anchor(0L) {}
    50   BaseFrameStream(JavaThread* thread) : _thread(thread), _anchor(0L) {}
    51 
    51 
    52   virtual void    next()=0;
    52   virtual void    next()=0;
    53   virtual bool    at_end()=0;
    53   virtual bool    at_end()=0;