summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2019-11-26 22:41:40 +0200
committerMartin Storsjö <martin@martin.st>2019-11-27 10:44:42 +0200
commit943513b79929fba1a9dccdf81cb68a41ce29cd03 (patch)
tree244f8ba550bd47d75d2e626a2d5a3d74197a3639 /llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll
parent344bdeb797b31bb99158010f255a7219fe77e2ec (diff)
downloadbcm5719-llvm-943513b79929fba1a9dccdf81cb68a41ce29cd03.tar.gz
bcm5719-llvm-943513b79929fba1a9dccdf81cb68a41ce29cd03.zip
[X86] [Win64] Avoid truncating large (> 32 bit) stack allocations
This fixes PR44129, which was broken in a7adc3185b (in 7.0.0 and newer). Differential Revision: https://reviews.llvm.org/D70741
Diffstat (limited to 'llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll')
-rw-r--r--llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll b/llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll
new file mode 100644
index 00000000000..9555ce032db
--- /dev/null
+++ b/llvm/test/CodeGen/X86/win64-stackprobe-overflow.ll
@@ -0,0 +1,14 @@
+; RUN: llc < %s -mtriple=x86_64-windows-gnu | FileCheck %s
+
+define void @foo() unnamed_addr #0 {
+start:
+ %b = alloca i64, align 8
+ %c = alloca [4294967295 x i8], align 1
+ ret void
+}
+
+attributes #0 = { nonlazybind uwtable "probe-stack"="probe_stack" "target-cpu"="x86-64" }
+
+; CHECK-LABEL: foo:
+; CHECK: movabsq $4294967304, %rax
+; CHECK-NEXT: callq probe_stack
OpenPOWER on IntegriCloud