mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-28 08:16:14 +00:00

An ELFObjectFile can now create SubtargetFeatures from the available ARM build attributes, in a similar manner to MIPS. I've moved the MIPS code into its own function and the ARM handler also has a separate function. Differential Revision: https://reviews.llvm.org/D28291 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@292403 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
567 B
ArmAsm
21 lines
567 B
ArmAsm
@ RUN: llvm-mc < %s -triple armv7r -mattr=+hwdiv-arm -filetype=obj | llvm-objdump -triple=thumb -d - | FileCheck %s
|
|
@ RUN: llvm-mc < %s -triple armv7r -mattr=+hwdiv-arm -filetype=obj | llvm-objdump -triple=arm -d - | FileCheck %s --check-prefix=CHECK-ARM
|
|
|
|
.eabi_attribute Tag_CPU_arch, 10 // v7
|
|
.eabi_attribute Tag_CPU_arch_profile, 0x52 // 'R' profile
|
|
|
|
.arm
|
|
div_arm:
|
|
udiv r0, r1, r2
|
|
|
|
@CHECK-LABEL: div_arm
|
|
@CHECK-NOT: udiv r0, r1, r2
|
|
@CHECK-ARM-NOT: udiv r0, r1, r2
|
|
|
|
.thumb
|
|
div_thumb:
|
|
udiv r0, r1, r2
|
|
|
|
@CHECK-LABEL: div_thumb
|
|
@CHECK: b1 fb f2 f0 udiv r0, r1, r2
|