summaryrefslogtreecommitdiff
path: root/src/arch/arm/isa/formats/mem.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-06-21 09:16:55 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-06-21 09:16:55 -0700
commit19a1966079442ccbcda70c33bbcead7abb609985 (patch)
tree772ed176ba82a30a8166543c484d5363b29f0085 /src/arch/arm/isa/formats/mem.isa
parente1eacc8d92498f29a43b427e314c95798d70a080 (diff)
downloadgem5-19a1966079442ccbcda70c33bbcead7abb609985.tar.xz
ARM: Get rid of unused postacc_code.
Diffstat (limited to 'src/arch/arm/isa/formats/mem.isa')
-rw-r--r--src/arch/arm/isa/formats/mem.isa20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/arch/arm/isa/formats/mem.isa b/src/arch/arm/isa/formats/mem.isa
index 0c736f947..df1d067dc 100644
--- a/src/arch/arm/isa/formats/mem.isa
+++ b/src/arch/arm/isa/formats/mem.isa
@@ -358,20 +358,12 @@ def template StoreMemAccExecute {{
EA = xc->getEA();
if (fault == NoFault) {
- %(postacc_code)s;
- }
-
- if (fault == NoFault) {
fault = xc->write((uint%(mem_acc_size)d_t&)Mem, EA,
memAccessFlags, NULL);
if (traceData) { traceData->setData(Mem); }
}
if (fault == NoFault) {
- %(postacc_code)s;
- }
-
- if (fault == NoFault) {
%(op_wb)s;
}
}
@@ -406,10 +398,6 @@ def template StoreExecute {{
}
if (fault == NoFault) {
- %(postacc_code)s;
- }
-
- if (fault == NoFault) {
%(op_wb)s;
}
}
@@ -466,10 +454,6 @@ def template StoreCompleteAcc {{
if (arm_predicate(xc->readMiscReg(ArmISA::CPSR), condCode))
{
if (fault == NoFault) {
- %(postacc_code)s;
- }
-
- if (fault == NoFault) {
%(op_wb)s;
}
}
@@ -491,10 +475,6 @@ def template StoreCondCompleteAcc {{
if (arm_predicate(xc->readMiscReg(ArmISA::CPSR), condCode))
{
if (fault == NoFault) {
- %(postacc_code)s;
- }
-
- if (fault == NoFault) {
%(op_wb)s;
}
}