[X86] Enforce strict pre-legalization to combine in scalarizeExtEltFP (#117681)
[llvm-project.git] / llvm / test / Analysis / CostModel / no_info.ll
blobd6643efe301e6c8969ea7a7fc77a87d078d3fcb0
1 ; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output | FileCheck %s
3 ; The cost model does not have any target information so it just makes boring
4 ; assumptions.
6 ; -- No triple in this module --
8 ; CHECK-LABEL: function 'no_info'
9 ; CHECK: cost of 1 {{.*}} add
10 ; CHECK: cost of 1 {{.*}} ret
11 define i32 @no_info(i32 %arg) {
12   %e = add i32 %arg, %arg
13   ret i32 %e
16 define i8 @addressing_mode_reg_reg(ptr %a, i32 %b) {
17 ; CHECK-LABEL: function 'addressing_mode_reg_reg'
18   %p = getelementptr i8, ptr %a, i32 %b ; NoTTI accepts reg+reg addressing.
19 ; CHECK: cost of 0 {{.*}} getelementptr
20   %v = load i8, ptr %p
21   ret i8 %v
24 ; CHECK-LABEL: function 'addressing_mode_scaled_reg'
25 define i32 @addressing_mode_scaled_reg(ptr %a, i32 %b) {
26   ; NoTTI rejects reg+scale*reg addressing.
27   %p = getelementptr i32, ptr %a, i32 %b
28 ; CHECK: cost of 1 {{.*}} getelementptr
29   %v = load i32, ptr %p
30   ret i32 %v