1 ; RUN: llc < %s -mtriple=x86_64-linux -stack-size-section | FileCheck %s --check-prefix=CHECK --check-prefix=GROUPS
3 ; PS4 'as' does not recognize the section attribute "o". So we have a simple .stack_sizes section on PS4.
4 ; RUN: llc < %s -mtriple=x86_64-scei-ps4 -stack-size-section | FileCheck %s --check-prefix=CHECK --check-prefix=NOGROUPS
7 ; CHECK-NEXT: .Lfunc_begin0:
8 ; GROUPS: .section .stack_sizes,"o",@progbits,.text{{$}}
9 ; NOGROUPS: .section .stack_sizes,"",@progbits
10 ; CHECK-NEXT: .quad .Lfunc_begin0
12 define void @func1(i32, i32) #0 {
19 ; CHECK-NEXT: .Lfunc_begin1:
20 ; GROUPS: .section .stack_sizes,"o",@progbits,.text{{$}}
21 ; NOGROUPS: .section .stack_sizes,"",@progbits
22 ; CHECK-NEXT: .quad .Lfunc_begin1
23 ; CHECK-NEXT: .byte 24
24 define void @func2() #0 {
26 call void @func1(i32 1, i32 2)
30 ; Check that we still put .stack_sizes into the corresponding COMDAT group if any.
31 ; CHECK: .section .text._Z4fooTIiET_v,"axG",@progbits,_Z4fooTIiET_v,comdat
32 ; GROUPS: .section .stack_sizes,"Go",@progbits,_Z4fooTIiET_v,comdat,.text._Z4fooTIiET_v{{$}}
33 ; NOGROUPS: .section .stack_sizes,"",@progbits
34 $_Z4fooTIiET_v = comdat any
35 define linkonce_odr dso_local i32 @_Z4fooTIiET_v() comdat {
39 ; CHECK: .section .text.func3,"ax",@progbits
40 ; GROUPS: .section .stack_sizes,"o",@progbits,.text.func3{{$}}
41 ; NOGROUPS: .section .stack_sizes,"",@progbits
42 define dso_local i32 @func3() section ".text.func3" {
43 %1 = alloca i32, align 4
44 store i32 0, ptr %1, align 4
48 ; CHECK-LABEL: dynalloc:
49 ; CHECK-NOT: .section .stack_sizes
50 define void @dynalloc(i32 %N) #0 {
55 attributes #0 = { "frame-pointer"="all" }