[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Analysis / CostModel / ARM / load-to-trunc.ll
blob7d434f7d904298649f58eb4ce42744f747b3e037
1 ; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py
2 ; Check memory cost model action for a load of an unusually sized integer
3 ; follow by and a trunc to a register sized integer gives a cost of 1 rather
4 ; than the expanded cost if it is not.  Currently, this target does not have
5 ; that expansion.
7 ; RUN: opt -cost-model -cost-kind=code-size -analyze -mtriple=armv8r-none-eabi < %s | FileCheck %s --check-prefix=CHECK
9 ; Check that cost is 1 for unusual load to register sized load.
10 define i32 @loadUnusualIntegerWithTrunc(i128* %ptr) {
11 ; CHECK-LABEL: 'loadUnusualIntegerWithTrunc'
12 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: %out = load i128, i128* %ptr, align 4
13 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: %trunc = trunc i128 %out to i32
14 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret i32 %trunc
16   %out = load i128, i128* %ptr
17   %trunc = trunc i128 %out to i32
18   ret i32 %trunc
21 define i128 @loadUnusualInteger(i128* %ptr) {
22 ; CHECK-LABEL: 'loadUnusualInteger'
23 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: %out = load i128, i128* %ptr, align 4
24 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret i128 %out
26   %out = load i128, i128* %ptr
27   ret i128 %out