forked from sysprog21/rv32emu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jit: Fix float-point instruction (sysprog21#172)
This commit modifies the file src/softfloat.h, which is then traced in the gen-jit script to include an enumeration for floating-point instructions. Moreover, the data structure of riscv_internal is updated to streamline the definition of JIT code generation. To improve efficiency and codebase clarity, the fields necessary for JIT are relocated to the top of the data structure. Close sysprog21#169
- Loading branch information
Yen-Fu Chen
committed
Aug 14, 2023
1 parent
5208f60
commit 34b7057
Showing
6 changed files
with
77 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -394,4 +394,4 @@ uint32_t csr_csrrc(riscv_t *rv, uint32_t csr, uint32_t val) | |
*c &= ~val; | ||
return out; | ||
} | ||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters