summaryrefslogtreecommitdiff
path: root/test/MC/ARM/arm-thumb-trustzone.s
blob: 7755a3c8e69b185c3ee67e4cc18933f18de1d451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@ RUN: not llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
@ RUN: llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=trustzone < %s | FileCheck %s -check-prefix=TZ

  .syntax unified
  .globl _func

@ Check that the assembler processes SMC instructions when TrustZone support is 
@ active and that it rejects them when this feature is not enabled

_func:
@ CHECK: _func


@------------------------------------------------------------------------------
@ SMC
@------------------------------------------------------------------------------
        smc #0xf
        ite eq
        smceq #0

@ NOTZ-NOT: smc 	#15
@ NOTZ-NOT: smceq	#0
@ TZ: smc	#15                     @ encoding: [0xff,0xf7,0x00,0x80]
@ TZ: ite	eq                      @ encoding: [0x0c,0xbf]
@ TZ: smceq	#0                      @ encoding: [0xf0,0xf7,0x00,0x80]