#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCInstrInfo.h"
#include "llvm/MC/MCParser/MCAsmParser.h"
+#include "llvm/MC/MCSection.h"
#include "llvm/MC/MCStreamer.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/MC/MCSymbol.h"
}
namespace {
+
+// Common infrastructure is allowed to assume the existence of a current
+// section. Since this streamer doesn't need one itself, we just provide
+// a dummy one.
+class DummySection : public MCSection {
+public:
+ DummySection() : MCSection(SV_ELF, SectionKind::getText()) {}
+
+ virtual void PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS,
+ const MCExpr *Subsection) const {}
+
+ virtual std::string getLabelBeginName() const { return ""; }
+
+ virtual std::string getLabelEndName() const { return ""; }
+
+ virtual bool UseCodeAlign() const { return false; }
+
+ virtual bool isVirtualSection() const { return false; }
+};
+
class RecordStreamer : public MCStreamer {
public:
enum State { NeverSeen, Global, Defined, DefinedGlobal, Used };
+ DummySection TheSection;
+
private:
StringMap<State> Symbols;
return Symbols.end();
}
- RecordStreamer(MCContext &Context) : MCStreamer(Context, 0) {}
+ RecordStreamer(MCContext &Context) : MCStreamer(Context, 0) {
+ SwitchSection(&TheSection);
+ }
virtual void EmitInstruction(const MCInst &Inst) {
// Scan for values.