X86: Call ulldiv and ftol2 on Windows instead of their libgcc eqivilents.
[oota-llvm.git] / lib / Target / PIC16 / PIC16ISelDAGToDAG.cpp
1 //===-- PIC16ISelDAGToDAG.cpp - A dag to dag inst selector for PIC16 ------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source 
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines an instruction selector for the PIC16 target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "pic16-isel"
15
16 #include "llvm/Support/ErrorHandling.h"
17 #include "PIC16ISelDAGToDAG.h"
18 using namespace llvm;
19
20 /// createPIC16ISelDag - This pass converts a legalized DAG into a
21 /// PIC16-specific DAG, ready for instruction scheduling.
22 FunctionPass *llvm::createPIC16ISelDag(PIC16TargetMachine &TM) {
23   return new PIC16DAGToDAGISel(TM);
24 }
25
26
27 /// Select - Select instructions not customized! Used for
28 /// expanded, promoted and normal instructions.
29 SDNode* PIC16DAGToDAGISel::Select(SDNode *N) {
30
31   // Select the default instruction.
32   SDNode *ResNode = SelectCode(N);
33
34   return ResNode;
35 }
36
37
38 // SelectDirectAddr - Match a direct address for DAG. 
39 // A direct address could be a globaladdress or externalsymbol.
40 bool PIC16DAGToDAGISel::SelectDirectAddr(SDValue N, SDValue &Address) {
41   // Return true if TGA or ES.
42   if (N.getOpcode() == ISD::TargetGlobalAddress
43       || N.getOpcode() == ISD::TargetExternalSymbol) {
44     Address = N;
45     return true;
46   }
47
48   return false;
49 }