198da8fc1736497ba875b605e5a34fb3f4a36044
[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 MCAssembler;
19 class MCFragment;
20 class MCFixup;
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 MCFixup &Fixup, MCValue Target,
37                                 uint64_t &FixedValue);
38
39   virtual bool IsFixupFullyResolved(const MCAssembler &Asm,
40                                     const MCValue Target,
41                                     bool IsPCRel,
42                                     const MCFragment *DF) const;
43
44   virtual void WriteObject(const MCAssembler &Asm, const MCAsmLayout &Layout);
45 };
46
47 } // End llvm namespace
48
49 #endif