2006-09-07 22:05:02 +00:00
|
|
|
//=====-- X86TargetAsmInfo.h - X86 asm properties -------------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the X86TargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86TARGETASMINFO_H
|
|
|
|
#define X86TARGETASMINFO_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2008-07-19 13:15:21 +00:00
|
|
|
#include "llvm/Target/ELFTargetAsmInfo.h"
|
|
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
2006-09-07 22:05:02 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2007-01-16 03:42:04 +00:00
|
|
|
|
2006-09-07 22:05:02 +00:00
|
|
|
// Forward declaration.
|
|
|
|
class X86TargetMachine;
|
|
|
|
|
2008-07-19 13:15:21 +00:00
|
|
|
struct X86TargetAsmInfo : public virtual TargetAsmInfo {
|
2007-09-25 20:27:06 +00:00
|
|
|
explicit X86TargetAsmInfo(const X86TargetMachine &TM);
|
2008-07-09 13:19:08 +00:00
|
|
|
|
2006-11-29 01:14:06 +00:00
|
|
|
virtual bool ExpandInlineAsm(CallInst *CI) const;
|
2008-02-27 23:33:50 +00:00
|
|
|
|
2006-11-29 01:14:06 +00:00
|
|
|
private:
|
|
|
|
bool LowerToBSwap(CallInst *CI) const;
|
2008-07-09 13:20:48 +00:00
|
|
|
};
|
|
|
|
|
2008-07-19 13:15:21 +00:00
|
|
|
struct X86DarwinTargetAsmInfo : public X86TargetAsmInfo,
|
|
|
|
public DarwinTargetAsmInfo {
|
2008-07-09 13:20:48 +00:00
|
|
|
explicit X86DarwinTargetAsmInfo(const X86TargetMachine &TM);
|
2008-07-09 13:21:08 +00:00
|
|
|
virtual unsigned PreferredEHDataFormat(DwarfEncoding::Target Reason,
|
|
|
|
bool Global) const;
|
2008-07-09 13:20:48 +00:00
|
|
|
};
|
|
|
|
|
2008-07-19 13:15:21 +00:00
|
|
|
struct X86ELFTargetAsmInfo : public X86TargetAsmInfo,
|
|
|
|
public ELFTargetAsmInfo {
|
2008-07-09 13:20:48 +00:00
|
|
|
explicit X86ELFTargetAsmInfo(const X86TargetMachine &TM);
|
2008-07-09 13:21:08 +00:00
|
|
|
virtual unsigned PreferredEHDataFormat(DwarfEncoding::Target Reason,
|
|
|
|
bool Global) const;
|
2008-07-09 13:20:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct X86COFFTargetAsmInfo : public X86TargetAsmInfo {
|
|
|
|
explicit X86COFFTargetAsmInfo(const X86TargetMachine &TM);
|
2008-07-09 13:21:08 +00:00
|
|
|
virtual unsigned PreferredEHDataFormat(DwarfEncoding::Target Reason,
|
|
|
|
bool Global) const;
|
2008-07-09 13:21:29 +00:00
|
|
|
virtual std::string UniqueSectionForGlobal(const GlobalValue* GV,
|
|
|
|
SectionKind::Kind kind) const;
|
2008-08-16 12:57:07 +00:00
|
|
|
virtual std::string printSectionFlags(unsigned flags) const;
|
2008-07-19 13:15:21 +00:00
|
|
|
protected:
|
|
|
|
const X86TargetMachine *X86TM;
|
2008-07-09 13:20:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct X86WinTargetAsmInfo : public X86TargetAsmInfo {
|
|
|
|
explicit X86WinTargetAsmInfo(const X86TargetMachine &TM);
|
2006-09-07 22:05:02 +00:00
|
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|