[AMDGPU] Parse wwm filter flag for regalloc fast (#119347)
[llvm-project.git] / llvm / test / Transforms / Inline / X86 / insertvalue.ll
blob529f9475678c38580b461412da9a333cc655cda6
1 ; RUN: opt < %s -passes=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: Initial cost: -40
12 ; CHECK-NEXT: define { i32, i32 } @callee({ i32, i32 } %arg, i32 %arg1) {
13 ; CHECK-NEXT: ; cost before = -40, cost after = -35, threshold before = 0, threshold after = 0, cost delta = 5
14 ; CHECK-NEXT:   %r = insertvalue { i32, i32 } %arg, i32 %arg1, 0
15 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cost delta = 0
16 ; CHECK-NEXT:   ret { i32, i32 } %r
17 ; CHECK-NEXT: }
19 define {i32, i32} @callee({i32, i32} %arg, i32 %arg1) {
20   %r = insertvalue {i32, i32} %arg, i32 %arg1, 0
21   ret {i32, i32} %r
24 define {i32, i32} @caller_range({i32, i32} %arg, i32 %arg1) {
25   %r = call {i32, i32} @callee({i32, i32} %arg, i32 %arg1)
26   ret {i32, i32} %r