RFR: 8306057: False arguments calling dispatch_base for aarch64
Kick-it11
duke at openjdk.org
Mon Apr 17 06:21:43 UTC 2023
Hi,
While I was reading the source codes, I found there might be a bug here.
-- In interp_masm_aarch64.cpp, dispatch_base was define as
void dispatch_base(TosState state,
address* table,
bool verifyoop = true,
bool generate_poll = false);
-- But in dispatch_next of interp_masm_aarch64.cpp,
it is called:
dispatch_base(state,
Interpreter::dispatch_table(state),
generate_poll);
-------------
Commit messages:
- Update src/hotspot/cpu/aarch64/interp_masm_aarch64.cpp
- FIX: HOTSPOT: False arguments calling dispatch_base for aarch64
Changes: https://git.openjdk.org/jdk/pull/12706/files
Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=12706&range=00
Issue: https://bugs.openjdk.org/browse/JDK-8306057
Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod
Patch: https://git.openjdk.org/jdk/pull/12706.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/12706/head:pull/12706
PR: https://git.openjdk.org/jdk/pull/12706
More information about the hotspot-runtime-dev
mailing list