File tree Expand file tree Collapse file tree 5 files changed +9
-33
lines changed
llvm/utils/gn/secondary/llvm/lib/Target/RISCV Expand file tree Collapse file tree 5 files changed +9
-33
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ static_library("AsmParser") {
18
18
" //llvm/lib/Support" ,
19
19
" //llvm/lib/Target/RISCV:RISCVGenCompressInstEmitter" ,
20
20
" //llvm/lib/Target/RISCV/MCTargetDesc" ,
21
- " //llvm/lib/Target/RISCV/Utils" ,
22
21
]
23
22
include_dirs = [ " .." ]
24
23
sources = [ " RISCVAsmParser.cpp" ]
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ static_library("LLVMRISCVCodeGen") {
50
50
" AsmParser:RISCVGenAsmMatcher" ,
51
51
" MCTargetDesc" ,
52
52
" TargetInfo" ,
53
- " Utils" ,
54
53
" //llvm/include/llvm/Config:llvm-config" ,
55
54
" //llvm/lib/CodeGen" ,
56
55
" //llvm/lib/CodeGen/AsmPrinter" ,
@@ -97,6 +96,5 @@ group("RISCV") {
97
96
" Disassembler" ,
98
97
" MCTargetDesc" ,
99
98
" TargetInfo" ,
100
- " Utils" ,
101
99
]
102
100
}
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ static_library("Disassembler") {
13
13
" //llvm/lib/MC/MCDisassembler" ,
14
14
" //llvm/lib/Support" ,
15
15
" //llvm/lib/Target/RISCV/MCTargetDesc" ,
16
- " //llvm/lib/Target/RISCV/Utils" ,
17
16
]
18
17
include_dirs = [ " .." ]
19
18
sources = [ " RISCVDisassembler.cpp" ]
Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ tablegen("RISCVGenRegisterInfo") {
24
24
td_file = " ../RISCV.td"
25
25
}
26
26
27
+ tablegen (" RISCVGenSearchableTables" ) {
28
+ visibility = [ " :tablegen" ]
29
+ args = [ " -gen-searchable-tables" ]
30
+ td_file = " ../RISCV.td"
31
+ }
32
+
27
33
tablegen (" RISCVGenSubtargetInfo" ) {
28
34
visibility = [ " :tablegen" ]
29
35
args = [ " -gen-subtarget" ]
@@ -36,11 +42,11 @@ tablegen("RISCVGenSubtargetInfo") {
36
42
group (" tablegen" ) {
37
43
visibility = [
38
44
" :MCTargetDesc" ,
39
- " ../Utils" ,
40
45
]
41
46
public_deps = [
42
47
" :RISCVGenInstrInfo" ,
43
48
" :RISCVGenRegisterInfo" ,
49
+ " :RISCVGenSearchableTables" ,
44
50
" :RISCVGenSubtargetInfo" ,
45
51
]
46
52
}
@@ -54,18 +60,19 @@ static_library("MCTargetDesc") {
54
60
" //llvm/lib/MC" ,
55
61
" //llvm/lib/Support" ,
56
62
" //llvm/lib/Target/RISCV:RISCVGenCompressInstEmitter" ,
57
- " //llvm/lib/Target/RISCV/Utils" ,
58
63
]
59
64
include_dirs = [ " .." ]
60
65
sources = [
61
66
" RISCVAsmBackend.cpp" ,
67
+ " RISCVBaseInfo.cpp" ,
62
68
" RISCVELFObjectWriter.cpp" ,
63
69
" RISCVELFStreamer.cpp" ,
64
70
" RISCVInstPrinter.cpp" ,
65
71
" RISCVMCAsmInfo.cpp" ,
66
72
" RISCVMCCodeEmitter.cpp" ,
67
73
" RISCVMCExpr.cpp" ,
68
74
" RISCVMCTargetDesc.cpp" ,
75
+ " RISCVMatInt.cpp" ,
69
76
" RISCVTargetStreamer.cpp" ,
70
77
]
71
78
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments