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:41:04 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-06-21 09:41:04 -0700
commit5bc137305071d7fe3dd0adbd5f7472535b614693 (patch)
tree2681f0e9d25b96b7de5bfe75b8edbe9eb686fdd8 /src/arch/arm/isa/formats/mem.isa
parent39647097111575c57f4e8eb528059d300fd99df0 (diff)
downloadgem5-5bc137305071d7fe3dd0adbd5f7472535b614693.tar.xz
ARM: Get rid of unnecessary fp_enable_checks.
Diffstat (limited to 'src/arch/arm/isa/formats/mem.isa')
-rw-r--r--src/arch/arm/isa/formats/mem.isa12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/arch/arm/isa/formats/mem.isa b/src/arch/arm/isa/formats/mem.isa
index c5453ec48..c8696cc7f 100644
--- a/src/arch/arm/isa/formats/mem.isa
+++ b/src/arch/arm/isa/formats/mem.isa
@@ -211,7 +211,6 @@ def template EACompExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
%(ea_code)s;
@@ -236,7 +235,6 @@ def template LoadMemAccExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
EA = xc->getEA();
@@ -265,7 +263,6 @@ def template LoadExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
%(ea_code)s;
@@ -294,7 +291,6 @@ def template LoadInitiateAcc {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_src_decl)s;
%(op_rd)s;
%(ea_code)s;
@@ -318,7 +314,6 @@ def template LoadCompleteAcc {{
{
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
@@ -349,7 +344,6 @@ def template StoreMemAccExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
@@ -380,7 +374,6 @@ def template StoreExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
%(ea_code)s;
@@ -413,7 +406,6 @@ def template StoreInitiateAcc {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
%(ea_code)s;
@@ -448,7 +440,6 @@ def template StoreCompleteAcc {{
{
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_dest_decl)s;
if (%(predicate_test)s)
@@ -469,7 +460,6 @@ def template StoreCondCompleteAcc {{
{
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_dest_decl)s;
if (%(predicate_test)s)
@@ -491,7 +481,6 @@ def template MiscMemAccExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
@@ -515,7 +504,6 @@ def template MiscExecute {{
Addr EA;
Fault fault = NoFault;
- %(fp_enable_check)s;
%(op_decl)s;
%(op_rd)s;
%(ea_code)s;