Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 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 { |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 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. |
Anton Korobeynikov | d2c94ae | 2009-05-03 13:03:33 +0000 | [diff] [blame] | 28 | RET_FLAG, |
| 29 | |
| 30 | /// Y = RRA X, rotate right arithmetically |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 31 | RRA, |
| 32 | |
| 33 | /// CALL/TAILCALL - These operations represent an abstract call |
| 34 | /// instruction, which includes a bunch of information. |
| 35 | CALL |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 36 | }; |
| 37 | } |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 38 | |
| 39 | class MSP430Subtarget; |
| 40 | class MSP430TargetMachine; |
| 41 | |
| 42 | class MSP430TargetLowering : public TargetLowering { |
| 43 | public: |
| 44 | explicit MSP430TargetLowering(MSP430TargetMachine &TM); |
| 45 | |
| 46 | /// LowerOperation - Provide custom lowering hooks for some operations. |
| 47 | virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 48 | |
| 49 | /// getTargetNodeName - This method returns the name of a target specific |
| 50 | /// DAG node. |
| 51 | virtual const char *getTargetNodeName(unsigned Opcode) const; |
| 52 | |
Anton Korobeynikov | c8fbb6a | 2009-05-03 12:59:33 +0000 | [diff] [blame] | 53 | SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 54 | SDValue LowerCALL(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 55 | SDValue LowerRET(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | c8fbb6a | 2009-05-03 12:59:33 +0000 | [diff] [blame] | 56 | SDValue LowerCCCArguments(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | d2c94ae | 2009-05-03 13:03:33 +0000 | [diff] [blame] | 57 | SDValue LowerShifts(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 58 | |
| 59 | SDValue LowerCCCCallTo(SDValue Op, SelectionDAG &DAG, |
| 60 | unsigned CC); |
| 61 | SDNode* LowerCallResult(SDValue Chain, SDValue InFlag, |
| 62 | CallSDNode *TheCall, |
| 63 | unsigned CallingConv, SelectionDAG &DAG); |
| 64 | |
| 65 | |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 66 | private: |
| 67 | const MSP430Subtarget &Subtarget; |
| 68 | const MSP430TargetMachine &TM; |
| 69 | }; |
| 70 | } // namespace llvm |
| 71 | |
| 72 | #endif // LLVM_TARGET_MSP430_ISELLOWERING_H |