2010-06-16 20:04:22 +00:00
|
|
|
//===- MCObjectStreamer.h - MCStreamer Object File Interface ----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCOBJECTSTREAMER_H
|
|
|
|
#define LLVM_MC_MCOBJECTSTREAMER_H
|
|
|
|
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class MCAssembler;
|
|
|
|
class MCCodeEmitter;
|
|
|
|
class MCSectionData;
|
2010-07-19 06:13:10 +00:00
|
|
|
class MCExpr;
|
|
|
|
class MCFragment;
|
|
|
|
class MCDataFragment;
|
2011-07-25 23:24:55 +00:00
|
|
|
class MCAsmBackend;
|
2010-06-16 20:04:22 +00:00
|
|
|
class raw_ostream;
|
|
|
|
|
|
|
|
/// \brief Streaming object file generation interface.
|
|
|
|
///
|
|
|
|
/// This class provides an implementation of the MCStreamer interface which is
|
|
|
|
/// suitable for use with the assembler backend. Specific object file formats
|
|
|
|
/// are expected to subclass this interface to implement directives specific
|
|
|
|
/// to that file format or custom semantics expected by the object writer
|
|
|
|
/// implementation.
|
|
|
|
class MCObjectStreamer : public MCStreamer {
|
|
|
|
MCAssembler *Assembler;
|
2010-06-16 20:04:25 +00:00
|
|
|
MCSectionData *CurSectionData;
|
2010-06-16 20:04:22 +00:00
|
|
|
|
2010-11-01 16:27:31 +00:00
|
|
|
virtual void EmitInstToData(const MCInst &Inst) = 0;
|
|
|
|
|
2010-06-16 20:04:22 +00:00
|
|
|
protected:
|
2011-07-25 23:24:55 +00:00
|
|
|
MCObjectStreamer(MCContext &Context, MCAsmBackend &TAB,
|
2010-12-07 00:27:36 +00:00
|
|
|
raw_ostream &_OS, MCCodeEmitter *_Emitter);
|
2011-07-25 23:24:55 +00:00
|
|
|
MCObjectStreamer(MCContext &Context, MCAsmBackend &TAB,
|
2011-03-09 17:33:05 +00:00
|
|
|
raw_ostream &_OS, MCCodeEmitter *_Emitter,
|
|
|
|
MCAssembler *_Assembler);
|
2010-06-16 20:04:22 +00:00
|
|
|
~MCObjectStreamer();
|
|
|
|
|
2010-06-16 20:04:25 +00:00
|
|
|
MCSectionData *getCurrentSectionData() const {
|
|
|
|
return CurSectionData;
|
|
|
|
}
|
|
|
|
|
2010-07-19 06:13:10 +00:00
|
|
|
MCFragment *getCurrentFragment() const;
|
|
|
|
|
|
|
|
/// Get a data fragment to write into, creating a new one if the current
|
|
|
|
/// fragment is not a data fragment.
|
|
|
|
MCDataFragment *getOrCreateDataFragment() const;
|
|
|
|
|
|
|
|
const MCExpr *AddValueSymbols(const MCExpr *Value);
|
|
|
|
|
2010-06-16 20:04:22 +00:00
|
|
|
public:
|
|
|
|
MCAssembler &getAssembler() { return *Assembler; }
|
2010-06-16 20:04:25 +00:00
|
|
|
|
|
|
|
/// @name MCStreamer Interface
|
|
|
|
/// @{
|
|
|
|
|
2010-11-28 17:18:55 +00:00
|
|
|
virtual void EmitLabel(MCSymbol *Symbol);
|
2010-12-10 07:39:47 +00:00
|
|
|
virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
|
2011-05-01 03:50:49 +00:00
|
|
|
unsigned AddrSpace);
|
2011-04-21 23:39:26 +00:00
|
|
|
virtual void EmitULEB128Value(const MCExpr *Value);
|
|
|
|
virtual void EmitSLEB128Value(const MCExpr *Value);
|
2010-11-01 14:28:48 +00:00
|
|
|
virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
|
2011-02-16 01:08:29 +00:00
|
|
|
virtual void ChangeSection(const MCSection *Section);
|
2010-11-01 16:27:31 +00:00
|
|
|
virtual void EmitInstruction(const MCInst &Inst);
|
2010-12-02 05:44:06 +00:00
|
|
|
virtual void EmitInstToFragment(const MCInst &Inst);
|
2010-12-02 05:59:38 +00:00
|
|
|
virtual void EmitValueToOffset(const MCExpr *Offset, unsigned char Value);
|
2010-12-03 00:55:40 +00:00
|
|
|
virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
|
|
|
|
const MCSymbol *LastLabel,
|
2011-07-14 05:43:07 +00:00
|
|
|
const MCSymbol *Label,
|
|
|
|
unsigned PointerSize);
|
2010-12-28 05:39:27 +00:00
|
|
|
virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
|
|
|
|
const MCSymbol *Label);
|
2010-06-16 20:04:25 +00:00
|
|
|
virtual void Finish();
|
|
|
|
|
|
|
|
/// @}
|
2010-06-16 20:04:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|