aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86FastISel.cpp
blob: 34d8418095ac4c950ba60cb2e4e1f30cc09eaaa5 (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
35
36
37
38
39
40
41
42
//===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===//
//
//                     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 X86-specific support for the FastISel class. Much
// of the target-specific code is generated by tablegen in the file
// X86GenFastISel.inc, which is #included here.
//
//===----------------------------------------------------------------------===//

#include "X86.h"
#include "X86RegisterInfo.h"
#include "X86ISelLowering.h"
#include "X86FastISel.h"
#include "X86TargetMachine.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "X86GenFastISel.inc"

namespace llvm {

namespace X86 {

bool
FastISel::TargetSelectInstruction(Instruction *I,
                                  DenseMap<const Value *, unsigned> &ValueMap,
                      DenseMap<const BasicBlock *, MachineBasicBlock *> &MBBMap,
                                  MachineBasicBlock *MBB)  {
  switch (I->getOpcode()) {
  default: break;
  }

  return false;
}

}

}