mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-08 13:00:43 +00:00
84f76e4fbf
Summary: Make sure that any new and optimized objects created during GlobalOPT copy all the attributes from the base object. A good example of improper behavior in the current implementation is section information associated with the GlobalObject. If a section was set for it, and GlobalOpt is creating/modifying a new object based on this one (often copying the original name), without this change new object will be placed in a default section, resulting in inappropriate properties of the new variable. The argument here is that if customer specified a section for a variable, any changes to it that compiler does should not cause it to change that section allocation. Moreover, any other properties worth representation in copyAttributesFrom() should also be propagated. Reviewers: jmolloy, joker-eph, joker.eph Subscribers: slarin, joker.eph, rafael, tobiasvk, llvm-commits Differential Revision: http://reviews.llvm.org/D16074 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258556 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
930 B
LLVM
28 lines
930 B
LLVM
; Verify that section assignment is copied during SROA
|
|
; RUN: opt < %s -globalopt -S | FileCheck %s
|
|
; CHECK: @G.0
|
|
; CHECK: section ".foo"
|
|
; CHECK: @G.1
|
|
; CHECK: section ".foo"
|
|
; CHECK: @G.2
|
|
; CHECK: section ".foo"
|
|
|
|
%T = type { double, double, double }
|
|
@G = internal global %T zeroinitializer, align 16, section ".foo"
|
|
|
|
define void @test() {
|
|
store double 1.0, double* getelementptr (%T, %T* @G, i32 0, i32 0), align 16
|
|
store double 2.0, double* getelementptr (%T, %T* @G, i32 0, i32 1), align 8
|
|
store double 3.0, double* getelementptr (%T, %T* @G, i32 0, i32 2), align 16
|
|
ret void
|
|
}
|
|
|
|
define double @test2() {
|
|
%V1 = load double, double* getelementptr (%T, %T* @G, i32 0, i32 0), align 16
|
|
%V2 = load double, double* getelementptr (%T, %T* @G, i32 0, i32 1), align 8
|
|
%V3 = load double, double* getelementptr (%T, %T* @G, i32 0, i32 2), align 16
|
|
%R = fadd double %V1, %V2
|
|
%R2 = fadd double %R, %V3
|
|
ret double %R2
|
|
}
|