[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v6 25/38] target/arm: cpu: fix style
From: |
Claudio Fontana |
Subject: |
[RFC v6 25/38] target/arm: cpu: fix style |
Date: |
Thu, 11 Mar 2021 14:30:13 +0100 |
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
target/arm/cpu-sysemu.c | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/target/arm/cpu-sysemu.c b/target/arm/cpu-sysemu.c
index 126263dbf4..eb928832a9 100644
--- a/target/arm/cpu-sysemu.c
+++ b/target/arm/cpu-sysemu.c
@@ -372,7 +372,8 @@ int sve_exception_el(CPUARMState *env, int el)
if (el <= 1 && (hcr_el2 & (HCR_E2H | HCR_TGE)) != (HCR_E2H | HCR_TGE)) {
bool disabled = false;
- /* The CPACR.ZEN controls traps to EL1:
+ /*
+ * The CPACR.ZEN controls traps to EL1:
* 0, 2 : trap EL0 and EL1 accesses
* 1 : trap only EL0 accesses
* 3 : trap no accesses
@@ -398,7 +399,8 @@ int sve_exception_el(CPUARMState *env, int el)
}
}
- /* CPTR_EL2. Since TZ and TFP are positive,
+ /*
+ * CPTR_EL2. Since TZ and TFP are positive,
* they will be zero when EL2 is not present.
*/
if (el <= 2 && arm_is_el2_enabled(env)) {
@@ -625,10 +627,11 @@ static void arm_cpu_do_interrupt_aarch32(CPUState *cs)
new_mode = ARM_CPU_MODE_UND;
addr = 0x04;
mask = CPSR_I;
- if (env->thumb)
+ if (env->thumb) {
offset = 2;
- else
+ } else {
offset = 4;
+ }
break;
case EXCP_SWI:
new_mode = ARM_CPU_MODE_SVC;
@@ -714,7 +717,8 @@ static void arm_cpu_do_interrupt_aarch32(CPUState *cs)
/* High vectors. When enabled, base address cannot be remapped. */
addr += 0xffff0000;
} else {
- /* ARM v7 architectures provide a vector base address register to remap
+ /*
+ * ARM v7 architectures provide a vector base address register to remap
* the interrupt vector table.
* This register is only followed in non-monitor mode, and is banked.
* Note: only bits 31:5 are valid.
@@ -1013,7 +1017,8 @@ void arm_log_exception(int idx)
}
}
-/* Handle a CPU exception for A and R profile CPUs.
+/*
+ * Handle a CPU exception for A and R profile CPUs.
* Do any appropriate logging, handle PSCI calls, and then hand off
* to the AArch64-entry or AArch32-entry function depending on the
* target exception level's register width.
--
2.26.2
- [RFC v6 07/38] target/arm: move physical address translation to cpu-mmu, (continued)
- [RFC v6 07/38] target/arm: move physical address translation to cpu-mmu, Claudio Fontana, 2021/03/11
- [RFC v6 12/38] target/arm: only perform TCG cpu and machine inits if TCG enabled, Claudio Fontana, 2021/03/11
- [RFC v6 16/38] target/arm: split vfp state setting from tcg helpers, Claudio Fontana, 2021/03/11
- [RFC v6 10/38] target/arm: cpregs: fix style (mostly just comments), Claudio Fontana, 2021/03/11
- [RFC v6 14/38] target/arm: move cpsr_read, cpsr_write to cpu_common, Claudio Fontana, 2021/03/11
- [RFC v6 17/38] target/arm: move arm_mmu_idx* to cpu-mmu, Claudio Fontana, 2021/03/11
- [RFC v6 15/38] target/arm: add temporary stub for arm_rebuild_hflags, Claudio Fontana, 2021/03/11
- [RFC v6 09/38] target/arm: split cpregs from tcg/helper.c, Claudio Fontana, 2021/03/11
- [RFC v6 19/38] target/arm: move arm_sctlr away from tcg helpers, Claudio Fontana, 2021/03/11
- [RFC v6 23/38] target/arm: move sve_exception_el out of TCG helpers, Claudio Fontana, 2021/03/11
- [RFC v6 25/38] target/arm: cpu: fix style,
Claudio Fontana <=
- [RFC v6 24/38] target/arm: refactor exception and cpu code, Claudio Fontana, 2021/03/11
- [RFC v6 26/38] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(), Claudio Fontana, 2021/03/11
- [RFC v6 20/38] target/arm: move arm_cpu_list to common_cpu, Claudio Fontana, 2021/03/11
- [RFC v6 18/38] target/arm: move sve_zcr_len_for_el to common_cpu, Claudio Fontana, 2021/03/11
- [RFC v6 21/38] target/arm: move aarch64_sync_32_to_64 (and vv) to cpu code, Claudio Fontana, 2021/03/11
- [RFC v6 27/38] target/arm: remove kvm include file for PSCI and arm-powerctl, Claudio Fontana, 2021/03/11
- [RFC v6 22/38] target/arm: split a15 cpu model and 32bit class functions to cpu32.c, Claudio Fontana, 2021/03/11
- [RFC v6 28/38] target/arm: move kvm-const.h, kvm.c, kvm64.c, kvm_arm.h to kvm/, Claudio Fontana, 2021/03/11
- [RFC v6 32/38] tests: restrict TCG-only arm-cpu-features tests to TCG builds, Claudio Fontana, 2021/03/11