< prev index next >

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

Print this page
*** 1,7 ***
  /*
!  * Copyright (c) 2019, 2025, Oracle and/or its affiliates. All rights reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.
--- 1,7 ---
  /*
!  * Copyright (c) 2019, 2026, Oracle and/or its affiliates. All rights reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.

*** 37,11 ***
  inline frame FreezeBase::sender(const frame& f) {
    Unimplemented();
    return frame();
  }
  
! template<typename FKind> frame FreezeBase::new_heap_frame(frame& f, frame& caller) {
    Unimplemented();
    return frame();
  }
  
  void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {
--- 37,11 ---
  inline frame FreezeBase::sender(const frame& f) {
    Unimplemented();
    return frame();
  }
  
! template<typename FKind> frame FreezeBase::new_heap_frame(frame& f, frame& caller, int size_adjust) {
    Unimplemented();
    return frame();
  }
  
  void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {

*** 54,11 ***
  
  inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) {
    Unimplemented();
  }
  
! inline void FreezeBase::patch_pd(frame& hf, const frame& caller) {
    Unimplemented();
  }
  
  inline void FreezeBase::patch_pd_unused(intptr_t* sp) {
    Unimplemented();
--- 54,11 ---
  
  inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) {
    Unimplemented();
  }
  
! inline void FreezeBase::patch_pd(frame& hf, const frame& caller, bool is_bottom_frame) {
    Unimplemented();
  }
  
  inline void FreezeBase::patch_pd_unused(intptr_t* sp) {
    Unimplemented();

*** 80,11 ***
  inline frame ThawBase::new_entry_frame() {
    Unimplemented();
    return frame();
  }
  
! template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) {
    Unimplemented();
    return frame();
  }
  
  inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
--- 80,11 ---
  inline frame ThawBase::new_entry_frame() {
    Unimplemented();
    return frame();
  }
  
! template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom, int size_adjust) {
    Unimplemented();
    return frame();
  }
  
  inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
< prev index next >