src/share/vm/asm/codeBuffer.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/asm/codeBuffer.hpp

src/share/vm/asm/codeBuffer.hpp

Print this page

        

*** 207,220 **** // Manage labels and their addresses. address target(Label& L, address branch_pc); // Emit a relocation. void relocate(address at, RelocationHolder const& rspec, int format = 0); ! void relocate(address at, relocInfo::relocType rtype, int format = 0) { ! if (rtype != relocInfo::none) ! relocate(at, Relocation::spec_simple(rtype), format); ! } // alignment requirement for starting offset // Requirements are that the instruction area and the // stubs area must start on CodeEntryAlignment, and // the ctable on sizeof(jdouble) --- 207,217 ---- // Manage labels and their addresses. address target(Label& L, address branch_pc); // Emit a relocation. void relocate(address at, RelocationHolder const& rspec, int format = 0); ! void relocate(address at, relocInfo::relocType rtype, int format = 0, jint method_index = 0); // alignment requirement for starting offset // Requirements are that the instruction area and the // stubs area must start on CodeEntryAlignment, and // the ctable on sizeof(jdouble)
src/share/vm/asm/codeBuffer.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File