Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/asm/codeBuffer.hpp
32285 views
/*1* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_ASM_CODEBUFFER_HPP25#define SHARE_VM_ASM_CODEBUFFER_HPP2627#include "code/oopRecorder.hpp"28#include "code/relocInfo.hpp"29#include "utilities/debug.hpp"3031class CodeStrings;32class PhaseCFG;33class Compile;34class BufferBlob;35class CodeBuffer;36class Label;3738class CodeOffsets: public StackObj {39public:40enum Entries { Entry,41Verified_Entry,42Frame_Complete, // Offset in the code where the frame setup is (for forte stackwalks) is complete43OSR_Entry,44Dtrace_trap = OSR_Entry, // dtrace probes can never have an OSR entry so reuse it45Exceptions, // Offset where exception handler lives46Deopt, // Offset where deopt handler lives47DeoptMH, // Offset where MethodHandle deopt handler lives48UnwindHandler, // Offset to default unwind handler49max_Entries };5051// special value to note codeBlobs where profile (forte) stack walking is52// always dangerous and suspect.5354enum { frame_never_safe = -1 };5556private:57int _values[max_Entries];5859public:60CodeOffsets() {61_values[Entry ] = 0;62_values[Verified_Entry] = 0;63_values[Frame_Complete] = frame_never_safe;64_values[OSR_Entry ] = 0;65_values[Exceptions ] = -1;66_values[Deopt ] = -1;67_values[DeoptMH ] = -1;68_values[UnwindHandler ] = -1;69}7071int value(Entries e) { return _values[e]; }72void set_value(Entries e, int val) { _values[e] = val; }73};7475// This class represents a stream of code and associated relocations.76// There are a few in each CodeBuffer.77// They are filled concurrently, and concatenated at the end.78class CodeSection VALUE_OBJ_CLASS_SPEC {79friend class CodeBuffer;80public:81typedef int csize_t; // code size type; would be size_t except for history8283private:84address _start; // first byte of contents (instructions)85address _mark; // user mark, usually an instruction beginning86address _end; // current end address87address _limit; // last possible (allocated) end address88relocInfo* _locs_start; // first byte of relocation information89relocInfo* _locs_end; // first byte after relocation information90relocInfo* _locs_limit; // first byte after relocation information buf91address _locs_point; // last relocated position (grows upward)92bool _locs_own; // did I allocate the locs myself?93bool _frozen; // no more expansion of this section94char _index; // my section number (SECT_INST, etc.)95CodeBuffer* _outer; // enclosing CodeBuffer9697// (Note: _locs_point used to be called _last_reloc_offset.)9899CodeSection() {100_start = NULL;101_mark = NULL;102_end = NULL;103_limit = NULL;104_locs_start = NULL;105_locs_end = NULL;106_locs_limit = NULL;107_locs_point = NULL;108_locs_own = false;109_frozen = false;110debug_only(_index = (char)-1);111debug_only(_outer = (CodeBuffer*)badAddress);112}113114void initialize_outer(CodeBuffer* outer, int index) {115_outer = outer;116_index = index;117}118119void initialize(address start, csize_t size = 0) {120assert(_start == NULL, "only one init step, please");121_start = start;122_mark = NULL;123_end = start;124125_limit = start + size;126_locs_point = start;127}128129void initialize_locs(int locs_capacity);130void expand_locs(int new_capacity);131void initialize_locs_from(const CodeSection* source_cs);132133// helper for CodeBuffer::expand()134void take_over_code_from(CodeSection* cs) {135_start = cs->_start;136_mark = cs->_mark;137_end = cs->_end;138_limit = cs->_limit;139_locs_point = cs->_locs_point;140}141142public:143address start() const { return _start; }144address mark() const { return _mark; }145address end() const { return _end; }146address limit() const { return _limit; }147csize_t size() const { return (csize_t)(_end - _start); }148csize_t mark_off() const { assert(_mark != NULL, "not an offset");149return (csize_t)(_mark - _start); }150csize_t capacity() const { return (csize_t)(_limit - _start); }151csize_t remaining() const { return (csize_t)(_limit - _end); }152153relocInfo* locs_start() const { return _locs_start; }154relocInfo* locs_end() const { return _locs_end; }155int locs_count() const { return (int)(_locs_end - _locs_start); }156relocInfo* locs_limit() const { return _locs_limit; }157address locs_point() const { return _locs_point; }158csize_t locs_point_off() const{ return (csize_t)(_locs_point - _start); }159csize_t locs_capacity() const { return (csize_t)(_locs_limit - _locs_start); }160csize_t locs_remaining()const { return (csize_t)(_locs_limit - _locs_end); }161162int index() const { return _index; }163bool is_allocated() const { return _start != NULL; }164bool is_empty() const { return _start == _end; }165bool is_frozen() const { return _frozen; }166bool has_locs() const { return _locs_end != NULL; }167168CodeBuffer* outer() const { return _outer; }169170// is a given address in this section? (2nd version is end-inclusive)171bool contains(address pc) const { return pc >= _start && pc < _end; }172bool contains2(address pc) const { return pc >= _start && pc <= _end; }173bool allocates(address pc) const { return pc >= _start && pc < _limit; }174bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }175176void set_end(address pc) { assert(allocates2(pc), err_msg("not in CodeBuffer memory: " PTR_FORMAT " <= " PTR_FORMAT " <= " INTPTR_FORMAT, p2i(_start), p2i(pc), p2i(_limit))); _end = pc; }177void set_mark(address pc) { assert(contains2(pc), "not in codeBuffer");178_mark = pc; }179void set_mark_off(int offset) { assert(contains2(offset+_start),"not in codeBuffer");180_mark = offset + _start; }181void set_mark() { _mark = _end; }182void clear_mark() { _mark = NULL; }183184void set_locs_end(relocInfo* p) {185assert(p <= locs_limit(), "locs data fits in allocated buffer");186_locs_end = p;187}188void set_locs_point(address pc) {189assert(pc >= locs_point(), "relocation addr may not decrease");190assert(allocates2(pc), "relocation addr must be in this section");191_locs_point = pc;192}193194// Code emission195void emit_int8 ( int8_t x) { *((int8_t*) end()) = x; set_end(end() + sizeof(int8_t)); }196void emit_int16( int16_t x) { *((int16_t*) end()) = x; set_end(end() + sizeof(int16_t)); }197void emit_int32( int32_t x) { *((int32_t*) end()) = x; set_end(end() + sizeof(int32_t)); }198void emit_int64( int64_t x) { *((int64_t*) end()) = x; set_end(end() + sizeof(int64_t)); }199200void emit_float( jfloat x) { *((jfloat*) end()) = x; set_end(end() + sizeof(jfloat)); }201void emit_double(jdouble x) { *((jdouble*) end()) = x; set_end(end() + sizeof(jdouble)); }202void emit_address(address x) { *((address*) end()) = x; set_end(end() + sizeof(address)); }203204// Share a scratch buffer for relocinfo. (Hacky; saves a resource allocation.)205void initialize_shared_locs(relocInfo* buf, int length);206207// Manage labels and their addresses.208address target(Label& L, address branch_pc);209210// Emit a relocation.211void relocate(address at, RelocationHolder const& rspec, int format = 0);212void relocate(address at, relocInfo::relocType rtype, int format = 0) {213if (rtype != relocInfo::none)214relocate(at, Relocation::spec_simple(rtype), format);215}216217// alignment requirement for starting offset218// Requirements are that the instruction area and the219// stubs area must start on CodeEntryAlignment, and220// the ctable on sizeof(jdouble)221int alignment() const { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }222223// Slop between sections, used only when allocating temporary BufferBlob buffers.224static csize_t end_slop() { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }225226csize_t align_at_start(csize_t off) const { return (csize_t) align_size_up(off, alignment()); }227228// Mark a section frozen. Assign its remaining space to229// the following section. It will never expand after this point.230inline void freeze(); // { _outer->freeze_section(this); }231232// Ensure there's enough space left in the current section.233// Return true if there was an expansion.234bool maybe_expand_to_ensure_remaining(csize_t amount);235236#ifndef PRODUCT237void decode();238void dump();239void print(const char* name);240#endif //PRODUCT241};242243class CodeString;244class CodeStrings VALUE_OBJ_CLASS_SPEC {245private:246#ifndef PRODUCT247CodeString* _strings;248#ifdef ASSERT249// Becomes true after copy-out, forbids further use.250bool _defunct; // Zero bit pattern is "valid", see memset call in decode_env::decode_env251#endif252#endif253254CodeString* find(intptr_t offset) const;255CodeString* find_last(intptr_t offset) const;256257void set_null_and_invalidate() {258#ifndef PRODUCT259_strings = NULL;260#ifdef ASSERT261_defunct = true;262#endif263#endif264}265266public:267CodeStrings() {268#ifndef PRODUCT269_strings = NULL;270#ifdef ASSERT271_defunct = false;272#endif273#endif274}275276bool is_null() {277#ifdef ASSERT278return _strings == NULL;279#else280return true;281#endif282}283284const char* add_string(const char * string) PRODUCT_RETURN_(return NULL;);285286void add_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;287void print_block_comment(outputStream* stream, intptr_t offset) const PRODUCT_RETURN;288// MOVE strings from other to this; invalidate other.289void assign(CodeStrings& other) PRODUCT_RETURN;290// COPY strings from other to this; leave other valid.291void copy(CodeStrings& other) PRODUCT_RETURN;292void free() PRODUCT_RETURN;293// Guarantee that _strings are used at most once; assign invalidates a buffer.294inline void check_valid() const {295#ifdef ASSERT296assert(!_defunct, "Use of invalid CodeStrings");297#endif298}299};300301// A CodeBuffer describes a memory space into which assembly302// code is generated. This memory space usually occupies the303// interior of a single BufferBlob, but in some cases it may be304// an arbitrary span of memory, even outside the code cache.305//306// A code buffer comes in two variants:307//308// (1) A CodeBuffer referring to an already allocated piece of memory:309// This is used to direct 'static' code generation (e.g. for interpreter310// or stubroutine generation, etc.). This code comes with NO relocation311// information.312//313// (2) A CodeBuffer referring to a piece of memory allocated when the314// CodeBuffer is allocated. This is used for nmethod generation.315//316// The memory can be divided up into several parts called sections.317// Each section independently accumulates code (or data) an relocations.318// Sections can grow (at the expense of a reallocation of the BufferBlob319// and recopying of all active sections). When the buffered code is finally320// written to an nmethod (or other CodeBlob), the contents (code, data,321// and relocations) of the sections are padded to an alignment and concatenated.322// Instructions and data in one section can contain relocatable references to323// addresses in a sibling section.324325class CodeBuffer: public StackObj {326friend class CodeSection;327328private:329// CodeBuffers must be allocated on the stack except for a single330// special case during expansion which is handled internally. This331// is done to guarantee proper cleanup of resources.332void* operator new(size_t size) throw() { return ResourceObj::operator new(size); }333void operator delete(void* p) { ShouldNotCallThis(); }334335public:336typedef int csize_t; // code size type; would be size_t except for history337enum {338// Here is the list of all possible sections. The order reflects339// the final layout.340SECT_FIRST = 0,341SECT_CONSTS = SECT_FIRST, // Non-instruction data: Floats, jump tables, etc.342SECT_INSTS, // Executable instructions.343SECT_STUBS, // Outbound trampolines for supporting call sites.344SECT_LIMIT, SECT_NONE = -1345};346347private:348enum {349sect_bits = 2, // assert (SECT_LIMIT <= (1<<sect_bits))350sect_mask = (1<<sect_bits)-1351};352353const char* _name;354355CodeSection _consts; // constants, jump tables356CodeSection _insts; // instructions (the main section)357CodeSection _stubs; // stubs (call site support), deopt, exception handling358359CodeBuffer* _before_expand; // dead buffer, from before the last expansion360361BufferBlob* _blob; // optional buffer in CodeCache for generated code362address _total_start; // first address of combined memory buffer363csize_t _total_size; // size in bytes of combined memory buffer364365OopRecorder* _oop_recorder;366CodeStrings _code_strings;367OopRecorder _default_oop_recorder; // override with initialize_oop_recorder368Arena* _overflow_arena;369370address _decode_begin; // start address for decode371address decode_begin();372373void initialize_misc(const char * name) {374// all pointers other than code_start/end and those inside the sections375assert(name != NULL, "must have a name");376_name = name;377_before_expand = NULL;378_blob = NULL;379_oop_recorder = NULL;380_decode_begin = NULL;381_overflow_arena = NULL;382}383384void initialize(address code_start, csize_t code_size) {385_consts.initialize_outer(this, SECT_CONSTS);386_insts.initialize_outer(this, SECT_INSTS);387_stubs.initialize_outer(this, SECT_STUBS);388_total_start = code_start;389_total_size = code_size;390// Initialize the main section:391_insts.initialize(code_start, code_size);392assert(!_stubs.is_allocated(), "no garbage here");393assert(!_consts.is_allocated(), "no garbage here");394_oop_recorder = &_default_oop_recorder;395}396397void initialize_section_size(CodeSection* cs, csize_t size);398399void freeze_section(CodeSection* cs);400401// helper for CodeBuffer::expand()402void take_over_code_from(CodeBuffer* cs);403404// ensure sections are disjoint, ordered, and contained in the blob405void verify_section_allocation();406407// copies combined relocations to the blob, returns bytes copied408// (if target is null, it is a dry run only, just for sizing)409csize_t copy_relocations_to(CodeBlob* blob) const;410411// copies combined code to the blob (assumes relocs are already in there)412void copy_code_to(CodeBlob* blob);413414// moves code sections to new buffer (assumes relocs are already in there)415void relocate_code_to(CodeBuffer* cb) const;416417// set up a model of the final layout of my contents418void compute_final_layout(CodeBuffer* dest) const;419420// Expand the given section so at least 'amount' is remaining.421// Creates a new, larger BufferBlob, and rewrites the code & relocs.422void expand(CodeSection* which_cs, csize_t amount);423424// Helper for expand.425csize_t figure_expanded_capacities(CodeSection* which_cs, csize_t amount, csize_t* new_capacity);426427public:428// (1) code buffer referring to pre-allocated instruction memory429CodeBuffer(address code_start, csize_t code_size) {430assert(code_start != NULL, "sanity");431initialize_misc("static buffer");432initialize(code_start, code_size);433verify_section_allocation();434}435436// (2) CodeBuffer referring to pre-allocated CodeBlob.437CodeBuffer(CodeBlob* blob);438439// (3) code buffer allocating codeBlob memory for code & relocation440// info but with lazy initialization. The name must be something441// informative.442CodeBuffer(const char* name) {443initialize_misc(name);444}445446447// (4) code buffer allocating codeBlob memory for code & relocation448// info. The name must be something informative and code_size must449// include both code and stubs sizes.450CodeBuffer(const char* name, csize_t code_size, csize_t locs_size) {451initialize_misc(name);452initialize(code_size, locs_size);453}454455~CodeBuffer();456457// Initialize a CodeBuffer constructed using constructor 3. Using458// constructor 4 is equivalent to calling constructor 3 and then459// calling this method. It's been factored out for convenience of460// construction.461void initialize(csize_t code_size, csize_t locs_size);462463CodeSection* consts() { return &_consts; }464CodeSection* insts() { return &_insts; }465CodeSection* stubs() { return &_stubs; }466467// present sections in order; return NULL at end; consts is #0, etc.468CodeSection* code_section(int n) {469// This makes the slightly questionable but portable assumption470// that the various members (_consts, _insts, _stubs, etc.) are471// adjacent in the layout of CodeBuffer.472CodeSection* cs = &_consts + n;473assert(cs->index() == n || !cs->is_allocated(), "sanity");474return cs;475}476const CodeSection* code_section(int n) const { // yucky const stuff477return ((CodeBuffer*)this)->code_section(n);478}479static const char* code_section_name(int n);480int section_index_of(address addr) const;481bool contains(address addr) const {482// handy for debugging483return section_index_of(addr) > SECT_NONE;484}485486// A stable mapping between 'locators' (small ints) and addresses.487static int locator_pos(int locator) { return locator >> sect_bits; }488static int locator_sect(int locator) { return locator & sect_mask; }489static int locator(int pos, int sect) { return (pos << sect_bits) | sect; }490int locator(address addr) const;491address locator_address(int locator) const;492493// Heuristic for pre-packing the taken/not-taken bit of a predicted branch.494bool is_backward_branch(Label& L);495496// Properties497const char* name() const { return _name; }498CodeBuffer* before_expand() const { return _before_expand; }499BufferBlob* blob() const { return _blob; }500void set_blob(BufferBlob* blob);501void free_blob(); // Free the blob, if we own one.502503// Properties relative to the insts section:504address insts_begin() const { return _insts.start(); }505address insts_end() const { return _insts.end(); }506void set_insts_end(address end) { _insts.set_end(end); }507address insts_limit() const { return _insts.limit(); }508address insts_mark() const { return _insts.mark(); }509void set_insts_mark() { _insts.set_mark(); }510void clear_insts_mark() { _insts.clear_mark(); }511512// is there anything in the buffer other than the current section?513bool is_pure() const { return insts_size() == total_content_size(); }514515// size in bytes of output so far in the insts sections516csize_t insts_size() const { return _insts.size(); }517518// same as insts_size(), except that it asserts there is no non-code here519csize_t pure_insts_size() const { assert(is_pure(), "no non-code");520return insts_size(); }521// capacity in bytes of the insts sections522csize_t insts_capacity() const { return _insts.capacity(); }523524// number of bytes remaining in the insts section525csize_t insts_remaining() const { return _insts.remaining(); }526527// is a given address in the insts section? (2nd version is end-inclusive)528bool insts_contains(address pc) const { return _insts.contains(pc); }529bool insts_contains2(address pc) const { return _insts.contains2(pc); }530531// Record any extra oops required to keep embedded metadata alive532void finalize_oop_references(methodHandle method);533534// Allocated size in all sections, when aligned and concatenated535// (this is the eventual state of the content in its final536// CodeBlob).537csize_t total_content_size() const;538539// Combined offset (relative to start of first section) of given540// section, as eventually found in the final CodeBlob.541csize_t total_offset_of(CodeSection* cs) const;542543// allocated size of all relocation data, including index, rounded up544csize_t total_relocation_size() const;545546// allocated size of any and all recorded oops547csize_t total_oop_size() const {548OopRecorder* recorder = oop_recorder();549return (recorder == NULL)? 0: recorder->oop_size();550}551552// allocated size of any and all recorded metadata553csize_t total_metadata_size() const {554OopRecorder* recorder = oop_recorder();555return (recorder == NULL)? 0: recorder->metadata_size();556}557558// Configuration functions, called immediately after the CB is constructed.559// The section sizes are subtracted from the original insts section.560// Note: Call them in reverse section order, because each steals from insts.561void initialize_consts_size(csize_t size) { initialize_section_size(&_consts, size); }562void initialize_stubs_size(csize_t size) { initialize_section_size(&_stubs, size); }563// Override default oop recorder.564void initialize_oop_recorder(OopRecorder* r);565566OopRecorder* oop_recorder() const { return _oop_recorder; }567CodeStrings& strings() { return _code_strings; }568569void free_strings() {570if (!_code_strings.is_null()) {571_code_strings.free(); // sets _strings Null as a side-effect.572}573}574575// Code generation576void relocate(address at, RelocationHolder const& rspec, int format = 0) {577_insts.relocate(at, rspec, format);578}579void relocate(address at, relocInfo::relocType rtype, int format = 0) {580_insts.relocate(at, rtype, format);581}582583// Management of overflow storage for binding of Labels.584GrowableArray<int>* create_patch_overflow();585586// NMethod generation587void copy_code_and_locs_to(CodeBlob* blob) {588assert(blob != NULL, "sane");589copy_relocations_to(blob);590copy_code_to(blob);591}592void copy_values_to(nmethod* nm) {593if (!oop_recorder()->is_unused()) {594oop_recorder()->copy_values_to(nm);595}596}597598// Transform an address from the code in this code buffer to a specified code buffer599address transform_address(const CodeBuffer &cb, address addr) const;600601void block_comment(intptr_t offset, const char * comment) PRODUCT_RETURN;602const char* code_string(const char* str) PRODUCT_RETURN_(return NULL;);603604// Log a little info about section usage in the CodeBuffer605void log_section_sizes(const char* name);606607#ifndef PRODUCT608public:609// Printing / Decoding610// decodes from decode_begin() to code_end() and sets decode_begin to end611void decode();612void decode_all(); // decodes all the code613void skip_decode(); // sets decode_begin to code_end();614void print();615#endif616617618// The following header contains architecture-specific implementations619#ifdef TARGET_ARCH_x86620# include "codeBuffer_x86.hpp"621#endif622#ifdef TARGET_ARCH_aarch32623# include "codeBuffer_aarch32.hpp"624#endif625#ifdef TARGET_ARCH_aarch64626# include "codeBuffer_aarch64.hpp"627#endif628#ifdef TARGET_ARCH_sparc629# include "codeBuffer_sparc.hpp"630#endif631#ifdef TARGET_ARCH_zero632# include "codeBuffer_zero.hpp"633#endif634#ifdef TARGET_ARCH_arm635# include "codeBuffer_arm.hpp"636#endif637#ifdef TARGET_ARCH_ppc638# include "codeBuffer_ppc.hpp"639#endif640641};642643644inline void CodeSection::freeze() {645_outer->freeze_section(this);646}647648inline bool CodeSection::maybe_expand_to_ensure_remaining(csize_t amount) {649if (remaining() < amount) { _outer->expand(this, amount); return true; }650return false;651}652653#endif // SHARE_VM_ASM_CODEBUFFER_HPP654655656