-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SROA: Check Total Bits of vector type
While Promoting alloca instruction of Vector Type, Check total size in bits of its slices too. If they don't match, don't promote the alloca instruction. Bug : https://bugs.llvm.org/show_bug.cgi?id=42585 llvm-svn: 372480
- Loading branch information
1 parent
c62136e
commit cd629ea
Showing
2 changed files
with
32 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
24 changes: 24 additions & 0 deletions
24
llvm/test/Transforms/SROA/vector-promotion-different-size.ll
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 @@ | ||
; RUN: opt < %s -sroa -S | FileCheck %s | ||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-n8:16:32:64" | ||
|
||
define <4 x i1> @vector_bitcast() { | ||
; CHECK-LABEL: @vector_bitcast | ||
; CHECK: alloca i1 | ||
|
||
%a = alloca <3 x i1> | ||
store <3 x i1> <i1 1,i1 0,i1 1>, <3 x i1>* %a | ||
%cast = bitcast <3 x i1>* %a to <4 x i1>* | ||
%vec = load <4 x i1>, <4 x i1>* %cast | ||
ret <4 x i1> %vec | ||
} | ||
|
||
define void @vector_bitcast_2() { | ||
; CHECK-LABEL: @vector_bitcast_2 | ||
; CHECK: alloca <32 x i16> | ||
|
||
%"sum$1.host2" = alloca <32 x i16> | ||
store <32 x i16> undef, <32 x i16>* %"sum$1.host2" | ||
%bc = bitcast <32 x i16>* %"sum$1.host2" to <64 x i16>* | ||
%bcl = load <64 x i16>, <64 x i16>* %bc | ||
ret void | ||
} |