2008-08-19 21:45:35 +00:00
|
|
|
//===-- X86FastISel.h - X86 FastISel header -------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interface to the X86-specific support for the FastISel
|
|
|
|
// class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86FASTISEL_H
|
|
|
|
#define X86FASTISEL_H
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class FastISel;
|
|
|
|
class MachineFunction;
|
|
|
|
|
|
|
|
namespace X86 {
|
|
|
|
|
2008-08-20 21:05:57 +00:00
|
|
|
FastISel *createFastISel(MachineFunction &mf);
|
2008-08-19 21:45:35 +00:00
|
|
|
|
|
|
|
} // namespace X86
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|