Skip to content

Commit cc95a45

Browse files
committed
[CostModel] Model all extractvalues as free.
Summary: As disscussed in https://reviews.llvm.org/D65148#1606412, `extractvalue` don't actually generate any code, so we should treat them as free. Reviewers: craig.topper, RKSimon, jnspaulsson, greened, asb, t.p.northover, jmolloy, dmgreen Reviewed By: jmolloy Subscribers: javed.absar, hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D66098 llvm-svn: 370339
1 parent 349ef2f commit cc95a45

File tree

4 files changed

+53
-48
lines changed

4 files changed

+53
-48
lines changed

llvm/include/llvm/Analysis/TargetTransformInfoImpl.h

+3
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,9 @@ class TargetTransformInfoImplCRTPBase : public TargetTransformInfoImplBase {
840840
if (isa<PHINode>(U))
841841
return TTI::TCC_Free; // Model all PHI nodes as free.
842842

843+
if (isa<ExtractValueInst>(U))
844+
return TTI::TCC_Free; // Model all ExtractValue nodes as free.
845+
843846
// Static alloca doesn't generate target instructions.
844847
if (auto *A = dyn_cast<AllocaInst>(U))
845848
if (A->isStaticAlloca())

llvm/lib/Analysis/TargetTransformInfo.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1286,6 +1286,8 @@ int TargetTransformInfo::getInstructionThroughput(const Instruction *I) const {
12861286
return getVectorInstrCost(I->getOpcode(),
12871287
IE->getType(), Idx);
12881288
}
1289+
case Instruction::ExtractValue:
1290+
return 0; // Model all ExtractValue nodes as free.
12891291
case Instruction::ShuffleVector: {
12901292
const ShuffleVectorInst *Shuffle = cast<ShuffleVectorInst>(I);
12911293
Type *Ty = Shuffle->getType();

llvm/test/Analysis/CostModel/AArch64/aggregates.ll

+24-24
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
define i32 @extract_first_i32({i32, i32} %agg) {
77
; THROUGHPUT-LABEL: 'extract_first_i32'
8-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, i32 } %agg, 0
8+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i32 } %agg, 0
99
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret i32 %r
1010
;
1111
; LATENCY-LABEL: 'extract_first_i32'
12-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i32 } %agg, 0
12+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i32 } %agg, 0
1313
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i32 %r
1414
;
1515
; CODESIZE-LABEL: 'extract_first_i32'
16-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i32 } %agg, 0
16+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i32 } %agg, 0
1717
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i32 %r
1818
;
1919
%r = extractvalue {i32, i32} %agg, 0
@@ -22,15 +22,15 @@ define i32 @extract_first_i32({i32, i32} %agg) {
2222

2323
define i32 @extract_second_i32({i32, i32} %agg) {
2424
; THROUGHPUT-LABEL: 'extract_second_i32'
25-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, i32 } %agg, 1
25+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i32 } %agg, 1
2626
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret i32 %r
2727
;
2828
; LATENCY-LABEL: 'extract_second_i32'
29-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i32 } %agg, 1
29+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i32 } %agg, 1
3030
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i32 %r
3131
;
3232
; CODESIZE-LABEL: 'extract_second_i32'
33-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i32 } %agg, 1
33+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i32 } %agg, 1
3434
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i32 %r
3535
;
3636
%r = extractvalue {i32, i32} %agg, 1
@@ -39,15 +39,15 @@ define i32 @extract_second_i32({i32, i32} %agg) {
3939

4040
define i32 @extract_i32({i32, i1} %agg) {
4141
; THROUGHPUT-LABEL: 'extract_i32'
42-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, i1 } %agg, 0
42+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i1 } %agg, 0
4343
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret i32 %r
4444
;
4545
; LATENCY-LABEL: 'extract_i32'
46-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i1 } %agg, 0
46+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i1 } %agg, 0
4747
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i32 %r
4848
;
4949
; CODESIZE-LABEL: 'extract_i32'
50-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i1 } %agg, 0
50+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i1 } %agg, 0
5151
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i32 %r
5252
;
5353
%r = extractvalue {i32, i1} %agg, 0
@@ -56,15 +56,15 @@ define i32 @extract_i32({i32, i1} %agg) {
5656

5757
define i1 @extract_i1({i32, i1} %agg) {
5858
; THROUGHPUT-LABEL: 'extract_i1'
59-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, i1 } %agg, 1
59+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i1 } %agg, 1
6060
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret i1 %r
6161
;
6262
; LATENCY-LABEL: 'extract_i1'
63-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i1 } %agg, 1
63+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i1 } %agg, 1
6464
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i1 %r
6565
;
6666
; CODESIZE-LABEL: 'extract_i1'
67-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, i1 } %agg, 1
67+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, i1 } %agg, 1
6868
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret i1 %r
6969
;
7070
%r = extractvalue {i32, i1} %agg, 1
@@ -73,15 +73,15 @@ define i1 @extract_i1({i32, i1} %agg) {
7373

7474
define float @extract_float({i32, float} %agg) {
7575
; THROUGHPUT-LABEL: 'extract_float'
76-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, float } %agg, 1
76+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, float } %agg, 1
7777
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret float %r
7878
;
7979
; LATENCY-LABEL: 'extract_float'
80-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 3 for instruction: %r = extractvalue { i32, float } %agg, 1
80+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, float } %agg, 1
8181
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret float %r
8282
;
8383
; CODESIZE-LABEL: 'extract_float'
84-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, float } %agg, 1
84+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, float } %agg, 1
8585
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret float %r
8686
;
8787
%r = extractvalue {i32, float} %agg, 1
@@ -90,15 +90,15 @@ define float @extract_float({i32, float} %agg) {
9090

9191
define [42 x i42] @extract_array({i32, [42 x i42]} %agg) {
9292
; THROUGHPUT-LABEL: 'extract_array'
93-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, [42 x i42] } %agg, 1
93+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, [42 x i42] } %agg, 1
9494
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret [42 x i42] %r
9595
;
9696
; LATENCY-LABEL: 'extract_array'
97-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, [42 x i42] } %agg, 1
97+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, [42 x i42] } %agg, 1
9898
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret [42 x i42] %r
9999
;
100100
; CODESIZE-LABEL: 'extract_array'
101-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, [42 x i42] } %agg, 1
101+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, [42 x i42] } %agg, 1
102102
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret [42 x i42] %r
103103
;
104104
%r = extractvalue {i32, [42 x i42]} %agg, 1
@@ -107,15 +107,15 @@ define [42 x i42] @extract_array({i32, [42 x i42]} %agg) {
107107

108108
define <42 x i42> @extract_vector({i32, <42 x i42>} %agg) {
109109
; THROUGHPUT-LABEL: 'extract_vector'
110-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, <42 x i42> } %agg, 1
110+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, <42 x i42> } %agg, 1
111111
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret <42 x i42> %r
112112
;
113113
; LATENCY-LABEL: 'extract_vector'
114-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, <42 x i42> } %agg, 1
114+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, <42 x i42> } %agg, 1
115115
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret <42 x i42> %r
116116
;
117117
; CODESIZE-LABEL: 'extract_vector'
118-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, <42 x i42> } %agg, 1
118+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, <42 x i42> } %agg, 1
119119
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret <42 x i42> %r
120120
;
121121
%r = extractvalue {i32, <42 x i42>} %agg, 1
@@ -126,15 +126,15 @@ define <42 x i42> @extract_vector({i32, <42 x i42>} %agg) {
126126

127127
define %T1 @extract_struct({i32, %T1} %agg) {
128128
; THROUGHPUT-LABEL: 'extract_struct'
129-
; THROUGHPUT-NEXT: Cost Model: Unknown cost for instruction: %r = extractvalue { i32, %T1 } %agg, 1
129+
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, %T1 } %agg, 1
130130
; THROUGHPUT-NEXT: Cost Model: Found an estimated cost of 0 for instruction: ret %T1 %r
131131
;
132132
; LATENCY-LABEL: 'extract_struct'
133-
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, %T1 } %agg, 1
133+
; LATENCY-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, %T1 } %agg, 1
134134
; LATENCY-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret %T1 %r
135135
;
136136
; CODESIZE-LABEL: 'extract_struct'
137-
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: %r = extractvalue { i32, %T1 } %agg, 1
137+
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 0 for instruction: %r = extractvalue { i32, %T1 } %agg, 1
138138
; CODESIZE-NEXT: Cost Model: Found an estimated cost of 1 for instruction: ret %T1 %r
139139
;
140140
%r = extractvalue {i32, %T1} %agg, 1

0 commit comments

Comments
 (0)