brintos

brintos / llvm-project-archived public Read only

0
0
Text · 4.3 KiB · 3f02d53 Raw
65 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py2; RUN: opt -passes="print<cost-model>" -cost-kind=all 2>&1 -disable-output -mtriple=aarch64--linux-gnu -mattr=+sve  < %s | FileCheck %s3 4; Check getIntrinsicInstrCost in BasicTTIImpl.h for vector.reverse5 6target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"7 8define void @vector_reverse() #0 {9; CHECK-LABEL: 'vector_reverse'10; CHECK-NEXT:  Cost Model: Found costs of 2 for: %1 = call <16 x i8> @llvm.vector.reverse.v16i8(<16 x i8> undef)11; CHECK-NEXT:  Cost Model: Found costs of 4 for: %2 = call <32 x i8> @llvm.vector.reverse.v32i8(<32 x i8> undef)12; CHECK-NEXT:  Cost Model: Found costs of 2 for: %3 = call <8 x i16> @llvm.vector.reverse.v8i16(<8 x i16> undef)13; CHECK-NEXT:  Cost Model: Found costs of 4 for: %4 = call <16 x i16> @llvm.vector.reverse.v16i16(<16 x i16> undef)14; CHECK-NEXT:  Cost Model: Found costs of 2 for: %5 = call <4 x i32> @llvm.vector.reverse.v4i32(<4 x i32> undef)15; CHECK-NEXT:  Cost Model: Found costs of 4 for: %6 = call <8 x i32> @llvm.vector.reverse.v8i32(<8 x i32> undef)16; CHECK-NEXT:  Cost Model: Found costs of 1 for: %7 = call <2 x i64> @llvm.vector.reverse.v2i64(<2 x i64> undef)17; CHECK-NEXT:  Cost Model: Found costs of 2 for: %8 = call <4 x i64> @llvm.vector.reverse.v4i64(<4 x i64> undef)18; CHECK-NEXT:  Cost Model: Found costs of 2 for: %9 = call <8 x half> @llvm.vector.reverse.v8f16(<8 x half> undef)19; CHECK-NEXT:  Cost Model: Found costs of 4 for: %10 = call <16 x half> @llvm.vector.reverse.v16f16(<16 x half> undef)20; CHECK-NEXT:  Cost Model: Found costs of 2 for: %11 = call <4 x float> @llvm.vector.reverse.v4f32(<4 x float> undef)21; CHECK-NEXT:  Cost Model: Found costs of 4 for: %12 = call <8 x float> @llvm.vector.reverse.v8f32(<8 x float> undef)22; CHECK-NEXT:  Cost Model: Found costs of 1 for: %13 = call <2 x double> @llvm.vector.reverse.v2f64(<2 x double> undef)23; CHECK-NEXT:  Cost Model: Found costs of 2 for: %14 = call <4 x double> @llvm.vector.reverse.v4f64(<4 x double> undef)24; CHECK-NEXT:  Cost Model: Found costs of 2 for: %15 = call <8 x bfloat> @llvm.vector.reverse.v8bf16(<8 x bfloat> undef)25; CHECK-NEXT:  Cost Model: Found costs of 4 for: %16 = call <16 x bfloat> @llvm.vector.reverse.v16bf16(<16 x bfloat> undef)26; CHECK-NEXT:  Cost Model: Found costs of RThru:0 CodeSize:1 Lat:1 SizeLat:1 for: ret void27;28 29  call <16 x i8> @llvm.vector.reverse.v16i8(<16 x i8> undef)30  call <32 x i8> @llvm.vector.reverse.v32i8(<32 x i8> undef)31  call <8 x i16> @llvm.vector.reverse.v8i16(<8 x i16> undef)32  call <16 x i16> @llvm.vector.reverse.v16i16(<16 x i16> undef)33  call <4 x i32> @llvm.vector.reverse.v4i32(<4 x i32> undef)34  call <8 x i32> @llvm.vector.reverse.v8i32(<8 x i32> undef)35  call <2 x i64> @llvm.vector.reverse.v2i64(<2 x i64> undef)36  call <4 x i64> @llvm.vector.reverse.v4i64(<4 x i64> undef)37  call <8 x half> @llvm.vector.reverse.v8f16(<8 x half> undef)38  call <16 x half> @llvm.vector.reverse.v16f16(<16 x half> undef)39  call <4 x float> @llvm.vector.reverse.v4f32(<4 x float> undef)40  call <8 x float> @llvm.vector.reverse.v8f32(<8 x float> undef)41  call <2 x double> @llvm.vector.reverse.v2f64(<2 x double> undef)42  call <4 x double> @llvm.vector.reverse.v4f64(<4 x double> undef)43  call <8 x bfloat> @llvm.vector.reverse.v8bf16(<8 x bfloat> undef)44  call <16 x bfloat> @llvm.vector.reverse.v16bf16(<16 x bfloat> undef)45  ret void46}47 48attributes #0 = { "target-features"="+sve,+bf16" }49declare <16 x i8> @llvm.vector.reverse.v16i8(<16 x i8>)50declare <32 x i8> @llvm.vector.reverse.v32i8(<32 x i8>)51declare <8 x i16> @llvm.vector.reverse.v8i16(<8 x i16>)52declare <16 x i16> @llvm.vector.reverse.v16i16(<16 x i16>)53declare <4 x i32> @llvm.vector.reverse.v4i32(<4 x i32>)54declare <8 x i32> @llvm.vector.reverse.v8i32(<8 x i32>)55declare <2 x i64> @llvm.vector.reverse.v2i64(<2 x i64>)56declare <4 x i64> @llvm.vector.reverse.v4i64(<4 x i64>)57declare <8 x half> @llvm.vector.reverse.v8f16(<8 x half>)58declare <16 x half> @llvm.vector.reverse.v16f16(<16 x half>)59declare <4 x float> @llvm.vector.reverse.v4f32(<4 x float>)60declare <8 x float> @llvm.vector.reverse.v8f32(<8 x float>)61declare <2 x double> @llvm.vector.reverse.v2f64(<2 x double>)62declare <4 x double> @llvm.vector.reverse.v4f64(<4 x double>)63declare <8 x bfloat> @llvm.vector.reverse.v8bf16(<8 x bfloat>)64declare <16 x bfloat> @llvm.vector.reverse.v16bf16(<16 x bfloat>)65