< prev index next >

src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp

Print this page

 47 void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {
 48   Unimplemented();
 49 }
 50 
 51 inline void FreezeBase::prepare_freeze_interpreted_top_frame(frame& f) {
 52   Unimplemented();
 53 }
 54 
 55 inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) {
 56   Unimplemented();
 57 }
 58 
 59 inline void FreezeBase::patch_pd(frame& hf, const frame& caller) {
 60   Unimplemented();
 61 }
 62 
 63 inline void FreezeBase::patch_stack_pd(intptr_t* frame_sp, intptr_t* heap_sp) {
 64   Unimplemented();
 65 }
 66 









 67 inline frame ThawBase::new_entry_frame() {
 68   Unimplemented();
 69   return frame();
 70 }
 71 
 72 template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) {
 73   Unimplemented();
 74   return frame();
 75 }
 76 
 77 inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
 78   Unimplemented();
 79 }
 80 
 81 inline intptr_t* ThawBase::align(const frame& hf, intptr_t* frame_sp, frame& caller, bool bottom) {
 82   Unimplemented();
 83   return nullptr;
 84 }
 85 
 86 inline void ThawBase::patch_pd(frame& f, const frame& caller) {
 87   Unimplemented();
 88 }
 89 
 90 inline void ThawBase::patch_pd(frame& f, intptr_t* caller_sp) {
 91   Unimplemented();
 92 }
 93 
 94 inline intptr_t* ThawBase::push_cleanup_continuation() {
 95   Unimplemented();
 96   return nullptr;
 97 }
 98 





 99 template <typename ConfigT>
100 inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
101   Unimplemented();
102 }
103 
104 inline void ThawBase::prefetch_chunk_pd(void* start, int size) {
105   Unimplemented();
106 }
107 
108 #endif // CPU_ARM_CONTINUATION_ARM_INLINE_HPP

 47 void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {
 48   Unimplemented();
 49 }
 50 
 51 inline void FreezeBase::prepare_freeze_interpreted_top_frame(frame& f) {
 52   Unimplemented();
 53 }
 54 
 55 inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) {
 56   Unimplemented();
 57 }
 58 
 59 inline void FreezeBase::patch_pd(frame& hf, const frame& caller) {
 60   Unimplemented();
 61 }
 62 
 63 inline void FreezeBase::patch_stack_pd(intptr_t* frame_sp, intptr_t* heap_sp) {
 64   Unimplemented();
 65 }
 66 
 67 inline intptr_t* AnchorMark::anchor_mark_set_pd() {
 68   Unimplemented();
 69   return nullptr;
 70 }
 71 
 72 inline void AnchorMark::anchor_mark_clear_pd() {
 73   Unimplemented();
 74 }
 75 
 76 inline frame ThawBase::new_entry_frame() {
 77   Unimplemented();
 78   return frame();
 79 }
 80 
 81 template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) {
 82   Unimplemented();
 83   return frame();
 84 }
 85 
 86 inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
 87   Unimplemented();
 88 }
 89 
 90 inline intptr_t* ThawBase::align(const frame& hf, intptr_t* frame_sp, frame& caller, bool bottom) {
 91   Unimplemented();
 92   return nullptr;
 93 }
 94 
 95 inline void ThawBase::patch_pd(frame& f, const frame& caller) {
 96   Unimplemented();
 97 }
 98 
 99 inline void ThawBase::patch_pd(frame& f, intptr_t* caller_sp) {
100   Unimplemented();
101 }
102 
103 inline intptr_t* ThawBase::push_cleanup_continuation() {
104   Unimplemented();
105   return nullptr;
106 }
107 
108 inline intptr_t* ThawBase::push_preempt_adapter() {
109   Unimplemented();
110   return nullptr;
111 }
112 
113 template <typename ConfigT>
114 inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
115   Unimplemented();
116 }
117 
118 inline void ThawBase::prefetch_chunk_pd(void* start, int size) {
119   Unimplemented();
120 }
121 
122 #endif // CPU_ARM_CONTINUATION_ARM_INLINE_HPP
< prev index next >