@@ -4,15 +4,42 @@ Subject: [RISCV] Codegen support for the standard RV32M instruction set
4
4
extension
5
5
6
6
---
7
+ lib/Target/RISCV/RISCVISelDAGToDAG.cpp | 8 ++-
7
8
lib/Target/RISCV/RISCVISelLowering.cpp | 18 +++---
8
9
lib/Target/RISCV/RISCVInstrInfoM.td | 13 ++++
9
10
lib/Target/RISCV/RISCVSubtarget.cpp | 13 +++-
10
- lib/Target/RISCV/RISCVSubtarget.h | 12 ++--
11
+ lib/Target/RISCV/RISCVSubtarget.h | 13 ++--
11
12
test/CodeGen/RISCV/div.ll | 115 ++++++++++++++++++++-------------
12
13
test/CodeGen/RISCV/mul.ll | 106 ++++++++++++++++++++++--------
13
14
test/CodeGen/RISCV/rem.ll | 27 +++++---
14
- 7 files changed, 206 insertions(+), 98 deletions(-)
15
+ 8 files changed, 214 insertions(+), 99 deletions(-)
15
16
17
+ diff --git a/lib/Target/RISCV/RISCVISelDAGToDAG.cpp b/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
18
+ index 69dbce95212..076a0d0cbbe 100644
19
+ --- a/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
20
+ +++ b/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
21
+ @@ -26,14 +26,20 @@ using namespace llvm;
22
+ // SelectionDAG operations.
23
+ namespace {
24
+ class RISCVDAGToDAGISel final : public SelectionDAGISel {
25
+ + const RISCVSubtarget *Subtarget;
26
+ public:
27
+ explicit RISCVDAGToDAGISel(RISCVTargetMachine &TargetMachine)
28
+ - : SelectionDAGISel(TargetMachine) {}
29
+ + : SelectionDAGISel(TargetMachine), Subtarget(nullptr) {}
30
+
31
+ StringRef getPassName() const override {
32
+ return "RISCV DAG->DAG Pattern Instruction Selection";
33
+ }
34
+
35
+ + bool runOnMachineFunction(MachineFunction &MF) override {
36
+ + Subtarget = &MF.getSubtarget<RISCVSubtarget>();
37
+ + return SelectionDAGISel::runOnMachineFunction(MF);
38
+ + }
39
+ +
40
+ void Select(SDNode *Node) override;
41
+
42
+ bool SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
16
43
diff --git a/lib/Target/RISCV/RISCVISelLowering.cpp b/lib/Target/RISCV/RISCVISelLowering.cpp
17
44
index 03d12c22799..83c4ebf78b0 100644
18
45
--- a/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -92,21 +119,26 @@ index 2dfec6158fd..d8340e792be 100644
92
119
+ FrameLowering(initializeSubtargetDependencies(CPU, FS)),
93
120
+ TLInfo(TM, *this) {}
94
121
diff --git a/lib/Target/RISCV/RISCVSubtarget.h b/lib/Target/RISCV/RISCVSubtarget.h
95
- index daeaa34f877..5a4e31a8f69 100644
122
+ index daeaa34f877..e5bb0546c8c 100644
96
123
--- a/lib/Target/RISCV/RISCVSubtarget.h
97
124
+++ b/lib/Target/RISCV/RISCVSubtarget.h
98
- @@ -34,10 +34,14 @@ class RISCVSubtarget : public RISCVGenSubtargetInfo {
125
+ @@ -30,14 +30,19 @@ class StringRef;
126
+
127
+ class RISCVSubtarget : public RISCVGenSubtargetInfo {
128
+ virtual void anchor();
129
+ + bool HasStdExtM = false;
130
+ + bool HasStdExtA = false;
131
+ + bool HasStdExtF = false;
132
+ + bool HasRV64 = false;
133
+ RISCVInstrInfo InstrInfo;
134
+ + RISCVRegisterInfo RegInfo;
99
135
RISCVFrameLowering FrameLowering;
100
136
RISCVTargetLowering TLInfo;
101
137
SelectionDAGTargetInfo TSInfo;
102
138
- bool HasStdExtM;
103
139
- bool HasStdExtA;
104
140
- bool HasStdExtF;
105
141
- bool HasRV64;
106
- + bool HasStdExtM = false;
107
- + bool HasStdExtA = false;
108
- + bool HasStdExtF = false;
109
- + bool HasRV64 = false;
110
142
+
111
143
+ /// Initializes using the passed in CPU and feature strings so that we can
112
144
+ /// use initializer lists for subtarget initialization.
0 commit comments