As a result of -ftrivial-auto-var-init, clang generates instructions to
set alloca'd memory to a given pattern, right after the allocation site.
In some cases, this (somehow costly) operation could be delayed, leading
to conditional execution in some cases.
This is not an uncommon situation: it happens ~500 times on the cPython
code base, and much more on the LLVM codebase. The benefit greatly
varies on the execution path, but it should not regress on performance.
This is a recommit of cca01008cc with
MemorySSA update fixes.
Differential Revision: https://reviews.llvm.org/D137707
71 lines
2.3 KiB
LLVM
71 lines
2.3 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt < %s -S -passes='move-auto-init' -verify-memoryssa | FileCheck %s
|
|
|
|
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
; In that case, the store to %val happens before the fence and cannot go past
|
|
; it.
|
|
define void @foo(i32 %x) {
|
|
; CHECK-LABEL: @foo(
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: [[VAL:%.*]] = alloca i32, align 4
|
|
; CHECK-NEXT: store i32 -1431655766, ptr [[VAL]], align 4, !annotation !0
|
|
; CHECK-NEXT: [[TOBOOL:%.*]] = icmp ne i32 [[X:%.*]], 0
|
|
; CHECK-NEXT: fence acquire
|
|
; CHECK-NEXT: br i1 [[TOBOOL]], label [[IF_THEN:%.*]], label [[IF_END:%.*]]
|
|
; CHECK: if.then:
|
|
; CHECK-NEXT: call void @dump(ptr [[VAL]])
|
|
; CHECK-NEXT: br label [[IF_END]]
|
|
; CHECK: if.end:
|
|
; CHECK-NEXT: ret void
|
|
;
|
|
entry:
|
|
%val = alloca i32, align 4
|
|
store i32 -1431655766, ptr %val, align 4, !annotation !0
|
|
%tobool = icmp ne i32 %x, 0
|
|
fence acquire
|
|
br i1 %tobool, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
call void @dump(ptr %val)
|
|
br label %if.end
|
|
|
|
if.end: ; preds = %if.then, %entry
|
|
ret void
|
|
}
|
|
|
|
; In that case, the store to %val happens after the fence and it is moved within
|
|
; the true branch as expected.
|
|
define void @bar(i32 %x) {
|
|
; CHECK-LABEL: @bar(
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: [[VAL:%.*]] = alloca i32, align 4
|
|
; CHECK-NEXT: [[TOBOOL:%.*]] = icmp ne i32 [[X:%.*]], 0
|
|
; CHECK-NEXT: fence acquire
|
|
; CHECK-NEXT: br i1 [[TOBOOL]], label [[IF_THEN:%.*]], label [[IF_END:%.*]]
|
|
; CHECK: if.then:
|
|
; CHECK-NEXT: store i32 -1431655766, ptr [[VAL]], align 4, !annotation !0
|
|
; CHECK-NEXT: call void @dump(ptr [[VAL]])
|
|
; CHECK-NEXT: br label [[IF_END]]
|
|
; CHECK: if.end:
|
|
; CHECK-NEXT: ret void
|
|
;
|
|
entry:
|
|
%val = alloca i32, align 4
|
|
%tobool = icmp ne i32 %x, 0
|
|
fence acquire
|
|
store i32 -1431655766, ptr %val, align 4, !annotation !0
|
|
br i1 %tobool, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
call void @dump(ptr %val)
|
|
br label %if.end
|
|
|
|
if.end: ; preds = %if.then, %entry
|
|
ret void
|
|
}
|
|
|
|
declare void @dump(ptr)
|
|
|
|
!0 = !{!"auto-init"}
|