-
-
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.
ppc/svp64: support svremap instruction
https://libre-soc.org/openpower/sv/ https://libre-soc.org/openpower/sv/remap/#svremap https://libre-soc.org/openpower/isa/simplev/
- Loading branch information
1 parent
baf97ef
commit df0030b
Showing
4 changed files
with
45 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#as: -mlibresoc | ||
#objdump: -dr -Mlibresoc | ||
|
||
.*: file format .* | ||
|
||
|
||
Disassembly of section \.text: | ||
0+ <\.text>: | ||
.*: (39 00 00 58|58 00 00 39) svremap 0,0,0,0,0,0,0 | ||
.*: (39 00 e0 5b|5b e0 00 39) svremap 31,0,0,0,0,0,0 | ||
.*: (39 00 18 58|58 18 00 39) svremap 0,3,0,0,0,0,0 | ||
.*: (39 00 06 58|58 06 00 39) svremap 0,0,3,0,0,0,0 | ||
.*: (39 80 01 58|58 01 80 39) svremap 0,0,0,3,0,0,0 | ||
.*: (39 60 00 58|58 00 60 39) svremap 0,0,0,0,3,0,0 | ||
.*: (39 18 00 58|58 00 18 39) svremap 0,0,0,0,0,3,0 | ||
.*: (39 04 18 58|58 18 04 39) svremap 0,3,0,0,0,0,1 |
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,8 @@ | ||
svremap 0,0,0,0,0,0,0 | ||
svremap 31,0,0,0,0,0,0 | ||
svremap 0,3,0,0,0,0,0 | ||
svremap 0,0,3,0,0,0,0 | ||
svremap 0,0,0,3,0,0,0 | ||
svremap 0,0,0,0,3,0,0 | ||
svremap 0,0,0,0,0,3,0 | ||
svremap 0,3,0,0,0,0,1 |
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