2006-09-08 06:05:02 +08:00
|
|
|
//=====-- X86TargetAsmInfo.h - X86 asm properties -------------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 06:05:02 +08: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 11:42:04 +08:00
|
|
|
|
2006-09-08 06:05:02 +08:00
|
|
|
// Forward declaration.
|
|
|
|
class X86TargetMachine;
|
|
|
|
|
|
|
|
struct X86TargetAsmInfo : public TargetAsmInfo {
|
2007-09-26 04:27:06 +08:00
|
|
|
explicit X86TargetAsmInfo(const X86TargetMachine &TM);
|
2006-11-29 09:14:06 +08:00
|
|
|
|
|
|
|
virtual bool ExpandInlineAsm(CallInst *CI) const;
|
|
|
|
private:
|
|
|
|
bool LowerToBSwap(CallInst *CI) const;
|
2006-09-08 06:05:02 +08:00
|
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|