dev-arm: Move GICv2 intConfig for consistency
authorGiacomo Travaglini <giacomo.travaglini@arm.com>
Tue, 7 Jul 2020 09:10:09 +0000 (10:10 +0100)
committerGiacomo Travaglini <giacomo.travaglini@arm.com>
Sat, 11 Jul 2020 07:50:24 +0000 (07:50 +0000)
Every other helper is placed below the respective array storage

JIRA: https://gem5.atlassian.net/browse/GEM5-667

Change-Id: I398ac23eb68d84a8e0ed856550bfac8e403a86b3
Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/31054
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/dev/arm/gic_v2.cc
src/dev/arm/gic_v2.hh

index 4ef15173dd474b96aa28cc3a71cb4743331f72ca..3213379375a01952028bf06da5afead6c6d34414 100644 (file)
@@ -72,7 +72,7 @@ GicV2::GicV2(const Params *p)
       enabled(false), haveGem5Extensions(p->gem5_extensions),
       itLines(p->it_lines),
       intEnabled {}, pendingInt {}, activeInt {},
-      intPriority {}, cpuTarget {}, intConfig {},
+      intPriority {}, intConfig {}, cpuTarget {},
       cpuSgiPending {}, cpuSgiActive {},
       cpuSgiPendingExt {}, cpuSgiActiveExt {},
       cpuPpiPending {}, cpuPpiActive {},
index 600f9afa80725c814ecb6d6069c9f1426738f700..40a95539c9173f3a6568a5a2ca55e271158d8da2 100644 (file)
@@ -281,6 +281,10 @@ class GicV2 : public BaseGic, public BaseGicRegisters
         }
     }
 
+    /** 2 bit per interrupt signaling if it's level or edge sensitive
+     * and if it is 1:N or N:N */
+    uint32_t intConfig[INT_BITS_MAX*2];
+
     /** GICD_ICFGRn
      * get 2 bit config associated to an interrupt.
      */
@@ -319,10 +323,6 @@ class GicV2 : public BaseGic, public BaseGicRegisters
         }
     }
 
-    /** 2 bit per interrupt signaling if it's level or edge sensitive
-     * and if it is 1:N or N:N */
-    uint32_t intConfig[INT_BITS_MAX*2];
-
     bool isLevelSensitive(ContextID ctx, uint32_t ix) {
         if (ix == SPURIOUS_INT) {
             return false;