mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[ARM] do not consider sp as deprecated for ldm/stm
Early versions of the ARMv7 reference manuals considered the sp register as a deprecated register for ldm/stm familiy of instructions. However, later versions such as ARM DDI 0406C.d added a note to the Appendix: D9.3 Use of the SP as a general-purpose register Most ARM instructions, unlike Thumb instructions, provide exactly the same access to the SP as to R0-R12. This means that it is possible to use the SP as a general-purpose register. Earlier issues of this manual deprecated the use of SP in an ARM instruction, in any way that is deprecated, not permitted, or not possible in the corresponding Thumb instruction. However, user feedback indicates a number of cases where these instructions are useful. Therefore, ARM no longer deprecates these instruction uses. Also Armv8 manuals no longer consider SP as deprecated register for ldm/ stm A32 instructions. Furthermore, GNU as also does not print a deprecated warning when using SP with those instructions. Drop deprecation warning for pop/ldm/push/stm instructions. Patch by: Stefan Agner. Differential Revision: https://reviews.llvm.org/D82692
This commit is contained in:
parent
0f4c2ea58a
commit
821541ceec
@ -107,9 +107,8 @@ static bool getARMStoreDeprecationInfo(MCInst &MI, const MCSubtargetInfo &STI,
|
|||||||
assert(MI.getNumOperands() >= 4 && "expected >= 4 arguments");
|
assert(MI.getNumOperands() >= 4 && "expected >= 4 arguments");
|
||||||
for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) {
|
for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) {
|
||||||
assert(MI.getOperand(OI).isReg() && "expected register");
|
assert(MI.getOperand(OI).isReg() && "expected register");
|
||||||
if (MI.getOperand(OI).getReg() == ARM::SP ||
|
if (MI.getOperand(OI).getReg() == ARM::PC) {
|
||||||
MI.getOperand(OI).getReg() == ARM::PC) {
|
Info = "use of PC in the list is deprecated";
|
||||||
Info = "use of SP or PC in the list is deprecated";
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -134,9 +133,6 @@ static bool getARMLoadDeprecationInfo(MCInst &MI, const MCSubtargetInfo &STI,
|
|||||||
case ARM::PC:
|
case ARM::PC:
|
||||||
ListContainsPC = true;
|
ListContainsPC = true;
|
||||||
break;
|
break;
|
||||||
case ARM::SP:
|
|
||||||
Info = "use of SP in the list is deprecated";
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// REQUIRES: asserts
|
// REQUIRES: asserts
|
||||||
// RUN: llvm-mc < %s -triple=armv4t-linux-gnueabi -filetype=obj -o %t.o -no-deprecated-warn -stats 2>&1 | FileCheck %s
|
// RUN: llvm-mc < %s -triple=armv4t-linux-gnueabi -filetype=obj -o %t.o -no-deprecated-warn -stats 2>&1 | FileCheck %s
|
||||||
// RUN: llvm-mc < %s -triple=armv4t-linux-gnueabi -filetype=obj -o %t.o 2>&1 | FileCheck %s -check-prefix=WARN
|
// RUN: llvm-mc < %s -triple=armv4t-linux-gnueabi -filetype=obj -o %t.o -stats 2>&1 | FileCheck %s
|
||||||
|
|
||||||
.text
|
.text
|
||||||
.syntax unified
|
.syntax unified
|
||||||
|
@ -4,6 +4,9 @@
|
|||||||
@ RUN: | FileCheck -check-prefix CHECK-ERROR %s
|
@ RUN: | FileCheck -check-prefix CHECK-ERROR %s
|
||||||
|
|
||||||
@ RUN: not llvm-mc -triple armv7-linux-eabi -filetype asm -o - %s 2>&1 \
|
@ RUN: not llvm-mc -triple armv7-linux-eabi -filetype asm -o - %s 2>&1 \
|
||||||
|
@ RUN: | FileCheck %s -check-prefix CHECK -check-prefix CHECK-V7
|
||||||
|
|
||||||
|
@ RUN: not llvm-mc -triple armv8-linux-eabi -filetype asm -o - %s 2>&1 \
|
||||||
@ RUN: | FileCheck %s -check-prefix CHECK -check-prefix CHECK-V7
|
@ RUN: | FileCheck %s -check-prefix CHECK -check-prefix CHECK-V7
|
||||||
|
|
||||||
.syntax unified
|
.syntax unified
|
||||||
@ -13,114 +16,81 @@
|
|||||||
.type stm,%function
|
.type stm,%function
|
||||||
stm:
|
stm:
|
||||||
stm sp!, {r0, pc}
|
stm sp!, {r0, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK-ERROR: error: use of SP or PC in the list is deprecated
|
@ CHECK-ERROR: error: use of PC in the list is deprecated
|
||||||
@ CHECK: stm sp!, {r0, pc}
|
@ CHECK: stm sp!, {r0, pc}
|
||||||
@ CHECK: ^
|
|
||||||
stm r0!, {r0, sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK-ERROR: error: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stm r0!, {r0, sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stm r1!, {r0, sp, pc}
|
stm r1!, {r0, sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stm r1!, {r0, sp, pc}
|
@ CHECK: stm r1!, {r0, sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stm r2!, {sp, pc}
|
stm r2!, {sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stm r2!, {sp, pc}
|
@ CHECK: stm r2!, {sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stm sp!, {pc}
|
stm sp!, {pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stm sp!, {pc}
|
@ CHECK: stm sp!, {pc}
|
||||||
@ CHECK: ^
|
|
||||||
stm r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stm r0!, {sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
|
|
||||||
.global stmda
|
.global stmda
|
||||||
.type stmda,%function
|
.type stmda,%function
|
||||||
stmda:
|
stmda:
|
||||||
stmda sp!, {r0, pc}
|
stmda sp!, {r0, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmda sp!, {r0, pc}
|
@ CHECK: stmda sp!, {r0, pc}
|
||||||
@ CHECK: ^
|
|
||||||
stmda r0!, {r0, sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stmda r0!, {r0, sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmda r1!, {r0, sp, pc}
|
stmda r1!, {r0, sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmda r1!, {r0, sp, pc}
|
@ CHECK: stmda r1!, {r0, sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmda r2!, {sp, pc}
|
stmda r2!, {sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmda r2!, {sp, pc}
|
@ CHECK: stmda r2!, {sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmda sp!, {pc}
|
stmda sp!, {pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmda sp!, {pc}
|
@ CHECK: stmda sp!, {pc}
|
||||||
@ CHECK: ^
|
|
||||||
stmda r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stmda r0!, {sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
|
|
||||||
.global stmdb
|
.global stmdb
|
||||||
.type stmdb,%function
|
.type stmdb,%function
|
||||||
stmdb:
|
stmdb:
|
||||||
stmdb sp!, {r0, pc}
|
stmdb sp!, {r0, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmdb sp!, {r0, pc}
|
@ CHECK: stmdb sp!, {r0, pc}
|
||||||
@ CHECK: ^
|
|
||||||
stmdb r0!, {r0, sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stmdb r0!, {r0, sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmdb r1!, {r0, sp, pc}
|
stmdb r1!, {r0, sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmdb r1!, {r0, sp, pc}
|
@ CHECK: stmdb r1!, {r0, sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmdb r2!, {sp, pc}
|
stmdb r2!, {sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmdb r2!, {sp, pc}
|
@ CHECK: stmdb r2!, {sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmdb sp!, {pc}
|
stmdb sp!, {pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmdb sp!, {pc}
|
@ CHECK: stmdb sp!, {pc}
|
||||||
@ CHECK: ^
|
|
||||||
stmdb r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stmdb r0!, {sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
|
|
||||||
.global stmib
|
.global stmib
|
||||||
.type stmib,%function
|
.type stmib,%function
|
||||||
stmib:
|
stmib:
|
||||||
stmib sp!, {r0, pc}
|
stmib sp!, {r0, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmib sp!, {r0, pc}
|
@ CHECK: stmib sp!, {r0, pc}
|
||||||
@ CHECK: ^
|
|
||||||
stmib r0!, {r0, sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stmib r0!, {r0, sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmib r1!, {r0, sp, pc}
|
stmib r1!, {r0, sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmib r1!, {r0, sp, pc}
|
@ CHECK: stmib r1!, {r0, sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmib r2!, {sp, pc}
|
stmib r2!, {sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmib r2!, {sp, pc}
|
@ CHECK: stmib r2!, {sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
stmib sp!, {pc}
|
stmib sp!, {pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: stmib sp!, {pc}
|
@ CHECK: stmib sp!, {pc}
|
||||||
@ CHECK: ^
|
|
||||||
stmib r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: stmib r0!, {sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
|
|
||||||
|
|
||||||
@ -128,37 +98,25 @@ stmib:
|
|||||||
.type push,%function
|
.type push,%function
|
||||||
push:
|
push:
|
||||||
push {r0, pc}
|
push {r0, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: push {r0, pc}
|
@ CHECK: push {r0, pc}
|
||||||
@ CHECK: ^
|
|
||||||
push {r0, sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: push {r0, sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
push {r0, sp, pc}
|
push {r0, sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: push {r0, sp, pc}
|
@ CHECK: push {r0, sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
push {sp, pc}
|
push {sp, pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: push {sp, pc}
|
@ CHECK: push {sp, pc}
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
push {pc}
|
push {pc}
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
@ CHECK: warning: use of PC in the list is deprecated
|
||||||
@ CHECK: push {pc}
|
@ CHECK: push {pc}
|
||||||
@ CHECK: ^
|
|
||||||
push {sp}
|
|
||||||
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
||||||
@ CHECK: push {sp}
|
|
||||||
@ CHECK: ^
|
@ CHECK: ^
|
||||||
|
|
||||||
.global ldm
|
.global ldm
|
||||||
.type ldm,%function
|
.type ldm,%function
|
||||||
ldm:
|
ldm:
|
||||||
ldm r0!, {r1, sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldm r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldm r0!, {r1, lr, pc}
|
ldm r0!, {r1, lr, pc}
|
||||||
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
||||||
ldm r0!, {lr, pc}
|
ldm r0!, {lr, pc}
|
||||||
@ -167,10 +125,6 @@ ldm:
|
|||||||
.global ldmda
|
.global ldmda
|
||||||
.type ldmda,%function
|
.type ldmda,%function
|
||||||
ldmda:
|
ldmda:
|
||||||
ldmda r0!, {r1, sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldmda r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldmda r0!, {r1, lr, pc}
|
ldmda r0!, {r1, lr, pc}
|
||||||
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
||||||
ldmda r0!, {lr, pc}
|
ldmda r0!, {lr, pc}
|
||||||
@ -179,10 +133,6 @@ ldmda:
|
|||||||
.global ldmdb
|
.global ldmdb
|
||||||
.type ldmdb,%function
|
.type ldmdb,%function
|
||||||
ldmdb:
|
ldmdb:
|
||||||
ldmdb r0!, {r1, sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldmdb r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldmdb r0!, {r1, lr, pc}
|
ldmdb r0!, {r1, lr, pc}
|
||||||
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
||||||
ldmdb r0!, {lr, pc}
|
ldmdb r0!, {lr, pc}
|
||||||
@ -191,10 +141,6 @@ ldmdb:
|
|||||||
.global ldmib
|
.global ldmib
|
||||||
.type ldmib,%function
|
.type ldmib,%function
|
||||||
ldmib:
|
ldmib:
|
||||||
ldmib r0!, {r1, sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldmib r0!, {sp}
|
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
ldmib r0!, {r1, lr, pc}
|
ldmib r0!, {r1, lr, pc}
|
||||||
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
||||||
ldmib r0!, {lr, pc}
|
ldmib r0!, {lr, pc}
|
||||||
@ -204,23 +150,69 @@ ldmib:
|
|||||||
.type pop,%function
|
.type pop,%function
|
||||||
pop:
|
pop:
|
||||||
pop {r0, sp}
|
pop {r0, sp}
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
@ CHECK-V7: error: writeback register not allowed in register list
|
@ CHECK-V7: error: writeback register not allowed in register list
|
||||||
pop {sp}
|
pop {sp}
|
||||||
@ CHECK: warning: use of SP in the list is deprecated
|
|
||||||
@ CHECK-V7: error: writeback register not allowed in register list
|
@ CHECK-V7: error: writeback register not allowed in register list
|
||||||
pop {r0, lr, pc}
|
pop {r0, lr, pc}
|
||||||
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
||||||
pop {lr, pc}
|
pop {lr, pc}
|
||||||
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
@ CHECK: warning: use of LR and PC simultaneously in the list is deprecated
|
||||||
|
|
||||||
.global valid
|
.global valid_stm
|
||||||
.type valid,%function
|
.type valid,%function
|
||||||
valid:
|
valid_stm:
|
||||||
|
stm r0!, {r0, sp}
|
||||||
|
@ CHECK: stm r0!, {r0, sp}
|
||||||
|
stm r0!, {sp}
|
||||||
|
@ CHECK: stm r0!, {sp}
|
||||||
|
stmda r0!, {r0, sp}
|
||||||
|
@ CHECK: stmda r0!, {r0, sp}
|
||||||
|
stmda r0!, {sp}
|
||||||
|
@ CHECK: stmda r0!, {sp}
|
||||||
|
stmdb r0!, {r0, sp}
|
||||||
|
@ CHECK: stmdb r0!, {r0, sp}
|
||||||
|
stmdb r0!, {sp}
|
||||||
|
@ CHECK: stmdb r0!, {sp}
|
||||||
|
stmib r0!, {r0, sp}
|
||||||
|
@ CHECK: stmib r0!, {r0, sp}
|
||||||
|
stmib r0!, {sp}
|
||||||
|
@ CHECK: stmib r0!, {sp}
|
||||||
stmdaeq r0, {r0}
|
stmdaeq r0, {r0}
|
||||||
@ CHECK: stmdaeq r0, {r0}
|
@ CHECK: stmdaeq r0, {r0}
|
||||||
|
|
||||||
|
.global valid_push
|
||||||
|
.type valid,%function
|
||||||
|
valid_push:
|
||||||
|
push {r0, sp}
|
||||||
|
@ CHECK: push {r0, sp}
|
||||||
|
push {sp}
|
||||||
|
@ CHECK: push {sp}
|
||||||
|
|
||||||
|
.global valid_ldm
|
||||||
|
.type valid,%function
|
||||||
|
valid_ldm:
|
||||||
|
ldm r0!, {r1, sp}
|
||||||
|
@ CHECK: ldm r0!, {r1, sp}
|
||||||
|
ldm r0!, {sp}
|
||||||
|
@ CHECK: ldm r0!, {sp}
|
||||||
|
ldmda r0!, {r1, sp}
|
||||||
|
@ CHECK: ldmda r0!, {r1, sp}
|
||||||
|
ldmda r0!, {sp}
|
||||||
|
@ CHECK: ldmda r0!, {sp}
|
||||||
|
ldmdb r0!, {r1, sp}
|
||||||
|
@ CHECK: ldmdb r0!, {r1, sp}
|
||||||
|
ldmdb r0!, {sp}
|
||||||
|
@ CHECK: ldmdb r0!, {sp}
|
||||||
|
ldmib r0!, {r1, sp}
|
||||||
|
@ CHECK: ldmib r0!, {r1, sp}
|
||||||
|
ldmib r0!, {sp}
|
||||||
|
@ CHECK: ldmib r0!, {sp}
|
||||||
ldmdaeq r0, {r0}
|
ldmdaeq r0, {r0}
|
||||||
@ CHECK: ldmdaeq r0, {r0}
|
@ CHECK: ldmdaeq r0, {r0}
|
||||||
|
|
||||||
|
.global valid_pop
|
||||||
|
.type valid,%function
|
||||||
|
valid_pop:
|
||||||
pop {r0, pc}
|
pop {r0, pc}
|
||||||
@ CHECK: pop {r0, pc}
|
@ CHECK: pop {r0, pc}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user