Sanjiv Gupta | 09bb420 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 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 | |
Edwin Török | 4d9756a | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 16 | #include "llvm/Support/ErrorHandling.h" |
| 17 | #include "llvm/Support/raw_ostream.h" |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 18 | #include "PIC16ISelDAGToDAG.h" |
Sanjiv Gupta | 09bb420 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Debug.h" |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 20 | |
Sanjiv Gupta | 09bb420 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 21 | using namespace llvm; |
| 22 | |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 23 | /// createPIC16ISelDag - This pass converts a legalized DAG into a |
Sanjiv Gupta | 09bb420 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 24 | /// PIC16-specific DAG, ready for instruction scheduling. |
| 25 | FunctionPass *llvm::createPIC16ISelDag(PIC16TargetMachine &TM) { |
| 26 | return new PIC16DAGToDAGISel(TM); |
| 27 | } |
| 28 | |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 29 | |
| 30 | /// InstructionSelect - This callback is invoked by |
| 31 | /// SelectionDAGISel when it has created a SelectionDAG for us to codegen. |
| 32 | void PIC16DAGToDAGISel::InstructionSelect() { |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 33 | SelectRoot(*CurDAG); |
| 34 | CurDAG->RemoveDeadNodes(); |
| 35 | } |
| 36 | |
| 37 | /// Select - Select instructions not customized! Used for |
| 38 | /// expanded, promoted and normal instructions. |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame^] | 39 | SDNode* PIC16DAGToDAGISel::Select(SDNode *N) { |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 40 | |
| 41 | // Select the default instruction. |
| 42 | SDNode *ResNode = SelectCode(N); |
| 43 | |
| 44 | return ResNode; |
| 45 | } |
| 46 | |
| 47 | |
| 48 | // SelectDirectAddr - Match a direct address for DAG. |
| 49 | // A direct address could be a globaladdress or externalsymbol. |
Dan Gohman | 5f082a7 | 2010-01-05 01:24:18 +0000 | [diff] [blame^] | 50 | bool PIC16DAGToDAGISel::SelectDirectAddr(SDNode *Op, SDValue N, |
Sanjiv Gupta | 085ae4f | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 51 | SDValue &Address) { |
| 52 | // Return true if TGA or ES. |
| 53 | if (N.getOpcode() == ISD::TargetGlobalAddress |
| 54 | || N.getOpcode() == ISD::TargetExternalSymbol) { |
| 55 | Address = N; |
| 56 | return true; |
| 57 | } |
| 58 | |
| 59 | return false; |
| 60 | } |