mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 20:44:41 +02:00
Merge
This commit is contained in:
commit
b2bc7d218f
98 changed files with 3038 additions and 1843 deletions
|
@ -197,6 +197,7 @@ void CompressedWriteStream::write_int_mb(jint value) {
|
|||
// compiler stack overflow is fixed.
|
||||
#if _MSC_VER >=1400 && !defined(_WIN64)
|
||||
#pragma optimize("", off)
|
||||
#pragma warning(disable: 4748)
|
||||
#endif
|
||||
|
||||
// generator for an "interesting" set of critical values
|
||||
|
@ -276,6 +277,7 @@ void test_compressed_stream(int trace) {
|
|||
}
|
||||
|
||||
#if _MSC_VER >=1400 && !defined(_WIN64)
|
||||
#pragma warning(default: 4748)
|
||||
#pragma optimize("", on)
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1093,8 +1093,8 @@ void RelocIterator::print_current() {
|
|||
tty->print_cr("(no relocs)");
|
||||
return;
|
||||
}
|
||||
tty->print("relocInfo@" INTPTR_FORMAT " [type=%d(%s) addr=" INTPTR_FORMAT,
|
||||
_current, type(), reloc_type_string((relocInfo::relocType) type()), _addr);
|
||||
tty->print("relocInfo@" INTPTR_FORMAT " [type=%d(%s) addr=" INTPTR_FORMAT " offset=%d",
|
||||
_current, type(), reloc_type_string((relocInfo::relocType) type()), _addr, _current->addr_offset());
|
||||
if (current()->format() != 0)
|
||||
tty->print(" format=%d", current()->format());
|
||||
if (datalen() == 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue