8388080: Increase static size of some stubs for APX code

Reviewed-by: sviswanathan, kvn
This commit is contained in:
Derek White 2026-07-15 13:42:10 +00:00
parent 376ecc5a9d
commit d1c87e5b4f
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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();