summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/FileWriters.h
blob: 6baa89f21cd7daa193aefa7b8b84685d50e1558b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===-- FileWriters.h - File Writers Creation Functions ---------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Bill Wendling and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Functions to add the various file writer passes.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CODEGEN_FILEWRITERS_H
#define LLVM_CODEGEN_FILEWRITERS_H

#include <iosfwd>

namespace llvm {

  class FunctionPassManager;
  class MachineCodeEmitter;
  class TargetMachine;

  MachineCodeEmitter *AddELFWriter(FunctionPassManager &FPM, std::ostream &O,
                                   TargetMachine &TM);
  MachineCodeEmitter *AddMachOWriter(FunctionPassManager &FPM, std::ostream &O,
                                     TargetMachine &TM);

} // end llvm namespace

#endif // LLVM_CODEGEN_FILEWRITERS_H