1dd2dbf7eSDavid Green; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py 24178e334SSimon Pilgrim; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -mattr=+vsx | FileCheck %s 3dd2dbf7eSDavid Greentarget datalayout = "E-m:e-i64:64-n32:64" 4dd2dbf7eSDavid Greentarget triple = "powerpc64-unknown-linux-gnu" 5dd2dbf7eSDavid Green 6dd2dbf7eSDavid Green; This test checks we don't crash on certain matrix operations, more than 7dd2dbf7eSDavid Green; checks the cost of the intrinsics per-se. 8dd2dbf7eSDavid Green 9dd2dbf7eSDavid Greendefine void @matrix() { 10dd2dbf7eSDavid Green; CHECK-LABEL: 'matrix' 11*68c50b11SNikita Popov; CHECK-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %matrix1 = call <1 x i32> @llvm.matrix.column.major.load.v1i32.i64(ptr nonnull align 4 undef, i64 1, i1 false, i32 1, i32 1) 12dd2dbf7eSDavid Green; CHECK-NEXT: Cost Model: Found an estimated cost of 452 for instruction: %0 = call <10 x i32> @llvm.matrix.multiply.v10i32.v10i32.v1i32(<10 x i32> undef, <1 x i32> %matrix1, i32 10, i32 1, i32 1) 13dd2dbf7eSDavid Green; CHECK-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret void 14dd2dbf7eSDavid Green; 15dd2dbf7eSDavid Greenentry: 16*68c50b11SNikita Popov %matrix1 = call <1 x i32> @llvm.matrix.column.major.load.v1i32.i64(ptr nonnull align 4 undef, i64 1, i1 false, i32 1, i32 1) 17dd2dbf7eSDavid Green %0 = call <10 x i32> @llvm.matrix.multiply.v10i32.v10i32.v1i32(<10 x i32> undef, <1 x i32> %matrix1, i32 10, i32 1, i32 1) 18dd2dbf7eSDavid Green ret void 19dd2dbf7eSDavid Green} 20dd2dbf7eSDavid Green 21*68c50b11SNikita Popovdeclare <1 x i32> @llvm.matrix.column.major.load.v1i32.i64(ptr nocapture, i64, i1 immarg, i32 immarg, i32 immarg) #2 22dd2dbf7eSDavid Greendeclare <10 x i32> @llvm.matrix.multiply.v10i32.v10i32.v1i32(<10 x i32>, <1 x i32>, i32 immarg, i32 immarg, i32 immarg) #3 23