• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2 | FileCheck %s
2target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f128:64:128-n32"
3
4define i64 @foo() nounwind {
5entry:
6  %x = alloca [32568 x i8]
7  %"alloca point" = bitcast i32 0 to i32
8  %x1 = bitcast [32568 x i8]* %x to i8*
9
10; Check that the RS spill slot has been allocated (because the estimate
11; will fail the small-frame-size check and the function has spills).
12; CHECK: @foo
13; CHECK: stdu 1, -32768(1)
14
15  %s1 = call i64 @bar(i8* %x1) nounwind
16  %s2 = call i64 @bar(i8* %x1) nounwind
17  %s3 = call i64 @bar(i8* %x1) nounwind
18  %s4 = call i64 @bar(i8* %x1) nounwind
19  %s5 = call i64 @bar(i8* %x1) nounwind
20  %s6 = call i64 @bar(i8* %x1) nounwind
21  %s7 = call i64 @bar(i8* %x1) nounwind
22  %s8 = call i64 @bar(i8* %x1) nounwind
23  %r = call i64 @can(i64 %s1, i64 %s2, i64 %s3, i64 %s4, i64 %s5, i64 %s6, i64 %s7, i64 %s8) nounwind
24  br label %return
25
26return:
27  ret i64 %r
28}
29
30declare i64 @bar(i8*)
31declare i64 @can(i64, i64, i64, i64, i64, i64, i64, i64)
32
33