projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c7c681
)
arch-power: Updated Store instructions
author
kajoljain379
<kajoljain797@gmail.com>
Tue, 19 Mar 2019 08:38:24 +0000
(14:08 +0530)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 24 Jan 2021 03:59:26 +0000
(
03:59
+0000)
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 a2f12b42726985fa94a7447e5ea6217bf90c75e0..01562cadf2016fa9f886ac1ebcb7254ab1d4f9a1 100644
(file)
--- a/
src/arch/power/isa/decoder.isa
+++ b/
src/arch/power/isa/decoder.isa
@@
-214,13
+214,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 {