[llvm] b9180c5 - [SystemZ] Move some SystemZTargetStreamer classes to proper file (#132476)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 21:13:16 PDT 2025
Author: tltao
Date: 2025-03-22T00:13:11-04:00
New Revision: b9180c5cc647af06eadba81a976bf9041a94e203
URL: https://github.com/llvm/llvm-project/commit/b9180c5cc647af06eadba81a976bf9041a94e203
DIFF: https://github.com/llvm/llvm-project/commit/b9180c5cc647af06eadba81a976bf9041a94e203.diff
LOG: [SystemZ] Move some SystemZTargetStreamer classes to proper file (#132476)
Now that we have a SystemZTargetStreamer file from
https://github.com/llvm/llvm-project/pull/130535, move some
TargetStreamer classes and methods from TargetDesc to the proper file.
---------
Co-authored-by: Tony Tao <tonytao at ca.ibm.com>
Added:
Modified:
llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.cpp
llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.h
Removed:
################################################################################
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
index 0fb5c30d37d2b..c010c2c0025b8 100644
--- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
+++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
@@ -183,47 +183,13 @@ static MCInstPrinter *createSystemZMCInstPrinter(const Triple &T,
return new SystemZGNUInstPrinter(MAI, MII, MRI);
}
-void SystemZTargetStreamer::emitConstantPools() {
- // Emit EXRL target instructions.
- if (EXRLTargets2Sym.empty())
- return;
- // Switch to the .text section.
- const MCObjectFileInfo &OFI = *Streamer.getContext().getObjectFileInfo();
- Streamer.switchSection(OFI.getTextSection());
- for (auto &I : EXRLTargets2Sym) {
- Streamer.emitLabel(I.second);
- const MCInstSTIPair &MCI_STI = I.first;
- Streamer.emitInstruction(MCI_STI.first, *MCI_STI.second);
- }
- EXRLTargets2Sym.clear();
-}
-
-namespace {
-class SystemZTargetAsmStreamer : public SystemZTargetStreamer {
- formatted_raw_ostream &OS;
-
-public:
- SystemZTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS)
- : SystemZTargetStreamer(S), OS(OS) {}
- void emitMachine(StringRef CPU) override {
- OS << "\t.machine " << CPU << "\n";
- }
-};
-
-class SystemZTargetELFStreamer : public SystemZTargetStreamer {
-public:
- SystemZTargetELFStreamer(MCStreamer &S) : SystemZTargetStreamer(S) {}
- void emitMachine(StringRef CPU) override {}
-};
-} // end namespace
-
static MCTargetStreamer *createAsmTargetStreamer(MCStreamer &S,
formatted_raw_ostream &OS,
MCInstPrinter *InstPrint) {
if (S.getContext().getTargetTriple().isOSzOS())
return new SystemZTargetHLASMStreamer(S, OS);
else
- return new SystemZTargetAsmStreamer(S, OS);
+ return new SystemZTargetGNUStreamer(S, OS);
}
static MCStreamer *createAsmStreamer(MCContext &Ctx,
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.cpp
index 1946cd1da8506..a4506eddaa69b 100644
--- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.cpp
+++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.cpp
@@ -13,9 +13,25 @@
//===----------------------------------------------------------------------===//
#include "SystemZTargetStreamer.h"
+#include "llvm/MC/MCObjectFileInfo.h"
using namespace llvm;
+void SystemZTargetStreamer::emitConstantPools() {
+ // Emit EXRL target instructions.
+ if (EXRLTargets2Sym.empty())
+ return;
+ // Switch to the .text section.
+ const MCObjectFileInfo &OFI = *Streamer.getContext().getObjectFileInfo();
+ Streamer.switchSection(OFI.getTextSection());
+ for (auto &I : EXRLTargets2Sym) {
+ Streamer.emitLabel(I.second);
+ const MCInstSTIPair &MCI_STI = I.first;
+ Streamer.emitInstruction(MCI_STI.first, *MCI_STI.second);
+ }
+ EXRLTargets2Sym.clear();
+}
+
void SystemZTargetHLASMStreamer::emitExtern(StringRef Sym) {
getStreamer().emitRawText(Twine(" EXTRN ") + Twine(Sym));
}
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.h b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.h
index 26be26e287412..15617101fd08a 100644
--- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.h
+++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZTargetStreamer.h
@@ -82,6 +82,23 @@ class SystemZTargetHLASMStreamer : public SystemZTargetStreamer {
const MCSymbol *Lo) override;
};
+class SystemZTargetELFStreamer : public SystemZTargetStreamer {
+public:
+ SystemZTargetELFStreamer(MCStreamer &S) : SystemZTargetStreamer(S) {}
+ void emitMachine(StringRef CPU) override {}
+};
+
+class SystemZTargetGNUStreamer : public SystemZTargetStreamer {
+ formatted_raw_ostream &OS;
+
+public:
+ SystemZTargetGNUStreamer(MCStreamer &S, formatted_raw_ostream &OS)
+ : SystemZTargetStreamer(S), OS(OS) {}
+ void emitMachine(StringRef CPU) override {
+ OS << "\t.machine " << CPU << "\n";
+ }
+};
+
} // end namespace llvm
#endif // LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETSTREAMER_H
More information about the llvm-commits
mailing list