-
-
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 svstep instructions
https://libre-soc.org/openpower/sv/ https://libre-soc.org/openpower/sv/svstep/ https://libre-soc.org/openpower/isa/simplev/
- Loading branch information
1 parent
5eafd6d
commit 4c388a8
Showing
4 changed files
with
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,3 +156,4 @@ run_dump_test "pr27676" | |
run_dump_test "raw" | ||
|
||
run_dump_test "setvl" | ||
run_dump_test "svstep" |
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 @@ | ||
#as: -mlibresoc | ||
#objdump: -dr -Mlibresoc | ||
|
||
.*: file format .* | ||
|
||
|
||
Disassembly of section \.text: | ||
0+ <\.text>: | ||
.*: (27 00 00 58|58 00 00 27) svstep. r0,1,0 | ||
.*: (26 00 00 58|58 00 00 26) svstep r0,1,0 | ||
.*: (26 00 e0 5b|5b e0 00 26) svstep r31,1,0 | ||
.*: (26 7e 00 58|58 00 7e 26) svstep r0,64,0 | ||
.*: (66 00 00 58|58 00 00 66) svstep r0,1,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,5 @@ | ||
svstep. 0,1,0 | ||
svstep 0,1,0 | ||
svstep 31,1,0 | ||
svstep 0,64,0 | ||
svstep 0,1,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