blob: b7e5055998735ce583d7745150e25c04f6507008 [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- HexagonISelLowering.h - Hexagon DAG Lowering Interface --*- C++ -*-===//
Tony Linthicumb4b54152011-12-12 21:14:40 +00002//
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 Hexagon uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef Hexagon_ISELLOWERING_H
16#define Hexagon_ISELLOWERING_H
17
Craig Topper79aa3412012-03-17 18:46:09 +000018#include "Hexagon.h"
Tony Linthicumb4b54152011-12-12 21:14:40 +000019#include "llvm/Target/TargetLowering.h"
20#include "llvm/CallingConv.h"
21#include "llvm/CodeGen/CallingConvLower.h"
Tony Linthicumb4b54152011-12-12 21:14:40 +000022
23namespace llvm {
24 namespace HexagonISD {
25 enum {
26 FIRST_NUMBER = ISD::BUILTIN_OP_END,
27
28 CONST32,
29 CONST32_GP, // For marking data present in GP.
Sirish Pande7517bbc2012-05-10 20:20:25 +000030 FCONST32,
Tony Linthicumb4b54152011-12-12 21:14:40 +000031 SETCC,
32 ADJDYNALLOC,
33 ARGEXTEND,
34
35 CMPICC, // Compare two GPR operands, set icc.
36 CMPFCC, // Compare two FP operands, set fcc.
37 BRICC, // Branch to dest on icc condition
38 BRFCC, // Branch to dest on fcc condition
39 SELECT_ICC, // Select between two values using the current ICC flags.
40 SELECT_FCC, // Select between two values using the current FCC flags.
41
42 Hi, Lo, // Hi/Lo operations, typically on a global address.
43
44 FTOI, // FP to Int within a FP register.
45 ITOF, // Int to FP within a FP register.
46
47 CALL, // A call instruction.
48 RET_FLAG, // Return with a flag operand.
49 BR_JT, // Jump table.
50 BARRIER, // Memory barrier.
51 WrapperJT,
Sirish Pande7517bbc2012-05-10 20:20:25 +000052 WrapperCP,
Tony Linthicumb4b54152011-12-12 21:14:40 +000053 TC_RETURN
54 };
55 }
56
57 class HexagonTargetLowering : public TargetLowering {
58 int VarArgsFrameOffset; // Frame offset to start of varargs area.
59
60 bool CanReturnSmallStruct(const Function* CalleeFn,
61 unsigned& RetSize) const;
62
63 public:
64 HexagonTargetMachine &TM;
65 explicit HexagonTargetLowering(HexagonTargetMachine &targetmachine);
66
67 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
68 /// for tail call optimization. Targets which want to do tail call
69 /// optimization should implement this function.
70 bool
71 IsEligibleForTailCallOptimization(SDValue Callee,
72 CallingConv::ID CalleeCC,
73 bool isVarArg,
74 bool isCalleeStructRet,
75 bool isCallerStructRet,
76 const
77 SmallVectorImpl<ISD::OutputArg> &Outs,
78 const SmallVectorImpl<SDValue> &OutVals,
79 const SmallVectorImpl<ISD::InputArg> &Ins,
80 SelectionDAG& DAG) const;
81
82 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const;
83 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
84
85 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
86
87 virtual const char *getTargetNodeName(unsigned Opcode) const;
88 SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG) const;
89 SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
90 SDValue LowerINLINEASM(SDValue Op, SelectionDAG &DAG) const;
91 SDValue LowerEH_LABEL(SDValue Op, SelectionDAG &DAG) const;
92 SDValue LowerFormalArguments(SDValue Chain,
93 CallingConv::ID CallConv, bool isVarArg,
94 const SmallVectorImpl<ISD::InputArg> &Ins,
95 DebugLoc dl, SelectionDAG &DAG,
96 SmallVectorImpl<SDValue> &InVals) const;
97 SDValue LowerGLOBALADDRESS(SDValue Op, SelectionDAG &DAG) const;
98
99 SDValue LowerCall(SDValue Chain, SDValue Callee,
100 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +0000101 bool doesNotRet, bool &isTailCall,
Tony Linthicumb4b54152011-12-12 21:14:40 +0000102 const SmallVectorImpl<ISD::OutputArg> &Outs,
103 const SmallVectorImpl<SDValue> &OutVals,
104 const SmallVectorImpl<ISD::InputArg> &Ins,
105 DebugLoc dl, SelectionDAG &DAG,
106 SmallVectorImpl<SDValue> &InVals) const;
107
108 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
109 CallingConv::ID CallConv, bool isVarArg,
110 const SmallVectorImpl<ISD::InputArg> &Ins,
111 DebugLoc dl, SelectionDAG &DAG,
112 SmallVectorImpl<SDValue> &InVals,
113 const SmallVectorImpl<SDValue> &OutVals,
114 SDValue Callee) const;
115
116 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
117 SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
118 SDValue LowerMEMBARRIER(SDValue Op, SelectionDAG& DAG) const;
119 SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG& DAG) const;
120 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
121
122 SDValue LowerReturn(SDValue Chain,
123 CallingConv::ID CallConv, bool isVarArg,
124 const SmallVectorImpl<ISD::OutputArg> &Outs,
125 const SmallVectorImpl<SDValue> &OutVals,
126 DebugLoc dl, SelectionDAG &DAG) const;
127
128 virtual MachineBasicBlock
129 *EmitInstrWithCustomInserter(MachineInstr *MI,
130 MachineBasicBlock *BB) const;
131
132 SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
Sirish Pande7517bbc2012-05-10 20:20:25 +0000133 SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
Tony Linthicumb4b54152011-12-12 21:14:40 +0000134 virtual EVT getSetCCResultType(EVT VT) const {
135 return MVT::i1;
136 }
137
138 virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
139 SDValue &Base, SDValue &Offset,
140 ISD::MemIndexedMode &AM,
141 SelectionDAG &DAG) const;
142
143 std::pair<unsigned, const TargetRegisterClass*>
144 getRegForInlineAsmConstraint(const std::string &Constraint,
145 EVT VT) const;
146
147 // Intrinsics
148 virtual SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op,
149 SelectionDAG &DAG) const;
150 /// isLegalAddressingMode - Return true if the addressing mode represented
151 /// by AM is legal for this target, for a load/store of the specified type.
152 /// The type may be VoidTy, in which case only return true if the addressing
153 /// mode is legal for a load/store of any legal type.
154 /// TODO: Handle pre/postinc as well.
155 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const;
Sirish Pande7517bbc2012-05-10 20:20:25 +0000156 virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
Tony Linthicumb4b54152011-12-12 21:14:40 +0000157
158 /// isLegalICmpImmediate - Return true if the specified immediate is legal
159 /// icmp immediate, that is the target has icmp instructions which can
160 /// compare a register against the immediate without having to materialize
161 /// the immediate into a register.
162 virtual bool isLegalICmpImmediate(int64_t Imm) const;
163 };
164} // end namespace llvm
165
166#endif // Hexagon_ISELLOWERING_H