xref: /llvm-project/llvm/test/Analysis/CostModel/AArch64/store-ptr.ll (revision edb2fc6dab2cf04779959829434e9e8572d48a26)
1; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py
2; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output -mtriple=aarch64-unknown | FileCheck %s
3; RUN: opt < %s -passes="print<cost-model>" -cost-kind=code-size 2>&1 -disable-output -mtriple=aarch64-unknown | FileCheck %s --check-prefix=SIZE
4
5target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:32:64-v128:32:128-v256:32:256-a0:0:32-n32-S32"
6define void @getMemoryOpCost() {
7; CHECK-LABEL: 'getMemoryOpCost'
8; CHECK-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: store <2 x ptr> undef, ptr undef, align 4
9; CHECK-NEXT:  Cost Model: Found an estimated cost of 2 for instruction: store <4 x ptr> undef, ptr undef, align 4
10; CHECK-NEXT:  Cost Model: Found an estimated cost of 4 for instruction: store <8 x ptr> undef, ptr undef, align 4
11; CHECK-NEXT:  Cost Model: Found an estimated cost of 0 for instruction: ret void
12;
13; SIZE-LABEL: 'getMemoryOpCost'
14; SIZE-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: store <2 x ptr> undef, ptr undef, align 4
15; SIZE-NEXT:  Cost Model: Found an estimated cost of 2 for instruction: store <4 x ptr> undef, ptr undef, align 4
16; SIZE-NEXT:  Cost Model: Found an estimated cost of 4 for instruction: store <8 x ptr> undef, ptr undef, align 4
17; SIZE-NEXT:  Cost Model: Found an estimated cost of 1 for instruction: ret void
18;
19  store <2 x ptr> undef, ptr undef
20  store <4 x ptr> undef, ptr undef
21  store <8 x ptr> undef, ptr undef
22
23  ret void
24}
25