brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · b78d121 Raw
27 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py2; Check memory cost model action for a load of an unusually sized integer3; follow by and a trunc to a register sized integer gives a cost of 1 rather4; than the expanded cost if it is not.5; RUN: opt -passes="print<cost-model>" -cost-kind=code-size 2>&1 -disable-output -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s --check-prefix=CHECK6 7; Check that cost is 1 for unusual load to register sized load.8define i32 @loadUnusualIntegerWithTrunc(ptr %ptr) {9; CHECK-LABEL: 'loadUnusualIntegerWithTrunc'10; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: %out = load i128, ptr %ptr, align 1611; CHECK-NEXT:  Cost Model: Found an estimated cost of 0 for instruction: %trunc = trunc i128 %out to i3212; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret i32 %trunc13;14  %out = load i128, ptr %ptr15  %trunc = trunc i128 %out to i3216  ret i32 %trunc17}18 19define i128 @loadUnusualInteger(ptr %ptr) {20; CHECK-LABEL: 'loadUnusualInteger'21; CHECK-NEXT:  Cost Model: Found an estimated cost of 2 for instruction: %out = load i128, ptr %ptr, align 1622; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret i128 %out23;24  %out = load i128, ptr %ptr25  ret i128 %out26}27