1 //===-- PIC16ISelDAGToDAG.cpp - A dag to dag inst selector for PIC16 ------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines an instruction selector for the PIC16 target.
12 //===----------------------------------------------------------------------===//
14 #define DEBUG_TYPE "pic16-isel"
16 #include "PIC16ISelDAGToDAG.h"
17 #include "llvm/Support/Debug.h"
21 /// createPIC16ISelDag - This pass converts a legalized DAG into a
22 /// PIC16-specific DAG, ready for instruction scheduling.
23 FunctionPass
*llvm::createPIC16ISelDag(PIC16TargetMachine
&TM
) {
24 return new PIC16DAGToDAGISel(TM
);
28 /// InstructionSelect - This callback is invoked by
29 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
30 void PIC16DAGToDAGISel::InstructionSelect() {
33 CurDAG
->RemoveDeadNodes();
36 /// Select - Select instructions not customized! Used for
37 /// expanded, promoted and normal instructions.
38 SDNode
* PIC16DAGToDAGISel::Select(SDValue N
) {
40 // Select the default instruction.
41 SDNode
*ResNode
= SelectCode(N
);
47 // SelectDirectAddr - Match a direct address for DAG.
48 // A direct address could be a globaladdress or externalsymbol.
49 bool PIC16DAGToDAGISel::SelectDirectAddr(SDValue Op
, SDValue N
,
51 // Return true if TGA or ES.
52 if (N
.getOpcode() == ISD::TargetGlobalAddress
53 || N
.getOpcode() == ISD::TargetExternalSymbol
) {