21 lines · plain
1; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr8 -mattr=+vsx | FileCheck -DCOST32=1 %s2; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -mattr=+vsx | FileCheck -DCOST32=2 %s3target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"4target triple = "powerpc64-unknown-linux-gnu"5 6define i32 @loads(i32 %arg) {7 ; CHECK: cost of [[COST32]] {{.*}} load8 load <4 x i8>, ptr undef, align 19 10 ; CHECK: cost of 1 {{.*}} load11 load <8 x i8>, ptr undef, align 112 13 ; CHECK: cost of [[COST32]] {{.*}} load14 load <2 x i16>, ptr undef, align 215 16 ; CHECK: cost of 1 {{.*}} load17 load <4 x i16>, ptr undef, align 218 19 ret i32 undef20}21