mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8132318: -XX:TraceJumps is broken on Sparc
Reviewed-by: kvn, thartmann
This commit is contained in:
parent
4ab4c66c41
commit
490625cd8b
13 changed files with 12 additions and 139 deletions
|
@ -3368,9 +3368,7 @@ SafepointBlob* SharedRuntime::generate_handler_blob(address call_ptr, int poll_t
|
|||
// setup code generation tools
|
||||
// Measured 8/7/03 at 896 in 32bit debug build (no VerifyThread)
|
||||
// Measured 8/7/03 at 1080 in 32bit debug build (VerifyThread)
|
||||
// even larger with TraceJumps
|
||||
int pad = TraceJumps ? 512 : 0;
|
||||
CodeBuffer buffer("handler_blob", 1600 + pad, 512);
|
||||
CodeBuffer buffer("handler_blob", 1600, 512);
|
||||
MacroAssembler* masm = new MacroAssembler(&buffer);
|
||||
int frame_size_words;
|
||||
OopMapSet *oop_maps = new OopMapSet();
|
||||
|
@ -3462,9 +3460,7 @@ RuntimeStub* SharedRuntime::generate_resolve_blob(address destination, const cha
|
|||
// setup code generation tools
|
||||
// Measured 8/7/03 at 896 in 32bit debug build (no VerifyThread)
|
||||
// Measured 8/7/03 at 1080 in 32bit debug build (VerifyThread)
|
||||
// even larger with TraceJumps
|
||||
int pad = TraceJumps ? 512 : 0;
|
||||
CodeBuffer buffer(name, 1600 + pad, 512);
|
||||
CodeBuffer buffer(name, 1600, 512);
|
||||
MacroAssembler* masm = new MacroAssembler(&buffer);
|
||||
int frame_size_words;
|
||||
OopMapSet *oop_maps = new OopMapSet();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue