brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · a12fd00 Raw
40 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=thumbv8.1m.main-none-eabi -mattr=+mve < %s | FileCheck %s3 4target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64"5 6; Note that these instructions like this (not in a look that could be tail7; predicated) should not really be free. We currently assume that all active8; lane masks are free.9 10define void @v4i32(i32 %index, i32 %TC) {11; CHECK-LABEL: 'v4i32'12; CHECK-NEXT:  Cost Model: Found costs of 0 for: %active.lane.mask = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %index, i32 %TC)13; CHECK-NEXT:  Cost Model: Found costs of RThru:0 CodeSize:1 Lat:1 SizeLat:1 for: ret void14;15  %active.lane.mask = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %index, i32 %TC)16  ret void17}18 19define void @v8i16(i32 %index, i32 %TC) {20; CHECK-LABEL: 'v8i16'21; CHECK-NEXT:  Cost Model: Found costs of 0 for: %active.lane.mask = call <8 x i1> @llvm.get.active.lane.mask.v8i1.i32(i32 %index, i32 %TC)22; CHECK-NEXT:  Cost Model: Found costs of RThru:0 CodeSize:1 Lat:1 SizeLat:1 for: ret void23;24  %active.lane.mask = call <8 x i1> @llvm.get.active.lane.mask.v8i1.i32(i32 %index, i32 %TC)25  ret void26}27 28define void @v16i8(i32 %index, i32 %TC) {29; CHECK-LABEL: 'v16i8'30; CHECK-NEXT:  Cost Model: Found costs of 0 for: %active.lane.mask = call <16 x i1> @llvm.get.active.lane.mask.v16i1.i32(i32 %index, i32 %TC)31; CHECK-NEXT:  Cost Model: Found costs of RThru:0 CodeSize:1 Lat:1 SizeLat:1 for: ret void32;33  %active.lane.mask = call <16 x i1> @llvm.get.active.lane.mask.v16i1.i32(i32 %index, i32 %TC)34  ret void35}36 37declare <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32, i32)38declare <8 x i1> @llvm.get.active.lane.mask.v8i1.i32(i32, i32)39declare <16 x i1> @llvm.get.active.lane.mask.v16i1.i32(i32, i32)40