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_pd_unused(intptr_t* sp) {
64 Unimplemented();
65 }
66
67 inline void FreezeBase::patch_stack_pd(intptr_t* frame_sp, intptr_t* heap_sp) {
68 Unimplemented();
69 }
70
71 inline frame ThawBase::new_entry_frame() {
72 Unimplemented();
73 return frame();
74 }
75
76 template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) {
77 Unimplemented();
78 return frame();
79 }
80
81 inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
82 Unimplemented();
83 }
84
85 inline intptr_t* ThawBase::align(const frame& hf, intptr_t* frame_sp, frame& caller, bool bottom) {
86 Unimplemented();
87 return nullptr;
88 }
89
90 inline void ThawBase::patch_pd(frame& f, const frame& caller) {
91 Unimplemented();
92 }
93
94 inline void ThawBase::patch_pd(frame& f, intptr_t* caller_sp) {
95 Unimplemented();
96 }
97
98 inline intptr_t* ThawBase::push_cleanup_continuation() {
99 Unimplemented();
100 return nullptr;
101 }
102
103 template <typename ConfigT>
104 inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
105 Unimplemented();
106 }
107
108 inline void ThawBase::prefetch_chunk_pd(void* start, int size) {
109 Unimplemented();
110 }
111
112 #endif // CPU_ZERO_CONTINUATION_ZERO_INLINE_HPP
|
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_pd_unused(intptr_t* sp) {
64 Unimplemented();
65 }
66
67 inline void FreezeBase::patch_stack_pd(intptr_t* frame_sp, intptr_t* heap_sp) {
68 Unimplemented();
69 }
70
71 inline intptr_t* AnchorMark::anchor_mark_set_pd() {
72 Unimplemented();
73 return nullptr;
74 }
75
76 inline void AnchorMark::anchor_mark_clear_pd() {
77 Unimplemented();
78 }
79
80 inline frame ThawBase::new_entry_frame() {
81 Unimplemented();
82 return frame();
83 }
84
85 template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) {
86 Unimplemented();
87 return frame();
88 }
89
90 inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
91 Unimplemented();
92 }
93
94 inline intptr_t* ThawBase::align(const frame& hf, intptr_t* frame_sp, frame& caller, bool bottom) {
95 Unimplemented();
96 return nullptr;
97 }
98
99 inline void ThawBase::patch_pd(frame& f, const frame& caller) {
100 Unimplemented();
101 }
102
103 inline void ThawBase::patch_pd(frame& f, intptr_t* caller_sp) {
104 Unimplemented();
105 }
106
107 inline intptr_t* ThawBase::push_cleanup_continuation() {
108 Unimplemented();
109 return nullptr;
110 }
111
112 inline intptr_t* ThawBase::push_preempt_adapter() {
113 Unimplemented();
114 return nullptr;
115 }
116
117 template <typename ConfigT>
118 inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
119 Unimplemented();
120 }
121
122 inline void ThawBase::prefetch_chunk_pd(void* start, int size) {
123 Unimplemented();
124 }
125
126 #endif // CPU_ZERO_CONTINUATION_ZERO_INLINE_HPP
|