mirror of
https://github.com/openjdk/jdk.git
synced 2026-07-23 01:18:58 +00:00
8388080: Increase static size of some stubs for APX code
Reviewed-by: sviswanathan, kvn
This commit is contained in:
parent
376ecc5a9d
commit
d1c87e5b4f
@ -27,7 +27,7 @@
|
||||
|
||||
// Adapters
|
||||
enum /* platform_dependent_constants */ {
|
||||
adapter_code_size = 6000 DEBUG_ONLY(+ 6000)
|
||||
adapter_code_size = 8000 DEBUG_ONLY(+ 6000)
|
||||
};
|
||||
|
||||
// Additional helper methods for MethodHandles code generation:
|
||||
|
||||
@ -3452,7 +3452,7 @@ RuntimeStub* SharedRuntime::generate_jfr_write_checkpoint() {
|
||||
};
|
||||
|
||||
const char* name = SharedRuntime::stub_name(StubId::shared_jfr_write_checkpoint_id);
|
||||
CodeBuffer code(name, 1024, 64);
|
||||
CodeBuffer code(name, 1024 + (UseAPX ? 1024 : 0), 64);
|
||||
MacroAssembler* masm = new MacroAssembler(&code);
|
||||
address start = __ pc();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user