aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86FastISel.h
blob: 0f2b26a4d2f534c522d9447501c450783d2965cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//===-- 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 MachineBasicBlock;
class MachineFunction;
class TargetInstrInfo;

namespace X86 {

FastISel *createFastISel(MachineBasicBlock *mbb, MachineFunction *mf,
                         const TargetInstrInfo *tii);

} // namespace X86

} // namespace llvm

#endif