int AbstractAssembler::code_fill_byte() { return0;
}
Address::Address(address target, relocInfo::relocType rtype) : _base(noreg), _offset(0), _mode(literal) {
_target = target; switch (rtype) { case relocInfo::oop_type: case relocInfo::metadata_type: // Oops are a special case. Normally they would be their own section // but in cases like icBuffer they are literals in the code stream that // we don't have a section for. We use none so that we get a literal address // which is always patchable. break; case relocInfo::external_word_type:
_rspec = external_word_Relocation::spec(target); break; case relocInfo::internal_word_type:
_rspec = internal_word_Relocation::spec(target); break; case relocInfo::opt_virtual_call_type:
_rspec = opt_virtual_call_Relocation::spec(); break; case relocInfo::static_call_type:
_rspec = static_call_Relocation::spec(); break; case relocInfo::runtime_call_type:
_rspec = runtime_call_Relocation::spec(); break; case relocInfo::poll_type: case relocInfo::poll_return_type:
_rspec = Relocation::spec_simple(rtype); break; case relocInfo::none:
_rspec = RelocationHolder::none; break; default:
ShouldNotReachHere();
}
}
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.