-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This pull has added complete support for the MOVSX (Move with sign extension) instruction, since this instruction exhibits very similar encodings to the previously implemented MOVSX instruction, many encoding functionality and encoder tables can be *shared* (Such as pre-processors and opcods) Although this pull is listed as only adding support for the MOVSX instruction, this pull has also renamed the `pre_movzx` pre-proces- or function `pre_small_operands` to better encapsulate its behavior and allowing cross-usage to other instruction enocder tables.
- Loading branch information
1 parent
e77c0da
commit 466a2b0
Showing
3 changed files
with
6 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,7 @@ enum instructions { | |
INSTR_INT, | ||
INSTR_SYSCALL, | ||
INSTR_MOVZX, | ||
INSTR_MOVSX, | ||
|
||
INSTR_DUMMY, | ||
|
||
|
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