// _loc encodes both the binding state (via its sign) // and the binding locator (via its value) of a label. // // _loc >= 0 bound label, loc() encodes the target (jump) position // _loc == -1 unbound label int _loc;
// References to instructions that jump to this unresolved label. // These instructions need to be patched when the label is bound // using the platform-specific patchInstruction() method. // // To avoid having to allocate from the C-heap each time, we provide // a local cache and use the overflow only if we exceed the local cache int _patches[PatchCacheSize]; int _patch_index;
GrowableArray<int>* _patch_overflow;
NONCOPYABLE(Label); protected:
// The label will be bound to a location near its users. bool _is_near;
#ifdef ASSERT // Sourcre file and line location of jump instruction int _lines[PatchCacheSize]; constchar* _files[PatchCacheSize]; #endif public:
// The label will be bound to a location near its users. Users can // optimize on this information, e.g. generate short branches. bool is_near() { return _is_near; }
/** *Addsareferencetoanunresolveddisplacementinstructionto *thisunboundlabel * *@paramcbthecodebufferbeingpatched *@parambranch_locthelocatorofthebranchinstructioninthecodebuffer
*/ void add_patch_at(CodeBuffer* cb, int branch_loc, constchar* file = NULL, int line = 0);
~Label() {
assert(is_bound() || is_unused(), "Label was never bound to a location, but it was used as a jmp target");
}
void reset() {
init(); //leave _patch_overflow because it points to CodeBuffer.
}
};
// A NearLabel must be bound to a location near its users. Users can // optimize on this information, e.g. generate short branches. class NearLabel : public Label { public:
NearLabel() : Label() { _is_near = true; }
};
// A union type for code which has to assemble both constant and // non-constant operands, when the distinction cannot be made // statically. class RegisterOrConstant { private: Register _r;
intptr_t _c;
// The Abstract Assembler: Pure assembler doing NO optimizations on the // instruction level; i.e., what you write is what you get. // The Assembler is generating code into a CodeBuffer. class AbstractAssembler : public ResourceObj { friendclass Label;
protected:
CodeSection* _code_section; // section within the code buffer
OopRecorder* _oop_recorder; // support for relocInfo::oop_type
protected: // This routine is called with a label is used for an address. // Labels and displacements truck in offsets, but target must return a PC.
address target(Label& L) { return code_section()->target(L, pc()); }
bool is8bit(int x) const { return -0x80 <= x && x < 0x80; } bool isByte(int x) const { return0 <= x && x < 0x100; } bool isShiftCount(int x) const { return0 <= x && x < 32; }
// Instruction boundaries (required when emitting relocatable values). class InstructionMark: public StackObj { private:
AbstractAssembler* _assm;
public:
InstructionMark(AbstractAssembler* assm) : _assm(assm) {
assert(assm->inst_mark() == NULL, "overlapping instructions");
_assm->set_inst_mark();
}
~InstructionMark() {
_assm->clear_inst_mark();
}
}; friendclass InstructionMark; #ifdef ASSERT // Make it return true on platforms which need to verify // instruction boundaries for some operations. staticbool pd_check_instruction_mark();
// Add delta to short branch distance to verify that it still fit into imm8. int _short_branch_delta;
// Test if x is within signed immediate range for width. staticbool is_simm(int64_t x, uint w) {
precond(1 < w && w < 64);
int64_t limes = INT64_C(1) << (w - 1); return -limes <= x && x < limes;
}
// Test if x is within unsigned immediate range for width. staticbool is_uimm(uint64_t x, uint w) {
precond(0 < w && w < 64);
uint64_t limes = UINT64_C(1) << w; return x < limes;
}
// Constants in code void relocate(RelocationHolder const& rspec, int format = 0) {
assert(!pd_check_instruction_mark()
|| inst_mark() == NULL || inst_mark() == code_section()->end(), "call relocate() between instructions");
code_section()->relocate(code_section()->end(), rspec, format);
} void relocate( relocInfo::relocType rtype, int format = 0) {
code_section()->relocate(code_section()->end(), rtype, format);
}
staticint code_fill_byte(); // used to pad out odd-sized code buffers
// Associate a comment with the current offset. It will be printed // along with the disassembly when printing nmethods. Currently // only supported in the instruction section of the code buffer. void block_comment(constchar* comment); // Copy str to a buffer that has the same lifetime as the CodeBuffer constchar* code_string(constchar* str);
// Label functions void bind(Label& L); // binds an unbound label L to the current code position
// Move to a different section in the same code buffer. void set_code_section(CodeSection* cs);
// Inform assembler when generating stub code and relocation info
address start_a_stub(int required_space); void end_a_stub(); // Ditto for constants.
address start_a_const(int required_space, int required_align = sizeof(double)); void end_a_const(CodeSection* cs); // Pass the codesection to continue in (insts or stubs?).
// constants support // // We must remember the code section (insts or stubs) in c1 // so we can reset to the proper section in end_a_const().
address int_constant(jint c) {
CodeSection* c1 = _code_section;
address ptr = start_a_const(sizeof(c), sizeof(c)); if (ptr != NULL) {
emit_int32(c);
end_a_const(c1);
} return ptr;
}
address long_constant(jlong c) {
CodeSection* c1 = _code_section;
address ptr = start_a_const(sizeof(c), sizeof(c)); if (ptr != NULL) {
emit_int64(c);
end_a_const(c1);
} return ptr;
}
address double_constant(jdouble c) {
CodeSection* c1 = _code_section;
address ptr = start_a_const(sizeof(c), sizeof(c)); if (ptr != NULL) {
emit_double(c);
end_a_const(c1);
} return ptr;
}
address float_constant(jfloat c) {
CodeSection* c1 = _code_section;
address ptr = start_a_const(sizeof(c), sizeof(c)); if (ptr != NULL) {
emit_float(c);
end_a_const(c1);
} return ptr;
}
address address_constant(address c) {
CodeSection* c1 = _code_section;
address ptr = start_a_const(sizeof(c), sizeof(c)); if (ptr != NULL) {
emit_address(c);
end_a_const(c1);
} return ptr;
}
address address_constant(address c, RelocationHolder const& rspec) {
CodeSection* c1 = _code_section;
address ptr = start_a_const(sizeof(c), sizeof(c)); if (ptr != NULL) {
relocate(rspec);
emit_address(c);
end_a_const(c1);
} return ptr;
}
address array_constant(BasicType bt, GrowableArray<jvalue>* c, int alignment) {
CodeSection* c1 = _code_section; int len = c->length(); int size = type2aelembytes(bt) * len;
address ptr = start_a_const(size, alignment); if (ptr != NULL) { for (int i = 0; i < len; i++) {
jvalue e = c->at(i); switch(bt) { case T_BOOLEAN: emit_int8(e.z); break; case T_BYTE: emit_int8(e.b); break; case T_CHAR: emit_int16(e.c); break; case T_SHORT: emit_int16(e.s); break; case T_INT: emit_int32(e.i); break; case T_LONG: emit_int64(e.j); break; case T_FLOAT: emit_float(e.f); break; case T_DOUBLE: emit_double(e.d); break; default:
ShouldNotReachHere();
}
}
end_a_const(c1);
} return ptr;
}
// Bang stack to trigger StackOverflowError at a safe location // implementation delegates to machine-specific bang_stack_with_offset void generate_stack_overflow_check( int frame_size_in_bytes ); virtualvoid bang_stack_with_offset(int offset) = 0;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.