blob: c0ababd8b8af768b448d4e03ebac99ff21a6a970 [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//==-- 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
22namespace llvm {
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000023 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 Korobeynikovd2c94ae2009-05-03 13:03:33 +000028 RET_FLAG,
29
30 /// Y = RRA X, rotate right arithmetically
Anton Korobeynikov44288852009-05-03 13:07:31 +000031 RRA,
32
33 /// CALL/TAILCALL - These operations represent an abstract call
34 /// instruction, which includes a bunch of information.
Anton Korobeynikov3513ca82009-05-03 13:08:33 +000035 CALL,
36
37 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
38 /// and TargetGlobalAddress.
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +000039 Wrapper,
40
41 /// CMP - Compare instruction.
42 CMP,
43
44 /// SetCC. Operand 0 is condition code, and operand 1 is the flag
45 /// operand produced by a CMP instruction.
46 SETCC,
47
48 /// MSP430 conditional branches. Operand 0 is the chain operand, operand 1
49 /// is the block to branch if condition is true, operand 2 is the
50 /// condition code, and operand 3 is the flag operand produced by a CMP
51 /// instruction.
52 BRCOND
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000053 };
54 }
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000055
56 class MSP430Subtarget;
57 class MSP430TargetMachine;
58
59 class MSP430TargetLowering : public TargetLowering {
60 public:
61 explicit MSP430TargetLowering(MSP430TargetMachine &TM);
62
63 /// LowerOperation - Provide custom lowering hooks for some operations.
64 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000065
66 /// getTargetNodeName - This method returns the name of a target specific
67 /// DAG node.
68 virtual const char *getTargetNodeName(unsigned Opcode) const;
69
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +000070 virtual MVT getSetCCResultType(MVT VT) const;
71
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000072 SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov44288852009-05-03 13:07:31 +000073 SDValue LowerCALL(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000074 SDValue LowerRET(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000075 SDValue LowerCCCArguments(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000076 SDValue LowerShifts(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +000077 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +000078 SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG);
79 SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov44288852009-05-03 13:07:31 +000080
81 SDValue LowerCCCCallTo(SDValue Op, SelectionDAG &DAG,
82 unsigned CC);
83 SDNode* LowerCallResult(SDValue Chain, SDValue InFlag,
84 CallSDNode *TheCall,
85 unsigned CallingConv, SelectionDAG &DAG);
86
87
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000088 private:
89 const MSP430Subtarget &Subtarget;
90 const MSP430TargetMachine &TM;
91 };
92} // namespace llvm
93
94#endif // LLVM_TARGET_MSP430_ISELLOWERING_H