-
-
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 setvl instructions
https://libre-soc.org/openpower/sv/ https://libre-soc.org/openpower/sv/setvl/ https://libre-soc.org/openpower/isa/simplev/
- Loading branch information
1 parent
59f0827
commit 5eafd6d
Showing
4 changed files
with
46 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,15 @@ | ||
#as: -mlibresoc | ||
#objdump: -dr -Mlibresoc | ||
|
||
.*: file format .* | ||
|
||
|
||
Disassembly of section \.text: | ||
0+ <\.text>: | ||
.*: (37 00 00 58|58 00 00 37) setvl. r0,r0,1,0,0,0 | ||
.*: (36 00 00 58|58 00 00 36) setvl r0,r0,1,0,0,0 | ||
.*: (36 00 e0 5b|5b e0 00 36) setvl r31,r0,1,0,0,0 | ||
.*: (36 00 1f 58|58 1f 00 36) setvl r0,r31,1,0,0,0 | ||
.*: (36 7e 00 58|58 00 7e 36) setvl r0,r0,64,0,0,0 | ||
.*: (76 00 00 58|58 00 00 76) setvl r0,r0,1,1,0,0 | ||
.*: (b6 00 00 58|58 00 00 b6) setvl r0,r0,1,0,1,0 |
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,7 @@ | ||
setvl. 0,0,1,0,0,0 | ||
setvl 0,0,1,0,0,0 | ||
setvl 31,0,1,0,0,0 | ||
setvl 0,31,1,0,0,0 | ||
setvl 0,0,64,0,0,0 | ||
setvl 0,0,1,1,0,0 | ||
setvl 0,0,1,0,1,0 |
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