2013-07-04 00:41:29 +08:00
|
|
|
@ RUN: not llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
|
2013-04-10 20:08:35 +08:00
|
|
|
@ RUN: llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=trustzone < %s | FileCheck %s -check-prefix=TZ
|
2015-10-29 21:56:19 +08:00
|
|
|
@ RUN: not llvm-mc -triple=thumbv6kz -mcpu=arm1176jzf-s -show-encoding < %s | FileCheck %s -check-prefix=NOTZ
|
2013-04-10 20:08:35 +08:00
|
|
|
|
|
|
|
.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
|
2017-02-28 18:04:36 +08:00
|
|
|
it eq
|
2013-04-10 20:08:35 +08:00
|
|
|
smceq #0
|
|
|
|
|
|
|
|
@ NOTZ-NOT: smc #15
|
|
|
|
@ NOTZ-NOT: smceq #0
|
|
|
|
@ TZ: smc #15 @ encoding: [0xff,0xf7,0x00,0x80]
|
2017-02-28 18:04:36 +08:00
|
|
|
@ TZ: it eq @ encoding: [0x08,0xbf]
|
2013-04-10 20:08:35 +08:00
|
|
|
@ TZ: smceq #0 @ encoding: [0xf0,0xf7,0x00,0x80]
|