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"
|
|
|
|
|
|
|
|
namespace llvm {
|
2007-01-16 03:42:04 +00:00
|
|
|
|
2006-09-07 22:05:02 +00:00
|
|
|
// Forward declaration.
|
|
|
|
class X86TargetMachine;
|
|
|
|
|
|
|
|
struct X86TargetAsmInfo : public TargetAsmInfo {
|
2007-09-25 20:27:06 +00:00
|
|
|
explicit X86TargetAsmInfo(const X86TargetMachine &TM);
|
2006-11-29 01:14:06 +00:00
|
|
|
|
|
|
|
virtual bool ExpandInlineAsm(CallInst *CI) const;
|
2008-02-29 22:09:08 +00:00
|
|
|
virtual unsigned PreferredEHDataFormat(DwarfEncoding::Target Reason,
|
|
|
|
bool Global) const;
|
2008-02-27 23:33:50 +00:00
|
|
|
|
2006-11-29 01:14:06 +00:00
|
|
|
private:
|
2008-02-27 23:33:50 +00:00
|
|
|
const X86TargetMachine* X86TM;
|
2006-11-29 01:14:06 +00:00
|
|
|
bool LowerToBSwap(CallInst *CI) const;
|
2006-09-07 22:05:02 +00:00
|
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|