1 ; RUN: llc -mtriple=thumbv7-netbsd-eabi -o - %s | FileCheck %s
4 ; ARM's frame lowering attempts to tack another callee-saved register onto the
5 ; list when it detects a potential misaligned VFP store. However, if there are
6 ; none available it used to just vpush anyway and misreport the location of the
7 ; registers in unwind info. Since there are benefits to aligned stores, it's
8 ; better to correct the code than the .cfi_offset directive.
10 define void @test_dpr_align(i8 %l, i8 %r) {
11 ; CHECK-LABEL: test_dpr_align:
12 ; CHECK: push.w {r4, r5, r6, r7, r8, r9, r10, r11, lr}
13 ; CHECK: .cfi_def_cfa_offset 36
15 ; CHECK: .cfi_def_cfa_offset 40
17 ; CHECK: .cfi_offset d8, -48
24 ; CHECK: pop.w {r4, r5, r6, r7, r8, r9, r10, r11, pc}
25 call void asm sideeffect "", "~{r4},~{r5},~{r6},~{r7},~{r8},~{r9},~{r10},~{r11},~{d8}"()
30 ; The prologue (but not the epilogue) can be made more space efficient by
31 ; chucking an argument register into the list. Not worth it in general though,
32 ; "sub sp, #4" is likely faster.
33 define void @test_dpr_align_tiny(i8 %l, i8 %r) minsize {
34 ; CHECK-LABEL: test_dpr_align_tiny:
35 ; CHECK: push.w {r3, r4, r5, r6, r7, r8, r9, r10, r11, lr}
38 ; CHECK: .cfi_offset d8, -48
45 ; CHECK: pop.w {r4, r5, r6, r7, r8, r9, r10, r11, pc}
46 call void asm sideeffect "", "~{r4},~{r5},~{r6},~{r7},~{r8},~{r9},~{r10},~{r11},~{d8}"()
52 ; However, we shouldn't do a 2-step align/adjust if there are no DPRs to be
54 define void @test_nodpr_noalign(i8 %l, i8 %r) {
55 ; CHECK-LABEL: test_nodpr_noalign:
56 ; CHECK: push.w {r4, r5, r6, r7, r8, r9, r10, r11, lr}
65 ; CHECK: pop.w {r4, r5, r6, r7, r8, r9, r10, r11, pc}
67 call void asm sideeffect "", "~{r4},~{r5},~{r6},~{r7},~{r8},~{r9},~{r10},~{r11}"()
72 define void @test_frame_pointer_offset() minsize "no-frame-pointer-elim"="true" {
73 ; CHECK-LABEL: test_frame_pointer_offset:
74 ; CHECK: push.w {r3, r4, r5, r6, r7, r8, r9, r10, r11, lr}
75 ; CHECK: .cfi_def_cfa_offset 40
76 ; CHECK: add r7, sp, #16
77 ; CHECK: .cfi_def_cfa r7, 24
78 ; CHECK-NOT: .cfi_def_cfa_offset
79 call void asm sideeffect "", "~{r4},~{r5},~{r6},~{r7},~{r8},~{r9},~{r10},~{r11},~{d8}"()