< prev index next >

src/hotspot/cpu/s390/continuationHelper_s390.inline.hpp

Print this page

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

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