1 //===- BlackfinISelLowering.h - Blackfin DAG Lowering Interface -*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the interfaces that Blackfin uses to lower LLVM code into a
13 //===----------------------------------------------------------------------===//
15 #ifndef BLACKFIN_ISELLOWERING_H
16 #define BLACKFIN_ISELLOWERING_H
18 #include "llvm/Target/TargetLowering.h"
25 FIRST_NUMBER
= ISD::BUILTIN_OP_END
,
26 CALL
, // A call instruction.
27 RET_FLAG
, // Return with a flag operand.
28 Wrapper
// Address wrapper
32 class BlackfinTargetLowering
: public TargetLowering
{
33 int VarArgsFrameOffset
; // Frame offset to start of varargs area.
35 BlackfinTargetLowering(TargetMachine
&TM
);
36 virtual MVT::SimpleValueType
getSetCCResultType(EVT VT
) const;
37 virtual SDValue
LowerOperation(SDValue Op
, SelectionDAG
&DAG
);
38 virtual void ReplaceNodeResults(SDNode
*N
,
39 SmallVectorImpl
<SDValue
> &Results
,
42 int getVarArgsFrameOffset() const { return VarArgsFrameOffset
; }
44 ConstraintType
getConstraintType(const std::string
&Constraint
) const;
45 std::pair
<unsigned, const TargetRegisterClass
*>
46 getRegForInlineAsmConstraint(const std::string
&Constraint
, EVT VT
) const;
48 getRegClassForInlineAsmConstraint(const std::string
&Constraint
,
50 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode
*GA
) const;
51 const char *getTargetNodeName(unsigned Opcode
) const;
52 unsigned getFunctionAlignment(const Function
*F
) const;
55 SDValue
LowerGlobalAddress(SDValue Op
, SelectionDAG
&DAG
);
56 SDValue
LowerJumpTable(SDValue Op
, SelectionDAG
&DAG
);
57 SDValue
LowerADDE(SDValue Op
, SelectionDAG
&DAG
);
60 LowerFormalArguments(SDValue Chain
,
61 CallingConv::ID CallConv
, bool isVarArg
,
62 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
63 DebugLoc dl
, SelectionDAG
&DAG
,
64 SmallVectorImpl
<SDValue
> &InVals
);
66 LowerCall(SDValue Chain
, SDValue Callee
,
67 CallingConv::ID CallConv
, bool isVarArg
, bool isTailCall
,
68 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
69 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
70 DebugLoc dl
, SelectionDAG
&DAG
,
71 SmallVectorImpl
<SDValue
> &InVals
);
74 LowerReturn(SDValue Chain
,
75 CallingConv::ID CallConv
, bool isVarArg
,
76 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
77 DebugLoc dl
, SelectionDAG
&DAG
);
79 } // end namespace llvm
81 #endif // BLACKFIN_ISELLOWERING_H