Skip to content

Commit 75c94b1

Browse files
committed
further ISA variant support, initial variable regclass work, based on rL314102
1 parent f209043 commit 75c94b1

13 files changed

+2530
-93
lines changed

0001-Revert-upstreamed-RISC-V-changes.patch

+869-69
Large diffs are not rendered by default.

0003-RISCV-Add-RISC-V-ELF-defines.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ index 0f777addb7b..d6123499a22 100644
205205
#include "llvm/BinaryFormat/ELFRelocs/Lanai.def"
206206
break;
207207
diff --git a/tools/llvm-objdump/llvm-objdump.cpp b/tools/llvm-objdump/llvm-objdump.cpp
208-
index 3cc95c1f760..266b556360b 100644
208+
index 7006c6393b6..09396466c40 100644
209209
--- a/tools/llvm-objdump/llvm-objdump.cpp
210210
+++ b/tools/llvm-objdump/llvm-objdump.cpp
211-
@@ -768,6 +768,7 @@ static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *Obj,
211+
@@ -750,6 +750,7 @@ static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *Obj,
212212
case ELF::EM_HEXAGON:
213213
case ELF::EM_MIPS:
214214
case ELF::EM_BPF:

0012-NFC-Ensure-TargetOpcode-instructions-are-compatible-.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Differential Revision: https://reviews.llvm.org/D37065
2020
1 file changed, 14 insertions(+), 2 deletions(-)
2121

2222
diff --git a/include/llvm/Target/Target.td b/include/llvm/Target/Target.td
23-
index 38d6ca0cc76..9cc2368cf0f 100644
23+
index 1cf90403842..533c5f48b53 100644
2424
--- a/include/llvm/Target/Target.td
2525
+++ b/include/llvm/Target/Target.td
2626
@@ -859,12 +859,16 @@ class InstrInfo {

0024-TargetLowering-Correctly-track-NumFixedArgs-field-of.patch

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ Differential Revision: https://reviews.llvm.org/D37898
2424
2 files changed, 3 insertions(+), 2 deletions(-)
2525

2626
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
27-
index 30f60fa0b0a..7bce5e9127b 100644
27+
index ea3e3f7b049..d35acdfc92e 100644
2828
--- a/include/llvm/Target/TargetLowering.h
2929
+++ b/include/llvm/Target/TargetLowering.h
30-
@@ -2906,7 +2906,7 @@ public:
30+
@@ -2907,7 +2907,7 @@ public:
3131
RetTy = ResultType;
3232
Callee = Target;
3333
CallConv = CC;
@@ -36,7 +36,7 @@ index 30f60fa0b0a..7bce5e9127b 100644
3636
Args = std::move(ArgsList);
3737

3838
DAG.getTargetLoweringInfo().markLibCallAttributes(
39-
@@ -2919,7 +2919,7 @@ public:
39+
@@ -2920,7 +2920,7 @@ public:
4040
RetTy = ResultType;
4141
Callee = Target;
4242
CallConv = CC;
@@ -46,10 +46,10 @@ index 30f60fa0b0a..7bce5e9127b 100644
4646
return *this;
4747
}
4848
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
49-
index fb32487ac42..116208fa7dc 100644
49+
index b103792d00c..642ca52e0d1 100644
5050
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
5151
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
52-
@@ -8046,6 +8046,7 @@ TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
52+
@@ -8056,6 +8056,7 @@ TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
5353
Entry.IsSwiftError = false;
5454
Entry.Alignment = Align;
5555
CLI.getArgs().insert(CLI.getArgs().begin(), Entry);

0041-RISCV-Codegen-support-for-the-standard-RV32M-instruc.patch

+40-8
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,42 @@ Subject: [RISCV] Codegen support for the standard RV32M instruction set
44
extension
55

66
---
7+
lib/Target/RISCV/RISCVISelDAGToDAG.cpp | 8 ++-
78
lib/Target/RISCV/RISCVISelLowering.cpp | 18 +++---
89
lib/Target/RISCV/RISCVInstrInfoM.td | 13 ++++
910
lib/Target/RISCV/RISCVSubtarget.cpp | 13 +++-
10-
lib/Target/RISCV/RISCVSubtarget.h | 12 ++--
11+
lib/Target/RISCV/RISCVSubtarget.h | 13 ++--
1112
test/CodeGen/RISCV/div.ll | 115 ++++++++++++++++++++-------------
1213
test/CodeGen/RISCV/mul.ll | 106 ++++++++++++++++++++++--------
1314
test/CodeGen/RISCV/rem.ll | 27 +++++---
14-
7 files changed, 206 insertions(+), 98 deletions(-)
15+
8 files changed, 214 insertions(+), 99 deletions(-)
1516

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,
1643
diff --git a/lib/Target/RISCV/RISCVISelLowering.cpp b/lib/Target/RISCV/RISCVISelLowering.cpp
1744
index 03d12c22799..83c4ebf78b0 100644
1845
--- a/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -92,21 +119,26 @@ index 2dfec6158fd..d8340e792be 100644
92119
+ FrameLowering(initializeSubtargetDependencies(CPU, FS)),
93120
+ TLInfo(TM, *this) {}
94121
diff --git a/lib/Target/RISCV/RISCVSubtarget.h b/lib/Target/RISCV/RISCVSubtarget.h
95-
index daeaa34f877..5a4e31a8f69 100644
122+
index daeaa34f877..e5bb0546c8c 100644
96123
--- a/lib/Target/RISCV/RISCVSubtarget.h
97124
+++ 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;
99135
RISCVFrameLowering FrameLowering;
100136
RISCVTargetLowering TLInfo;
101137
SelectionDAGTargetInfo TSInfo;
102138
- bool HasStdExtM;
103139
- bool HasStdExtA;
104140
- bool HasStdExtF;
105141
- bool HasRV64;
106-
+ bool HasStdExtM = false;
107-
+ bool HasStdExtA = false;
108-
+ bool HasStdExtF = false;
109-
+ bool HasRV64 = false;
110142
+
111143
+ /// Initializes using the passed in CPU and feature strings so that we can
112144
+ /// use initializer lists for subtarget initialization.

0042-RISCV-MC-layer-support-for-the-standard-RV32D-extens.patch

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,17 +164,17 @@ index 85ae1255d30..c325b58999f 100644
164164

165165
def FADD_S : FPALU_rr<0b0000000, 0b111, FPR32, FPR32, FPR32, "fadd.s">;
166166
diff --git a/lib/Target/RISCV/RISCVSubtarget.h b/lib/Target/RISCV/RISCVSubtarget.h
167-
index 5a4e31a8f69..cb366e7705e 100644
167+
index e5bb0546c8c..368cc592d0a 100644
168168
--- a/lib/Target/RISCV/RISCVSubtarget.h
169169
+++ b/lib/Target/RISCV/RISCVSubtarget.h
170-
@@ -37,6 +37,7 @@ class RISCVSubtarget : public RISCVGenSubtargetInfo {
170+
@@ -33,6 +33,7 @@ class RISCVSubtarget : public RISCVGenSubtargetInfo {
171171
bool HasStdExtM = false;
172172
bool HasStdExtA = false;
173173
bool HasStdExtF = false;
174174
+ bool HasStdExtD = false;
175175
bool HasRV64 = false;
176-
177-
/// Initializes using the passed in CPU and feature strings so that we can
176+
RISCVInstrInfo InstrInfo;
177+
RISCVRegisterInfo RegInfo;
178178
diff --git a/test/MC/RISCV/rv32d-invalid.s b/test/MC/RISCV/rv32d-invalid.s
179179
new file mode 100644
180180
index 00000000000..3c3e265bd28

0 commit comments

Comments
 (0)