[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Inline / X86 / insertvalue.ll
blob20111df73b33b40206490bd10c63d35c5f7009aa
1 ; RUN: opt < %s -inline -inline-threshold=0 -debug-only=inline-cost -print-instruction-comments -S -mtriple=x86_64-unknown-linux-gnu 2>&1 | FileCheck %s
2 ; RUN: opt < %s -passes='cgscc(inline)' -inline-threshold=0 -debug-only=inline-cost -print-instruction-comments -S -mtriple=x86_64-unknown-linux-gnu 2>&1 | FileCheck %s
3 ; REQUIRES: asserts
5 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
6 target triple = "x86_64-unknown-unknown"
8 ; Check that insertvalue's aren't free.
10 ; CHECK: Analyzing call of callee... (caller:caller_range)
11 ; CHECK-NEXT: define { i32, i32 } @callee({ i32, i32 } %arg, i32 %arg1) {
12 ; CHECK-NEXT: ; cost before = -40, cost after = -35, threshold before = 0, threshold after = 0, cost delta = 5
13 ; CHECK-NEXT:   %r = insertvalue { i32, i32 } %arg, i32 %arg1, 0
14 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cost delta = 0
15 ; CHECK-NEXT:   ret { i32, i32 } %r
16 ; CHECK-NEXT: }
18 define {i32, i32} @callee({i32, i32} %arg, i32 %arg1) {
19   %r = insertvalue {i32, i32} %arg, i32 %arg1, 0
20   ret {i32, i32} %r
23 define {i32, i32} @caller_range({i32, i32} %arg, i32 %arg1) {
24   %r = call {i32, i32} @callee({i32, i32} %arg, i32 %arg1)
25   ret {i32, i32} %r