< prev index next >

src/hotspot/share/runtime/continuation.hpp

Print this page

  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef SHARE_VM_RUNTIME_CONTINUATION_HPP
 26 #define SHARE_VM_RUNTIME_CONTINUATION_HPP
 27 
 28 #include "jni.h"

 29 #include "memory/allStatic.hpp"
 30 #include "oops/oopsHierarchy.hpp"
 31 
 32 class ContinuationEntry;
 33 class frame;
 34 class FrameValues;
 35 class Handle;
 36 class outputStream;
 37 class RegisterMap;
 38 
 39 class Continuations : public AllStatic {
 40 public:
 41   static void init();
 42   static bool enabled();
 43 };
 44 
 45 void continuations_init();
 46 
 47 class javaVFrame;
 48 class JavaThread;
 49 












 50 class Continuation : AllStatic {
 51 public:
 52 
 53   enum thaw_kind {
 54     thaw_top = 0,
 55     thaw_return_barrier = 1,
 56     thaw_return_barrier_exception = 2,
 57   };
 58 
 59   static bool is_thaw_return_barrier(thaw_kind kind) {
 60     return kind != thaw_top;
 61   }
 62 
 63   static bool is_thaw_return_barrier_exception(thaw_kind kind) {
 64     bool r = (kind == thaw_return_barrier_exception);
 65     assert(!r || is_thaw_return_barrier(kind), "must be");
 66     return r;
 67   }
 68 
 69   static void init();
 70 
 71   static address freeze_entry();

 72   static int prepare_thaw(JavaThread* thread, bool return_barrier);
 73   static address thaw_entry();
 74 


 75   static ContinuationEntry* get_continuation_entry_for_continuation(JavaThread* thread, oop continuation);
 76   static ContinuationEntry* get_continuation_entry_for_sp(JavaThread* thread, intptr_t* const sp);
 77   static ContinuationEntry* get_continuation_entry_for_entry_frame(JavaThread* thread, const frame& f);
 78 
 79   static bool is_continuation_mounted(JavaThread* thread, oop continuation);



 80 
 81   static bool is_cont_barrier_frame(const frame& f);
 82   static bool is_return_barrier_entry(const address pc);
 83   static bool is_continuation_enterSpecial(const frame& f);
 84   static bool is_continuation_entry_frame(const frame& f, const RegisterMap *map);
 85 
 86   static bool is_frame_in_continuation(const ContinuationEntry* entry, const frame& f);
 87   static bool is_frame_in_continuation(JavaThread* thread, const frame& f);
 88 
 89   static bool has_last_Java_frame(oop continuation, frame* frame, RegisterMap* map);
 90   static frame last_frame(oop continuation, RegisterMap *map);
 91   static frame top_frame(const frame& callee, RegisterMap* map);
 92   static javaVFrame* last_java_vframe(Handle continuation, RegisterMap *map);
 93   static frame continuation_parent_frame(RegisterMap* map);
 94 
 95   static oop continuation_scope(oop continuation);
 96   static bool is_scope_bottom(oop cont_scope, const frame& fr, const RegisterMap* map);
 97 
 98   static bool is_in_usable_stack(address addr, const RegisterMap* map);
 99 

  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef SHARE_VM_RUNTIME_CONTINUATION_HPP
 26 #define SHARE_VM_RUNTIME_CONTINUATION_HPP
 27 
 28 #include "jni.h"
 29 #include "classfile/javaClasses.hpp"
 30 #include "memory/allStatic.hpp"
 31 #include "oops/oopsHierarchy.hpp"
 32 
 33 class ContinuationEntry;
 34 class frame;
 35 class FrameValues;
 36 class Handle;
 37 class outputStream;
 38 class RegisterMap;
 39 
 40 class Continuations : public AllStatic {
 41 public:
 42   static void init();
 43   static bool enabled();
 44 };
 45 
 46 void continuations_init();
 47 
 48 class javaVFrame;
 49 class JavaThread;
 50 
 51 // should match Continuation.toPreemptStatus() in Continuation.java
 52 enum freeze_result {
 53   freeze_ok = 0,
 54   freeze_ok_bottom = 1,
 55   freeze_pinned_cs = 2,
 56   freeze_pinned_native = 3,
 57   freeze_pinned_monitor = 4,
 58   freeze_exception = 5,
 59   freeze_not_mounted = 6,
 60   unsupported = 7
 61 };
 62 
 63 class Continuation : AllStatic {
 64 public:
 65 
 66   enum thaw_kind {
 67     thaw_top = 0,
 68     thaw_return_barrier = 1,
 69     thaw_return_barrier_exception = 2,
 70   };
 71 
 72   static bool is_thaw_return_barrier(thaw_kind kind) {
 73     return kind != thaw_top;
 74   }
 75 
 76   static bool is_thaw_return_barrier_exception(thaw_kind kind) {
 77     bool r = (kind == thaw_return_barrier_exception);
 78     assert(!r || is_thaw_return_barrier(kind), "must be");
 79     return r;
 80   }
 81 
 82   static void init();
 83 
 84   static address freeze_entry();
 85   static address freeze_preempt_entry();
 86   static int prepare_thaw(JavaThread* thread, bool return_barrier);
 87   static address thaw_entry();
 88 
 89   static int try_preempt(JavaThread* target, oop continuation, bool set_state_yielding = false);
 90 
 91   static ContinuationEntry* get_continuation_entry_for_continuation(JavaThread* thread, oop continuation);
 92   static ContinuationEntry* get_continuation_entry_for_sp(JavaThread* thread, intptr_t* const sp);
 93   static ContinuationEntry* get_continuation_entry_for_entry_frame(JavaThread* thread, const frame& f);
 94 
 95   static bool is_continuation_mounted(JavaThread* thread, oop continuation);
 96   static bool is_continuation_preempted(oop cont);
 97   static bool is_continuation_done(oop cont);
 98 
 99 
100   static bool is_cont_barrier_frame(const frame& f);
101   static bool is_return_barrier_entry(const address pc);
102   static bool is_continuation_enterSpecial(const frame& f);
103   static bool is_continuation_entry_frame(const frame& f, const RegisterMap *map);
104 
105   static bool is_frame_in_continuation(const ContinuationEntry* entry, const frame& f);
106   static bool is_frame_in_continuation(JavaThread* thread, const frame& f);
107 
108   static bool has_last_Java_frame(oop continuation, frame* frame, RegisterMap* map);
109   static frame last_frame(oop continuation, RegisterMap *map);
110   static frame top_frame(const frame& callee, RegisterMap* map);
111   static javaVFrame* last_java_vframe(Handle continuation, RegisterMap *map);
112   static frame continuation_parent_frame(RegisterMap* map);
113 
114   static oop continuation_scope(oop continuation);
115   static bool is_scope_bottom(oop cont_scope, const frame& fr, const RegisterMap* map);
116 
117   static bool is_in_usable_stack(address addr, const RegisterMap* map);
118 
< prev index next >