Streaming Vector Control Register
Allows access to the Streaming SVE mode in PSTATE.SM, and the SME storage enable in PSTATE.ZA.
This register is present only when FEAT_SME is implemented and FEAT_AA64 is implemented. Otherwise, direct accesses to SVCR are UNDEFINED.
This register is a Special-purpose register.
SVCR is a 64-bit register.
| 63 | 62 | 61 | 60 | 59 | 58 | 57 | 56 | 55 | 54 | 53 | 52 | 51 | 50 | 49 | 48 | 47 | 46 | 45 | 44 | 43 | 42 | 41 | 40 | 39 | 38 | 37 | 36 | 35 | 34 | 33 | 32 |
| 31 | 30 | 29 | 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
| RES0 | |||||||||||||||||||||||||||||||
| RES0 | ZA | SM | |||||||||||||||||||||||||||||
Reserved, RES0.
Access to PSTATE.ZA, SME storage enable.
When this storage is disabled, execution of an instruction which can access it is trapped. The exception is reported using an ESR_ELx.{EC, SMTC} value of {0x1D, 0x3}.
The possible values of this bit are:
| ZA | Meaning |
|---|---|
| 0b0 | SME ZA storage and, if implemented, ZT0 storage are invalid and not accessible. This control causes execution at any Exception level of instructions that can access this storage to be trapped. |
| 0b1 | SME ZA storage and, if implemented, ZT0 storage are valid and accessible. This control does not cause execution of any instructions to be trapped. |
When a write to SVCR.ZA changes the value of PSTATE.ZA from 0 to 1, all implemented bits of the storage are set to zero.
Changes to this field do not have an effect on the SVE vector and predicate registers and FPSR.
A direct or indirect read of ZA appears to occur in program order relative to a direct write of SVCR, and to MSR SVCRZA and MSR SVCRSMZA instructions, without the need for explicit synchronization.
The reset behavior of this field is:
Access to PSTATE.SM, Streaming SVE mode.
When the PE is in Streaming SVE mode, the Streaming SVE vector length (SVL) applies to SVE instructions, and execution at any Exception level of an instruction which is illegal in that mode is trapped. The exception is reported using an ESR_ELx.{EC, SMTC} value of {0x1D, 0x1}.
When the PE is not in Streaming SVE mode, the SVE vector length (VL) applies to SVE instructions, and execution at any Exception level of an instruction which is only legal in that mode is trapped. The exception is reported using an ESR_ELx.{EC, SMTC} value of {0x1D, 0x2}.
The possible values of this bit are:
| SM | Meaning |
|---|---|
| 0b0 |
The PE is not in Streaming SVE mode. |
| 0b1 |
The PE is in Streaming SVE mode. |
When a write to SVCR.SM changes the value of PSTATE.SM, the following applies:
Changes to this field do not have an effect on SME ZA storage or, if implemented, ZT0 storage.
A direct or indirect read of SM appears to occur in program order relative to a direct write of SVCR, and to MSR SVCRSM and MSR SVCRSMZA instructions, without the need for explicit synchronization.
The reset behavior of this field is:
SVCR is read/write and can be accessed from any Exception level.
Accesses to this register use the following encodings in the System register encoding space:
MRS <Xt>, SVCR
(op0 = 0b11, op1 = 0b011, CRn = 0b0100, CRm = 0b0010, op2 = 0b010)
if !(IsFeatureImplemented(FEAT_SME) && IsFeatureImplemented(FEAT_AA64)) then Undefined(); elsif HaveEL(EL3) && PSTATE.EL != EL3 && EL3SDDUndefPriority() && CPTR_EL3().ESM == '0' then Undefined(); elsif PSTATE.EL == EL0 then if EffectivelyAtEL0NotInHost() && CPACR_EL1().SMEN != '11' then AArch64_SystemAccessTraptoEL1orEL2(0x1D); elsif EffectivelyAtEL0InHost() && CPTR_EL2().SMEN != '11' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif ELIsInHost(EL2) && CPTR_EL2().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL2, 0x1D); elsif EL2Enabled() && !ELIsInHost(EL2) && CPTR_EL2().TSM == '1' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif HaveEL(EL3) && CPTR_EL3().ESM == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x1D); end; else X{64}(t) = SVCR(); end; elsif PSTATE.EL == EL1 then if CPACR_EL1().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL1, 0x1D); elsif EL2Enabled() && !ELIsInHost(EL2) && CPTR_EL2().TSM == '1' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif ELIsInHost(EL2) && CPTR_EL2().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL2, 0x1D); elsif HaveEL(EL3) && CPTR_EL3().ESM == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x1D); end; else X{64}(t) = SVCR(); end; elsif PSTATE.EL == EL2 then if !ELIsInHost(EL2) && CPTR_EL2().TSM == '1' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif ELIsInHost(EL2) && CPTR_EL2().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL2, 0x1D); elsif HaveEL(EL3) && CPTR_EL3().ESM == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x1D); end; else X{64}(t) = SVCR(); end; elsif PSTATE.EL == EL3 then if CPTR_EL3().ESM == '0' then AArch64_SystemAccessTrap(EL3, 0x1D); else X{64}(t) = SVCR(); end; end;
MSR SVCR, <Xt>
(op0 = 0b11, op1 = 0b011, CRn = 0b0100, CRm = 0b0010, op2 = 0b010)
if !(IsFeatureImplemented(FEAT_SME) && IsFeatureImplemented(FEAT_AA64)) then Undefined(); elsif HaveEL(EL3) && PSTATE.EL != EL3 && EL3SDDUndefPriority() && CPTR_EL3().ESM == '0' then Undefined(); elsif PSTATE.EL == EL0 then if EffectivelyAtEL0NotInHost() && CPACR_EL1().SMEN != '11' then AArch64_SystemAccessTraptoEL1orEL2(0x1D); elsif EffectivelyAtEL0InHost() && CPTR_EL2().SMEN != '11' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif ELIsInHost(EL2) && CPTR_EL2().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL2, 0x1D); elsif EL2Enabled() && !ELIsInHost(EL2) && CPTR_EL2().TSM == '1' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif HaveEL(EL3) && CPTR_EL3().ESM == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x1D); end; else SVCR() = X{64}(t); end; elsif PSTATE.EL == EL1 then if CPACR_EL1().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL1, 0x1D); elsif EL2Enabled() && !ELIsInHost(EL2) && CPTR_EL2().TSM == '1' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif ELIsInHost(EL2) && CPTR_EL2().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL2, 0x1D); elsif HaveEL(EL3) && CPTR_EL3().ESM == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x1D); end; else SVCR() = X{64}(t); end; elsif PSTATE.EL == EL2 then if !ELIsInHost(EL2) && CPTR_EL2().TSM == '1' then AArch64_SystemAccessTrap(EL2, 0x1D); elsif ELIsInHost(EL2) && CPTR_EL2().SMEN IN {'x0'} then AArch64_SystemAccessTrap(EL2, 0x1D); elsif HaveEL(EL3) && CPTR_EL3().ESM == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x1D); end; else SVCR() = X{64}(t); end; elsif PSTATE.EL == EL3 then if CPTR_EL3().ESM == '0' then AArch64_SystemAccessTrap(EL3, 0x1D); else SVCR() = X{64}(t); end; end;
MSR SVCRSM, #<imm>
(op0 = 0b00, op1 = 0b011, CRn = 0b0100, CRm = 0b001x, op2 = 0b011)
MSR SVCRZA, #<imm>
(op0 = 0b00, op1 = 0b011, CRn = 0b0100, CRm = 0b010x, op2 = 0b011)
MSR SVCRSMZA, #<imm>
(op0 = 0b00, op1 = 0b011, CRn = 0b0100, CRm = 0b011x, op2 = 0b011)
Version 2026.06 — Copyright © 2010-2026 Arm Limited or its affiliates.
This site is provided as a community resource and is NOT affiliated with nor endorsed by Arm Limited.