-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further refined the requirements on '--permissive-dual-issue'
Now also cannot bundle two main-memory operations and two stack operations.
- Loading branch information
Showing
8 changed files
with
207 additions
and
53 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
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,26 @@ | ||
# | ||
# Tests main-memory store bundled with call (both enabled) | ||
# | ||
|
||
.word 60; | ||
addi r1 = r0, 123; | ||
addi r2 = r0, dummy; | ||
addi r3 = r0, 456; | ||
addi r4 = r0, 0; | ||
addi r5 = r0, 0; | ||
callnd call_tar || swm [r2] = r3; | ||
addi r5 = r0, 789; | ||
halt; | ||
nop; | ||
nop; | ||
nop; | ||
|
||
.word 20 | ||
call_tar: | ||
lwm r4 = [r2]; | ||
retnd; | ||
nop; | ||
nop; | ||
nop; | ||
dummy: .word 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,20 @@ | ||
# | ||
# Tests load bundled with branch with cache fill (both enabled) | ||
# | ||
|
||
.word 60; | ||
addi r2 = r0, dummy; | ||
brcf br_tar || lwc r3 = [r2]; | ||
nop; | ||
nop; | ||
nop; | ||
halt; | ||
|
||
.word 20 | ||
br_tar: | ||
halt; | ||
nop; | ||
nop; | ||
nop; | ||
dummy: .word 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,20 @@ | ||
# | ||
# Tests branch bundled with call (both enabled) | ||
# | ||
|
||
.word 60; | ||
pand p1 = p0, p0 | ||
call br_tar || br br_tar; | ||
nop; | ||
nop; | ||
nop; | ||
halt; | ||
|
||
.word 20 | ||
br_tar: | ||
halt; | ||
nop; | ||
nop; | ||
nop; | ||
dummy: .word 0; | ||
|
Oops, something went wrong.