mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
5b59e688d3
Summary: For artificial cases (huge array, few usages), Global SRA optimization creates a lot of redundant data. It creates an instance of GlobalVariable for each array element. For huge array, that means huge compilation time and huge memory usage. Following example compiles for 10 minutes and requires 40GB of memory. namespace { char LargeBuffer[64 * 1024 * 1024]; } int main ( void ) { LargeBuffer[0] = 0; printf("\n "); return LargeBuffer[0] == 0; } The fix is to avoid Global SRA for large arrays. Reviewers: craig.topper, rnk, efriedma, fhahn Reviewed By: rnk Subscribers: xbolva00, lebedev.ri, lkail, merge_guards_bot, hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D71993
62 lines
1.6 KiB
LLVM
62 lines
1.6 KiB
LLVM
; RUN: opt %s --O0 -globalopt -S -o -
|
|
|
|
; This is a regression test against very slow execution...
|
|
; In bad case it should fail by timeout.
|
|
|
|
; Hand-reduced from this example.
|
|
; clang++ -mllvm -disable-llvm-optzns
|
|
|
|
;#include <stdio.h>
|
|
;
|
|
;namespace {
|
|
; char LargeBuffer[64 * 1024 * 1024];
|
|
;}
|
|
;
|
|
;int main ( void ) {
|
|
;
|
|
; LargeBuffer[0] = 0;
|
|
;
|
|
; printf("");
|
|
;
|
|
; return LargeBuffer[0] == 0;
|
|
;}
|
|
|
|
; check that global array LargeBufferE was optimized out
|
|
; and local variable LargeBufferE.0 was used instead.
|
|
|
|
; CHECK-NOT: global
|
|
; CHECK: main()
|
|
; CHECK-NEXT: LargeBufferE.0
|
|
; CHECK-NOT: global
|
|
|
|
; ModuleID = 'test.cpp'
|
|
source_filename = "test.cpp"
|
|
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
@LargeBufferE = internal global [67108864 x i8] zeroinitializer, align 16
|
|
@.str = private unnamed_addr constant [1 x i8] c"\00", align 1
|
|
|
|
; Function Attrs: norecurse uwtable
|
|
define dso_local i32 @main() #0 {
|
|
%1 = alloca i32, align 4
|
|
store i32 0, i32* %1, align 4
|
|
store i8 0, i8* getelementptr inbounds ([67108864 x i8], [67108864 x i8]* @LargeBufferE, i64 0, i64 0), align 16
|
|
%2 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([1 x i8], [1 x i8]* @.str, i64 0, i64 0))
|
|
%3 = load i8, i8* getelementptr inbounds ([67108864 x i8], [67108864 x i8]* @LargeBufferE, i64 0, i64 0), align 16
|
|
%4 = sext i8 %3 to i32
|
|
%5 = icmp eq i32 %4, 0
|
|
%6 = zext i1 %5 to i32
|
|
ret i32 %6
|
|
}
|
|
|
|
declare dso_local i32 @printf(i8*, ...) #0
|
|
|
|
attributes #0 = { norecurse uwtable }
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!llvm.ident = !{!1}
|
|
|
|
!0 = !{i32 1, !"wchar_size", i32 4}
|
|
!1 = !{!"clang version 10.0.0 "}
|