| |||
| Home > ARM and Thumb Instructions > Coprocessor instructions > SYS | |||
Execute system coprocessor instruction.
SYS{cond}instruction{,Rn}
where:
condis an optional condition code.
instructionis the coprocessor instruction to execute.
Rnis an operand to the instruction. For instructions
that take an argument, is compulsory.
For instructions that do not take an argument, Rn is
optional and if it is not specified, RnR0 is used. R must
not be PC.n
You can use this instruction to execute special coprocessor instructions such as cache, branch predictor, and TLB operations. The instructions operate by writing to special write-only coprocessor registers. The instruction names are the same as the write-only coprocessor register names and are listed in the ARMv7-AR Architecture Reference Manual. For example:
SYS ICIALLUIS ; invalidates all instruction caches Inner Shareable to Point
; of Unification and also flushes branch target cache.
The SYS ARM instruction is available in ARMv7-A
and ARMv7-R.
The SYS 32-bit Thumb instruction is available
in ARMv7-A and ARMv7-R.
There are no 16-bit Thumb versions of these instructions.