Skip to content

Commit

Permalink
[X86] Add huge-stack.ll test coverage from #84114
Browse files Browse the repository at this point in the history
Ensure we have -verify-machineinstrs to avoid EXPENSIVE_CHECKS fails
  • Loading branch information
RKSimon committed Jul 15, 2024
1 parent eb656ea commit 054d7b1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions llvm/test/CodeGen/X86/huge-stack.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --no_x86_scrub_sp --version 4
; RUN: llc -O0 -mtriple=x86_64 -verify-machineinstrs < %s | FileCheck %s --check-prefix=CHECK
%large = type [4294967295 x i8]

define void @foo() unnamed_addr #0 {
; CHECK-LABEL: foo:
; CHECK: # %bb.0:
; CHECK-NEXT: movabsq $8589934462, %rax # imm = 0x1FFFFFF7E
; CHECK-NEXT: subq %rax, %rsp
; CHECK-NEXT: .cfi_def_cfa_offset -122
; CHECK-NEXT: movb $42, -129(%rsp)
; CHECK-NEXT: movb $43, -128(%rsp)
; CHECK-NEXT: movabsq $8589934462, %rax # imm = 0x1FFFFFF7E
; CHECK-NEXT: addq %rax, %rsp
; CHECK-NEXT: .cfi_def_cfa_offset 8
; CHECK-NEXT: retq
%1 = alloca %large, align 1
%2 = alloca %large, align 1
%3 = getelementptr inbounds %large, ptr %1, i64 0, i64 0
store i8 42, ptr %3, align 1
%4 = getelementptr inbounds %large, ptr %2, i64 0, i64 0
store i8 43, ptr %4, align 1
ret void
}

0 comments on commit 054d7b1

Please sign in to comment.