-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[X86] Add huge-stack.ll test coverage from #84114
Ensure we have -verify-machineinstrs to avoid EXPENSIVE_CHECKS fails
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |