Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Analysis / CostModel / SystemZ / ext-load.ll
blob3ce038d303875cfe35165a9cf9d502004a72e583
1 ; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output -mtriple=systemz-unknown -mcpu=z13 | FileCheck %s
3 ; Test that an extension of a load does not get an additional cost in cases
4 ; where the load performs the extension.
6 define void @sext() {
7   %li8 = load i8, ptr undef
8   sext i8 %li8 to i16
9   sext i8 %li8 to i32
10   sext i8 %li8 to i64
12   %li16 = load i16, ptr undef
13   sext i16 %li16 to i32
14   sext i16 %li16 to i64
16   %li32 = load i32, ptr undef
17   sext i32 %li32 to i64
19   ret void
21 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %li8 = load i8, ptr undef
22 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %1 = sext i8 %li8 to i16
23 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %2 = sext i8 %li8 to i32
24 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %3 = sext i8 %li8 to i64
25 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %li16 = load i16, ptr undef
26 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %4 = sext i16 %li16 to i32
27 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %5 = sext i16 %li16 to i64
28 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %li32 = load i32, ptr undef
29 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %6 = sext i32 %li32 to i64
32 define void @zext() {
33   %li8 = load i8, ptr undef
34   zext i8 %li8 to i16
35   zext i8 %li8 to i32
36   zext i8 %li8 to i64
38   %li16 = load i16, ptr undef
39   zext i16 %li16 to i32
40   zext i16 %li16 to i64
42   %li32 = load i32, ptr undef
43   zext i32 %li32 to i64
45   ret void
47 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %li8 = load i8, ptr undef
48 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %1 = zext i8 %li8 to i16
49 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %2 = zext i8 %li8 to i32
50 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %3 = zext i8 %li8 to i64
51 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %li16 = load i16, ptr undef
52 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %4 = zext i16 %li16 to i32
53 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %5 = zext i16 %li16 to i64
54 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %li32 = load i32, ptr undef
55 ; CHECK: Cost Model: Found an estimated cost of 0 for instruction:   %6 = zext i32 %li32 to i64