Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/cpu/x86/stubDeclarations_x86.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
do_arch_blob, \
do_arch_entry, \
do_arch_entry_init) \
do_arch_blob(compiler, 20000 LP64_ONLY(+64000) WINDOWS_ONLY(+2000)) \
do_arch_blob(compiler, 20000 LP64_ONLY(+89000) WINDOWS_ONLY(+2000)) \
do_stub(compiler, vector_float_sign_mask) \
do_arch_entry(x86, compiler, vector_float_sign_mask, \
vector_float_sign_mask, vector_float_sign_mask) \
Expand Down
2 changes: 2 additions & 0 deletions src/hotspot/cpu/x86/stubGenerator_x86_64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4207,6 +4207,8 @@ void StubGenerator::generate_compiler_stubs() {

generate_chacha_stubs();

generate_dilithium_stubs();

generate_sha3_stubs();

// data cache line writeback
Expand Down
3 changes: 2 additions & 1 deletion src/hotspot/cpu/x86/stubGenerator_x86_64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,9 @@ class StubGenerator: public StubCodeGenerator {

// SHA3 stubs
void generate_sha3_stubs();
address generate_sha3_implCompress(StubGenStubId stub_id);

// Dilithium stubs and helper functions
void generate_dilithium_stubs();
// BASE64 stubs

address base64_shuffle_addr();
Expand Down
Loading