-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TTI] Fix cast cost on vector types.
- Only split vector types when both src and dst types are splittable.
- Loading branch information
Showing
3 changed files
with
27 additions
and
3 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
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,21 @@ | ||
; RUN: opt -licm -mtriple=amdgcn -S -o - %s | FileCheck %s | ||
|
||
; CHECK-LABEL: foo | ||
; CHECK: ret | ||
define void @foo(i8* %d, <1 x i32>* %s, i32 %idx) { | ||
entry: | ||
br label %for.body | ||
|
||
for.body: | ||
%v0 = load <1 x i32>, <1 x i32>* %s | ||
%v1 = bitcast <1 x i32> %v0 to <4 x i8> | ||
br label %for.cond | ||
|
||
for.cond: | ||
%e0 = extractelement <4 x i8> %v1, i32 %idx | ||
store i8 %e0, i8* %d | ||
br i1 false, label %for.exit, label %for.body | ||
|
||
for.exit: | ||
ret void | ||
} |
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,2 @@ | ||
if not 'AMDGPU' in config.root.targets: | ||
config.unsupported = True |