Handle logical shift right (at least I hope so :) )
[oota-llvm.git] / lib / Target / MSP430 / MSP430ISelLowering.h
1 //==-- MSP430ISelLowering.h - MSP430 DAG Lowering Interface ------*- C++ -*-==//
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 the interfaces that MSP430 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TARGET_MSP430_ISELLOWERING_H
16 #define LLVM_TARGET_MSP430_ISELLOWERING_H
17
18 #include "MSP430.h"
19 #include "llvm/CodeGen/SelectionDAG.h"
20 #include "llvm/Target/TargetLowering.h"
21
22 namespace llvm {
23   namespace MSP430ISD {
24     enum {
25       FIRST_NUMBER = ISD::BUILTIN_OP_END,
26
27       /// Return with a flag operand. Operand 0 is the chain operand.
28       RET_FLAG,
29
30       /// Y = R{R,L}A X, rotate right (left) arithmetically
31       RRA, RLA,
32
33       /// Y = RRC X, rotate right via carry
34       RRC,
35
36       /// CALL/TAILCALL - These operations represent an abstract call
37       /// instruction, which includes a bunch of information.
38       CALL,
39
40       /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
41       /// and TargetGlobalAddress.
42       Wrapper,
43
44       /// CMP - Compare instruction.
45       CMP,
46
47       /// SetCC. Operand 0 is condition code, and operand 1 is the flag
48       /// operand produced by a CMP instruction.
49       SETCC,
50
51       /// MSP430 conditional branches. Operand 0 is the chain operand, operand 1
52       /// is the block to branch if condition is true, operand 2 is the
53       /// condition code, and operand 3 is the flag operand produced by a CMP
54       /// instruction.
55       BRCOND,
56
57       /// SELECT. Operand 0 and operand 1 are selection variable, operand 3 is
58       /// condition code and operand 4 is flag operand.
59       SELECT,
60
61       /// CLRC - Clear carry bit
62       CLRC
63     };
64   }
65
66   class MSP430Subtarget;
67   class MSP430TargetMachine;
68
69   class MSP430TargetLowering : public TargetLowering {
70   public:
71     explicit MSP430TargetLowering(MSP430TargetMachine &TM);
72
73     /// LowerOperation - Provide custom lowering hooks for some operations.
74     virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
75
76     /// getTargetNodeName - This method returns the name of a target specific
77     /// DAG node.
78     virtual const char *getTargetNodeName(unsigned Opcode) const;
79
80     virtual MVT getSetCCResultType(MVT VT) const;
81
82     SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG);
83     SDValue LowerCALL(SDValue Op, SelectionDAG &DAG);
84     SDValue LowerRET(SDValue Op, SelectionDAG &DAG);
85     SDValue LowerCCCArguments(SDValue Op, SelectionDAG &DAG);
86     SDValue LowerShifts(SDValue Op, SelectionDAG &DAG);
87     SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG);
88     SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG);
89     SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG);
90     SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG);
91     SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG);
92
93     SDValue LowerCCCCallTo(SDValue Op, SelectionDAG &DAG,
94                            unsigned CC);
95     SDNode* LowerCallResult(SDValue Chain, SDValue InFlag,
96                             CallSDNode *TheCall,
97                             unsigned CallingConv, SelectionDAG &DAG);
98
99     MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
100                                                    MachineBasicBlock *BB) const;
101
102   private:
103     const MSP430Subtarget &Subtarget;
104     const MSP430TargetMachine &TM;
105   };
106 } // namespace llvm
107
108 #endif // LLVM_TARGET_MSP430_ISELLOWERING_H