src/cpu/aarch64/vm/frame_aarch64.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/cpu/aarch64/vm/frame_aarch64.hpp

src/cpu/aarch64/vm/frame_aarch64.hpp

Print this page
rev 7968 : [mq]: 6313046-deadcode

*** 134,149 **** // stubGenerator for the Java call stub entry_frame_after_call_words = 27, entry_frame_call_wrapper_offset = -8, // we don't need a save area ! arg_reg_save_area_bytes = 0, ! ! // TODO - check that this is still correct ! // Native frames ! ! native_frame_initial_param_offset = 2 }; intptr_t ptr_at(int offset) const { return *ptr_at_addr(offset); --- 134,144 ---- // stubGenerator for the Java call stub entry_frame_after_call_words = 27, entry_frame_call_wrapper_offset = -8, // we don't need a save area ! arg_reg_save_area_bytes = 0 }; intptr_t ptr_at(int offset) const { return *ptr_at_addr(offset);
*** 193,205 **** // Note: not necessarily the real 'frame pointer' (see real_fp) intptr_t* fp() const { return _fp; } inline address* sender_pc_addr() const; - // return address of param, zero origin index. - inline address* native_param_addr(int idx) const; - // expression stack tos if we are nested in a java call intptr_t* interpreter_frame_last_sp() const; // helper to update a map with callee-saved RBP static void update_map_with_saved_link(RegisterMap* map, intptr_t** link_addr); --- 188,197 ----
src/cpu/aarch64/vm/frame_aarch64.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File