blob: e68b3ffe9f5c1f9378f64b0d72cf0cadc25e215a [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
31 RRA
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000032 };
33 }
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000034
35 class MSP430Subtarget;
36 class MSP430TargetMachine;
37
38 class MSP430TargetLowering : public TargetLowering {
39 public:
40 explicit MSP430TargetLowering(MSP430TargetMachine &TM);
41
42 /// LowerOperation - Provide custom lowering hooks for some operations.
43 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000044
45 /// getTargetNodeName - This method returns the name of a target specific
46 /// DAG node.
47 virtual const char *getTargetNodeName(unsigned Opcode) const;
48
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000049 SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000050 SDValue LowerRET(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000051 SDValue LowerCCCArguments(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000052 SDValue LowerShifts(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000053
54 private:
55 const MSP430Subtarget &Subtarget;
56 const MSP430TargetMachine &TM;
57 };
58} // namespace llvm
59
60#endif // LLVM_TARGET_MSP430_ISELLOWERING_H