[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Analysis / CostModel / AArch64 / load-to-trunc.ll
blob83c839161c4d7bfe68f0cb2f04bee6960ed66557
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.
6 ; RUN: opt -cost-model -cost-kind=code-size -analyze -mtriple=aarch64--linux-gnu < %s | FileCheck %s --check-prefix=CHECK
8 ; Check that cost is 1 for unusual load to register sized load.
9 define i32 @loadUnusualIntegerWithTrunc(i128* %ptr) {
10 ; CHECK-LABEL: 'loadUnusualIntegerWithTrunc'
11 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: %out = load i128, i128* %ptr, align 4
12 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 0 for instruction: %trunc = trunc i128 %out to i32
13 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret i32 %trunc
15   %out = load i128, i128* %ptr
16   %trunc = trunc i128 %out to i32
17   ret i32 %trunc
20 define i128 @loadUnusualInteger(i128* %ptr) {
21 ; CHECK-LABEL: 'loadUnusualInteger'
22 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 2 for instruction: %out = load i128, i128* %ptr, align 4
23 ; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret i128 %out
25   %out = load i128, i128* %ptr
26   ret i128 %out