Emacs-tag and some comment fix for all ARM, CellSPU, Hexagon, MBlaze, MSP430, PPC...
[oota-llvm.git] / lib / Target / X86 / X86TargetObjectFile.h
1 //===-- X86TargetObjectFile.h - X86 Object Info -----------------*- 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_TARGET_X86_TARGETOBJECTFILE_H
11 #define LLVM_TARGET_X86_TARGETOBJECTFILE_H
12
13 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
14 #include "llvm/Target/TargetMachine.h"
15 #include "llvm/Target/TargetLoweringObjectFile.h"
16
17 namespace llvm {
18   class X86TargetMachine;
19
20   /// X8664_MachoTargetObjectFile - This TLOF implementation is used for Darwin
21   /// x86-64.
22   class X8664_MachoTargetObjectFile : public TargetLoweringObjectFileMachO {
23   public:
24     virtual const MCExpr *
25     getExprForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
26                                    MachineModuleInfo *MMI, unsigned Encoding,
27                                    MCStreamer &Streamer) const;
28
29     // getCFIPersonalitySymbol - The symbol that gets passed to
30     // .cfi_personality.
31     virtual MCSymbol *
32     getCFIPersonalitySymbol(const GlobalValue *GV, Mangler *Mang,
33                             MachineModuleInfo *MMI) const;
34   };
35
36 } // end namespace llvm
37
38 #endif