pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / lib / Target / Alpha / AlphaISelLowering.h
blob90e5d1f0dd3da56cc9e7ef7fdf645a45d3f16756
1 //===-- AlphaISelLowering.h - Alpha 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 Alpha uses to lower LLVM code into a
11 // selection DAG.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
16 #define LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
18 #include "llvm/ADT/VectorExtras.h"
19 #include "llvm/Target/TargetLowering.h"
20 #include "llvm/CodeGen/SelectionDAG.h"
21 #include "Alpha.h"
23 namespace llvm {
25 namespace AlphaISD {
26 enum NodeType {
27 // Start the numbering where the builting ops and target ops leave off.
28 FIRST_NUMBER = ISD::BUILTIN_OP_END,
29 //These corrospond to the identical Instruction
30 CVTQT_, CVTQS_, CVTTQ_,
32 /// GPRelHi/GPRelLo - These represent the high and low 16-bit
33 /// parts of a global address respectively.
34 GPRelHi, GPRelLo,
36 /// RetLit - Literal Relocation of a Global
37 RelLit,
39 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr,
42 /// CALL - Normal call.
43 CALL,
45 /// DIVCALL - used for special library calls for div and rem
46 DivCall,
48 /// return flag operand
49 RET_FLAG,
51 /// CHAIN = COND_BRANCH CHAIN, OPC, (G|F)PRC, DESTBB [, INFLAG] - This
52 /// corresponds to the COND_BRANCH pseudo instruction.
53 /// *PRC is the input register to compare to zero,
54 /// OPC is the branch opcode to use (e.g. Alpha::BEQ),
55 /// DESTBB is the destination block to branch to, and INFLAG is
56 /// an optional input flag argument.
57 COND_BRANCH_I, COND_BRANCH_F
62 class AlphaTargetLowering : public TargetLowering {
63 int VarArgsOffset; // What is the offset to the first vaarg
64 int VarArgsBase; // What is the base FrameIndex
65 public:
66 explicit AlphaTargetLowering(TargetMachine &TM);
68 /// getSetCCResultType - Get the SETCC result ValueType
69 virtual MVT::SimpleValueType getSetCCResultType(EVT VT) const;
71 /// LowerOperation - Provide custom lowering hooks for some operations.
72 ///
73 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
75 /// ReplaceNodeResults - Replace the results of node with an illegal result
76 /// type with new values built out of custom code.
77 ///
78 virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
79 SelectionDAG &DAG);
81 // Friendly names for dumps
82 const char *getTargetNodeName(unsigned Opcode) const;
84 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
85 CallingConv::ID CallConv, bool isVarArg,
86 const SmallVectorImpl<ISD::InputArg> &Ins,
87 DebugLoc dl, SelectionDAG &DAG,
88 SmallVectorImpl<SDValue> &InVals);
90 ConstraintType getConstraintType(const std::string &Constraint) const;
92 std::vector<unsigned>
93 getRegClassForInlineAsmConstraint(const std::string &Constraint,
94 EVT VT) const;
96 MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI,
97 MachineBasicBlock *BB) const;
99 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
101 /// getFunctionAlignment - Return the Log2 alignment of this function.
102 virtual unsigned getFunctionAlignment(const Function *F) const;
104 private:
105 // Helpers for custom lowering.
106 void LowerVAARG(SDNode *N, SDValue &Chain, SDValue &DataPtr,
107 SelectionDAG &DAG);
109 virtual SDValue
110 LowerFormalArguments(SDValue Chain,
111 CallingConv::ID CallConv, bool isVarArg,
112 const SmallVectorImpl<ISD::InputArg> &Ins,
113 DebugLoc dl, SelectionDAG &DAG,
114 SmallVectorImpl<SDValue> &InVals);
116 virtual SDValue
117 LowerCall(SDValue Chain, SDValue Callee,
118 CallingConv::ID CallConv, bool isVarArg, bool isTailCall,
119 const SmallVectorImpl<ISD::OutputArg> &Outs,
120 const SmallVectorImpl<ISD::InputArg> &Ins,
121 DebugLoc dl, SelectionDAG &DAG,
122 SmallVectorImpl<SDValue> &InVals);
124 virtual SDValue
125 LowerReturn(SDValue Chain,
126 CallingConv::ID CallConv, bool isVarArg,
127 const SmallVectorImpl<ISD::OutputArg> &Outs,
128 DebugLoc dl, SelectionDAG &DAG);
132 #endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H