MC: Direct all {fragment,section,symbol} address access through the MCAsmLayout object.
[oota-llvm.git] / include / llvm / MC / MachObjectWriter.h
1 //===-- llvm/MC/MachObjectWriter.h - Mach-O File Writer ---------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_MC_MACHOBJECTWRITER_H
11 #define LLVM_MC_MACHOBJECTWRITER_H
12
13 #include "llvm/MC/MCObjectWriter.h"
14 #include "llvm/Support/raw_ostream.h"
15 #include <cassert>
16
17 namespace llvm {
18 class MCAsmFixup;
19 class MCAssembler;
20 class MCFragment;
21 class MCValue;
22 class raw_ostream;
23
24 class MachObjectWriter : public MCObjectWriter {
25   void *Impl;
26
27 public:
28   MachObjectWriter(raw_ostream &OS, bool Is64Bit, bool IsLittleEndian = true);
29   virtual ~MachObjectWriter();
30
31   virtual void ExecutePostLayoutBinding(MCAssembler &Asm);
32
33   virtual void RecordRelocation(const MCAssembler &Asm,
34                                 const MCAsmLayout &Layout,
35                                 const MCFragment *Fragment,
36                                 const MCAsmFixup &Fixup, MCValue Target,
37                                 uint64_t &FixedValue);
38
39   virtual void WriteObject(const MCAssembler &Asm, const MCAsmLayout &Layout);
40 };
41
42 } // End llvm namespace
43
44 #endif