File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
llvm/utils/gn/secondary/llvm/lib Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ static_library("Analysis") {
47
47
" DomTreeUpdater.cpp" ,
48
48
" DominanceFrontier.cpp" ,
49
49
" EHPersonalities.cpp" ,
50
+ " FunctionPropertiesAnalysis.cpp" ,
50
51
" GlobalsModRef.cpp" ,
51
52
" GuardUtils.cpp" ,
52
53
" HeatUtils.cpp" ,
@@ -55,7 +56,6 @@ static_library("Analysis") {
55
56
" IndirectCallPromotionAnalysis.cpp" ,
56
57
" InlineAdvisor.cpp" ,
57
58
" InlineCost.cpp" ,
58
- " InlineFeaturesAnalysis.cpp" ,
59
59
" InlineSizeEstimatorAnalysis.cpp" ,
60
60
" InstCount.cpp" ,
61
61
" InstructionPrecedenceTracking.cpp" ,
Original file line number Diff line number Diff line change @@ -63,6 +63,11 @@ tablegen("AMDGPUGenRegisterBank") {
63
63
td_file = " AMDGPU.td"
64
64
}
65
65
66
+ tablegen (" InstCombineTables" ) {
67
+ visibility = [ " :LLVMAMDGPUCodeGen" ]
68
+ args = [ " -gen-searchable-tables" ]
69
+ }
70
+
66
71
tablegen (" R600GenCallingConv" ) {
67
72
visibility = [ " :LLVMAMDGPUCodeGen" ]
68
73
args = [ " -gen-callingconv" ]
@@ -92,6 +97,7 @@ static_library("LLVMAMDGPUCodeGen") {
92
97
" :AMDGPUGenPreLegalizeGICombiner" ,
93
98
" :AMDGPUGenRegBankGICombiner" ,
94
99
" :AMDGPUGenRegisterBank" ,
100
+ " :InstCombineTables" ,
95
101
" :R600GenCallingConv" ,
96
102
" :R600GenDAGISel" ,
97
103
" :R600GenDFAPacketizer" ,
Original file line number Diff line number Diff line change 1
1
import (" //llvm/utils/TableGen/tablegen.gni" )
2
2
3
- tablegen (" InstCombineTables" ) {
4
- visibility = [ " :InstCombine" ]
5
- args = [ " -gen-searchable-tables" ]
6
- }
7
-
8
3
static_library (" InstCombine" ) {
9
4
output_name = " LLVMInstCombine"
10
5
deps = [
11
- " :InstCombineTables" ,
12
6
" //llvm/lib/Analysis" ,
13
7
" //llvm/lib/IR" ,
14
8
" //llvm/lib/Support" ,
You can’t perform that action at this time.
0 commit comments