-
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.
Compile TCG runtime library only once
Signed-off-by: Blue Swirl <[email protected]>
- Loading branch information
Showing
5 changed files
with
21 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef TCG_RUNTIME_H | ||
#define TCG_RUNTIME_H | ||
|
||
/* tcg-runtime.c */ | ||
int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2); | ||
int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2); | ||
int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2); | ||
int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2); | ||
int64_t tcg_helper_rem_i64(int64_t arg1, int64_t arg2); | ||
uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2); | ||
uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2); | ||
|
||
#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