[test] Pre-commit llvm.experimental.memset.pattern tests prior to MemoryLocation...
[llvm-project.git] / llvm / test / CodeGen / ARM / Windows / alloca.ll
blobe014d287db6e908d9e5d7f7952327a5354102b64
1 ; RUN: llc -O0 -mtriple thumbv7-windows-itanium -filetype asm -o - %s | FileCheck %s
2 ; RUN: llc -O0 -mtriple thumbv7-windows-msvc -filetype asm -o - %s | FileCheck %s
3 ; RUN: llc -O0 -mtriple thumbv7-windows-mingw32 -filetype asm -o - %s | FileCheck %s
5 declare arm_aapcs_vfpcc i32 @num_entries()
7 define arm_aapcs_vfpcc void @test___builtin_alloca() {
8 entry:
9   %array = alloca ptr, align 4
10   %call = call arm_aapcs_vfpcc i32 @num_entries()
11   %mul = mul i32 4, %call
12   %0 = alloca i8, i32 %mul
13   store ptr %0, ptr %array, align 4
14   ret void
17 ; CHECK: bl num_entries
18 ; Any register is actually valid here, but turns out we use lr,
19 ; because we do not have the kill flag on R0.
20 ; CHECK: mov [[R0:r[0-9]+]], r0
21 ; CHECK: movs [[R1:r[0-9]+]], #7
22 ; CHECK: add.w [[R2:r[0-9]+]], [[R1]], [[R0]], lsl #2
23 ; CHECK: bic [[R2]], [[R2]], #4
24 ; CHECK: lsrs r4, [[R2]], #2
25 ; CHECK: bl __chkstk
26 ; CHECK: sub.w sp, sp, r4