88
89 inline address* ContinuationHelper::InterpretedFrame::return_pc_address(const frame& f) {
90 Unimplemented();
91 return nullptr;
92 }
93
94 inline void ContinuationHelper::InterpretedFrame::patch_sender_sp(frame& f, const frame& caller) {
95 Unimplemented();
96 }
97
98 inline address* ContinuationHelper::Frame::return_pc_address(const frame& f) {
99 Unimplemented();
100 return nullptr;
101 }
102
103 inline address ContinuationHelper::Frame::real_pc(const frame& f) {
104 Unimplemented();
105 return nullptr;
106 }
107
108 inline void ContinuationHelper::Frame::patch_pc(const frame& f, address pc) {
109 Unimplemented();
110 }
111
112 inline intptr_t* ContinuationHelper::InterpretedFrame::frame_top(const frame& f, InterpreterOopMap* mask) { // inclusive; this will be copied with the frame
113 Unimplemented();
114 return nullptr;
115 }
116
117 inline intptr_t* ContinuationHelper::InterpretedFrame::frame_bottom(const frame& f) { // exclusive; this will not be copied with the frame
118 Unimplemented();
119 return nullptr;
120 }
121
122 inline intptr_t* ContinuationHelper::InterpretedFrame::frame_top(const frame& f, int callee_argsize, bool callee_interpreted) {
123 Unimplemented();
124 return nullptr;
125 }
126
127 inline intptr_t* ContinuationHelper::InterpretedFrame::callers_sp(const frame& f) {
128 Unimplemented();
|
88
89 inline address* ContinuationHelper::InterpretedFrame::return_pc_address(const frame& f) {
90 Unimplemented();
91 return nullptr;
92 }
93
94 inline void ContinuationHelper::InterpretedFrame::patch_sender_sp(frame& f, const frame& caller) {
95 Unimplemented();
96 }
97
98 inline address* ContinuationHelper::Frame::return_pc_address(const frame& f) {
99 Unimplemented();
100 return nullptr;
101 }
102
103 inline address ContinuationHelper::Frame::real_pc(const frame& f) {
104 Unimplemented();
105 return nullptr;
106 }
107
108 inline void ContinuationHelper::Frame::patch_pc(const frame& f, address pc, bool callee_augmented) {
109 Unimplemented();
110 }
111
112 inline intptr_t* ContinuationHelper::InterpretedFrame::frame_top(const frame& f, InterpreterOopMap* mask) { // inclusive; this will be copied with the frame
113 Unimplemented();
114 return nullptr;
115 }
116
117 inline intptr_t* ContinuationHelper::InterpretedFrame::frame_bottom(const frame& f) { // exclusive; this will not be copied with the frame
118 Unimplemented();
119 return nullptr;
120 }
121
122 inline intptr_t* ContinuationHelper::InterpretedFrame::frame_top(const frame& f, int callee_argsize, bool callee_interpreted) {
123 Unimplemented();
124 return nullptr;
125 }
126
127 inline intptr_t* ContinuationHelper::InterpretedFrame::callers_sp(const frame& f) {
128 Unimplemented();
|