blob: f18d6fa4e22e877f93074c641c4183c8a4afd9f3 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- AlphaISelLowering.h - Alpha DAG Lowering Interface ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that Alpha uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
16#define LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
17
18#include "llvm/ADT/VectorExtras.h"
19#include "llvm/Target/TargetLowering.h"
20#include "llvm/CodeGen/SelectionDAG.h"
21#include "Alpha.h"
22
23namespace llvm {
24
25 namespace AlphaISD {
26 enum NodeType {
27 // Start the numbering where the builting ops and target ops leave off.
Dan Gohman868636e2008-09-23 18:42:32 +000028 FIRST_NUMBER = ISD::BUILTIN_OP_END,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029 //These corrospond to the identical Instruction
30 CVTQT_, CVTQS_, CVTTQ_,
31
32 /// GPRelHi/GPRelLo - These represent the high and low 16-bit
33 /// parts of a global address respectively.
34 GPRelHi, GPRelLo,
35
36 /// RetLit - Literal Relocation of a Global
37 RelLit,
38
39 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr,
41
42 /// CALL - Normal call.
43 CALL,
44
45 /// DIVCALL - used for special library calls for div and rem
46 DivCall,
47
48 /// return flag operand
49 RET_FLAG,
50
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
58
59 };
60 }
61
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 bool useITOF;
66 public:
Dan Gohman3a78bbf2007-08-02 21:21:54 +000067 explicit AlphaTargetLowering(TargetMachine &TM);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068
Scott Michel502151f2008-03-10 15:42:14 +000069 /// getSetCCResultType - Get the SETCC result ValueType
Owen Andersonac9de032009-08-10 22:56:29 +000070 virtual EVT::SimpleValueType getSetCCResultType(EVT VT) const;
Scott Michel502151f2008-03-10 15:42:14 +000071
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 /// LowerOperation - Provide custom lowering hooks for some operations.
73 ///
Dan Gohman8181bd12008-07-27 21:46:04 +000074 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +000075
76 /// ReplaceNodeResults - Replace the results of node with an illegal result
77 /// type with new values built out of custom code.
78 ///
79 virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
80 SelectionDAG &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081
Duncan Sandsac496a12008-07-04 11:47:58 +000082 // Friendly names for dumps
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 const char *getTargetNodeName(unsigned Opcode) const;
84
Dan Gohman9178de12009-08-05 01:29:28 +000085 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
86 unsigned CallConv, bool isVarArg,
87 const SmallVectorImpl<ISD::InputArg> &Ins,
88 DebugLoc dl, SelectionDAG &DAG,
89 SmallVectorImpl<SDValue> &InVals);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090
91 ConstraintType getConstraintType(const std::string &Constraint) const;
92
93 std::vector<unsigned>
94 getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersonac9de032009-08-10 22:56:29 +000095 EVT VT) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096
97 bool hasITOF() { return useITOF; }
Andrew Lenharthe44f3902008-02-21 06:45:13 +000098
99 MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman96d60922009-02-07 16:15:20 +0000100 MachineBasicBlock *BB) const;
Duncan Sandsac496a12008-07-04 11:47:58 +0000101
Dan Gohman36322c72008-10-18 02:06:02 +0000102 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
103
Bill Wendling045f2632009-07-01 18:50:55 +0000104 /// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling25a8ae32009-06-30 22:38:32 +0000105 virtual unsigned getFunctionAlignment(const Function *F) const;
106
Duncan Sandsac496a12008-07-04 11:47:58 +0000107 private:
108 // Helpers for custom lowering.
Dan Gohman8181bd12008-07-27 21:46:04 +0000109 void LowerVAARG(SDNode *N, SDValue &Chain, SDValue &DataPtr,
Duncan Sandsac496a12008-07-04 11:47:58 +0000110 SelectionDAG &DAG);
111
Dan Gohman9178de12009-08-05 01:29:28 +0000112 virtual SDValue
113 LowerFormalArguments(SDValue Chain,
114 unsigned CallConv, bool isVarArg,
115 const SmallVectorImpl<ISD::InputArg> &Ins,
116 DebugLoc dl, SelectionDAG &DAG,
117 SmallVectorImpl<SDValue> &InVals);
118
119 virtual SDValue
120 LowerCall(SDValue Chain, SDValue Callee,
121 unsigned CallConv, bool isVarArg, bool isTailCall,
122 const SmallVectorImpl<ISD::OutputArg> &Outs,
123 const SmallVectorImpl<ISD::InputArg> &Ins,
124 DebugLoc dl, SelectionDAG &DAG,
125 SmallVectorImpl<SDValue> &InVals);
126
127 virtual SDValue
128 LowerReturn(SDValue Chain,
129 unsigned CallConv, bool isVarArg,
130 const SmallVectorImpl<ISD::OutputArg> &Outs,
131 DebugLoc dl, SelectionDAG &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 };
133}
134
135#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H