Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix alignment exceptions issue for F and C extensions #317

Merged
merged 2 commits into from
Jan 4, 2024

Conversation

visitorckw
Copy link
Collaborator

@visitorckw visitorckw commented Jan 2, 2024

This pull request address two issues related to data/instruction address alignment exceptions. The first patch adds address alignment checks for F extension load/store operations, resolving an issue reported by @fourcolor. The second patch fixes incorrect alignment checks in the C extension, aligning behavior with RISC-V specifications by eliminating unnecessary misalignment checks for jump instructions.

Current F extnesion implementation did not properly handle address
alignment concerns. A check for address misalignment has been
introduced, and the corresponding exception handler is invoked to
ensure correct behavior.

Reported-by: Shi-Sheng Yang <james1qaz2wsx12qw@gmail.com>
@visitorckw visitorckw force-pushed the fix-alignment-exception branch from cb3dd06 to ec18ba5 Compare January 2, 2024 18:06
@jserv jserv requested a review from qwe661234 January 2, 2024 18:12
@visitorckw visitorckw force-pushed the fix-alignment-exception branch 2 times, most recently from 0e1e363 to cc5fbad Compare January 3, 2024 07:24
@visitorckw visitorckw force-pushed the fix-alignment-exception branch from cc5fbad to f43ec4b Compare January 3, 2024 14:58
@@ -346,13 +350,7 @@ static block_t *block_find(const block_map_t *map, const uint32_t addr)

FORCE_INLINE bool insn_is_misaligned(uint32_t pc)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if insn_is_misaligned is really used via macro expansion or not. Can you check?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I inserted a fprintf statement inside insn_is_misaligned() to verify if the function is being executed. It should not run during make ENABLE_EXT_C=1 check but should run during make ENABLE_EXT_C=0 check. My experimental results align with my expectations.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then, insn_is_misaligned should be conditionally built, depending on the configurations.

@jserv jserv requested a review from qwe661234 January 4, 2024 13:14
@visitorckw visitorckw force-pushed the fix-alignment-exception branch from f43ec4b to 7a3740a Compare January 4, 2024 13:59
@jserv
Copy link
Contributor

jserv commented Jan 4, 2024

I tried executing the command make ENABLE_EXT_C=0 ENABLE_JIT=1 clean all, but it resulted in the following errors:

In file included from src/jit.c:1314:
src/rv32_jit.c:609:50: error: no member named 'shamt' in 'struct rv_insn'
emit_alu32_imm8(state, 0xc1, 5, temp_reg[0], ir->shamt);
                                             ~~  ^
src/jit.c:1312:9: note: expanded from macro 'GEN'
        code;                                                                 \
        ^~~~
In file included from src/jit.c:1314:
src/rv32_jit.c:614:50: error: no member named 'shamt' in 'struct rv_insn'
emit_alu32_imm8(state, 0xc1, 7, temp_reg[0], ir->shamt);
                                             ~~  ^
src/jit.c:1312:9: note: expanded from macro 'GEN'
        code;                                                                 \
        ^~~~
2 errors generated.
make: *** [build/jit.o] Error 1

@qwe661234, can you help confirm?

According to the riscv-spec-v2.2 Chapter 12 page 67 [1], under the C
extension, jump-related instructions should not trigger any misaligned
instruction address exceptions. However, the current implementation
checks whether the instruction address is aligned to 16-bit, which is
incorrect and could potentially cause a performance hit.

This patch eliminates unnecessary misalignment checks for jump
instructions when the C extension is enabled, aligning the behavior
with the expected specification.

Link: https://riscv.org/wp-content/uploads/2017/05/riscv-spec-v2.2.pdf [1]
@visitorckw visitorckw force-pushed the fix-alignment-exception branch from 7a3740a to 43d8615 Compare January 4, 2024 14:30
@visitorckw
Copy link
Collaborator Author

I tried executing the command make ENABLE_EXT_C=0 ENABLE_JIT=1 clean all, but it resulted in the following errors:

In file included from src/jit.c:1314:
src/rv32_jit.c:609:50: error: no member named 'shamt' in 'struct rv_insn'
emit_alu32_imm8(state, 0xc1, 5, temp_reg[0], ir->shamt);
                                             ~~  ^
src/jit.c:1312:9: note: expanded from macro 'GEN'
        code;                                                                 \
        ^~~~
In file included from src/jit.c:1314:
src/rv32_jit.c:614:50: error: no member named 'shamt' in 'struct rv_insn'
emit_alu32_imm8(state, 0xc1, 7, temp_reg[0], ir->shamt);
                                             ~~  ^
src/jit.c:1312:9: note: expanded from macro 'GEN'
        code;                                                                 \
        ^~~~
2 errors generated.
make: *** [build/jit.o] Error 1

@qwe661234, can you help confirm?

The current master branch also encounters the same error.

@jserv
Copy link
Contributor

jserv commented Jan 4, 2024

The current master branch also encounters the same error.

Let's create an issue which describes the above build failure.

@jserv jserv merged commit 4e00b03 into sysprog21:master Jan 4, 2024
@jserv
Copy link
Contributor

jserv commented Jan 4, 2024

Thank @visitorckw for contributing!

@visitorckw visitorckw deleted the fix-alignment-exception branch January 4, 2024 14:55
vestata pushed a commit to vestata/rv32emu that referenced this pull request Jan 24, 2025
Fix alignment exceptions issue for F and C extensions
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants