projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6db1761
)
arch-power: Updated Store instructions
author
kajoljain379
<kajoljain797@gmail.com>
Tue, 19 Mar 2019 08:38:24 +0000
(14:08 +0530)
committer
Kajol Jain
<kajoljain797@gmail.com>
Wed, 12 Jun 2019 07:08:38 +0000
(12:38 +0530)
Change-Id: I3eb0f5adbcce13cf586755fa62c7ca1d7aa80089
Signed-off-by: kajoljain379 <kajoljain797@gmail.com>
src/arch/power/isa/decoder.isa
patch
|
blob
|
history
diff --git
a/src/arch/power/isa/decoder.isa
b/src/arch/power/isa/decoder.isa
index 5419755642dc2354252fd3586e9ba1d203a8708d..92e1f7712766d8f3a2355e81afa165886673a082 100644
(file)
--- a/
src/arch/power/isa/decoder.isa
+++ b/
src/arch/power/isa/decoder.isa
@@
-216,13
+216,13
@@
decode PO default Unknown::unknown() {
format StoreDispOp {
38: stb({{ Mem_ub = Rs_ub; }});
44: sth({{ Mem_uh = Rs_uh; }});
- 36: stw({{ Mem = Rs_uw; }});
+ 36: stw({{ Mem
_uw
= Rs_uw; }});
}
format StoreDispUpdateOp {
39: stbu({{ Mem_ub = Rs_ub; }});
45: sthu({{ Mem_uh = Rs_uh; }});
- 37: stwu({{ Mem = Rs_uw; }});
+ 37: stwu({{ Mem
_uw
= Rs_uw; }});
}
format IntImmArithCheckRaOp {