-
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.
'--permissive-dual-issue' now disallows two enabled load/store.
This is because implemented allowing that in hardware would be difficult.
- Loading branch information
Showing
3 changed files
with
15 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
# | ||
# Tests can have store and load enabled at the same time | ||
# Tests two enabled loads and stores in the same bundle | ||
# | ||
|
||
.word 60; | ||
addi r1 = r0, DUMMY1; | ||
addi r2 = r0, DUMMY2; | ||
addi r3 = r0, 456; | ||
pand p3 = p0, p0 | ||
(p3) swm [r2] = r3 || (p0) lwm r4 = [r1] | ||
lwm r5 = [r2] | ||
.word 100; | ||
addi r1 = r0, dummy; | ||
pand p7 = p0, p0; | ||
(p7) lwc r3 = [0] || (p7) swc [0] = r2; | ||
halt; | ||
nop; | ||
nop; | ||
nop; | ||
dummy: .word 0; | ||
|
||
DUMMY1: .word 123; | ||
DUMMY2: .word 0; |