blob: 80f8efaea5d2f87582afab8d6c957deb466158b0 [file] [log] [blame]
Andrew Lenharthaa38ce42005-09-02 18:46:02 +00001//===-- AlphaISelLowering.h - Alpha DAG Lowering Interface ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Andrew Lenharthaa38ce42005-09-02 18:46:02 +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
Andrew Lenharth17255992006-06-21 13:37:27 +000018#include "llvm/ADT/VectorExtras.h"
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000019#include "llvm/Target/TargetLowering.h"
20#include "llvm/CodeGen/SelectionDAG.h"
21#include "Alpha.h"
22
23namespace llvm {
24
Andrew Lenharth4907d222005-10-20 00:28:31 +000025 namespace AlphaISD {
26 enum NodeType {
27 // Start the numbering where the builting ops and target ops leave off.
Dan Gohman0ba2bcf2008-09-23 18:42:32 +000028 FIRST_NUMBER = ISD::BUILTIN_OP_END,
Andrew Lenharth7f0db912005-11-30 07:19:56 +000029 //These corrospond to the identical Instruction
Andrew Lenharth3553d862007-01-24 21:09:16 +000030 CVTQT_, CVTQS_, CVTTQ_,
Andrew Lenharth4e629512005-12-24 05:36:33 +000031
32 /// GPRelHi/GPRelLo - These represent the high and low 16-bit
Andrew Lenharthc687b482005-12-24 08:29:32 +000033 /// parts of a global address respectively.
Owen Anderson95771af2011-02-25 21:41:48 +000034 GPRelHi, GPRelLo,
Andrew Lenharthc687b482005-12-24 08:29:32 +000035
36 /// RetLit - Literal Relocation of a Global
37 RelLit,
Andrew Lenharth4e629512005-12-24 05:36:33 +000038
Andrew Lenharth0e4dd012006-06-13 18:27:39 +000039 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr,
Owen Anderson95771af2011-02-25 21:41:48 +000041
Chris Lattner2d90bd52006-01-27 23:39:00 +000042 /// CALL - Normal call.
43 CALL,
Andrew Lenharth4e629512005-12-24 05:36:33 +000044
Andrew Lenharth53d89702005-12-25 01:34:27 +000045 /// DIVCALL - used for special library calls for div and rem
Andrew Lenharthf2b806a2006-06-12 18:09:24 +000046 DivCall,
Owen Anderson95771af2011-02-25 21:41:48 +000047
Andrew Lenharthf2b806a2006-06-12 18:09:24 +000048 /// return flag operand
Andrew Lenharthf81173f2006-10-31 16:49:55 +000049 RET_FLAG,
50
51 /// CHAIN = COND_BRANCH CHAIN, OPC, (G|F)PRC, DESTBB [, INFLAG] - This
Owen Anderson95771af2011-02-25 21:41:48 +000052 /// corresponds to the COND_BRANCH pseudo instruction.
Andrew Lenharthf81173f2006-10-31 16:49:55 +000053 /// *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
Andrew Lenharth53d89702005-12-25 01:34:27 +000058
Andrew Lenharth4907d222005-10-20 00:28:31 +000059 };
60 }
61
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000062 class AlphaTargetLowering : public TargetLowering {
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000063 public:
Dan Gohman61e729e2007-08-02 21:21:54 +000064 explicit AlphaTargetLowering(TargetMachine &TM);
Owen Anderson95771af2011-02-25 21:41:48 +000065
66 virtual MVT getShiftAmountTy(EVT LHSTy) const { return MVT::i64; }
67
Scott Michel5b8f82e2008-03-10 15:42:14 +000068 /// getSetCCResultType - Get the SETCC result ValueType
Duncan Sands28b77e92011-09-06 19:07:46 +000069 virtual EVT getSetCCResultType(EVT VT) const;
Scott Michel5b8f82e2008-03-10 15:42:14 +000070
Andrew Lenharth7f0db912005-11-30 07:19:56 +000071 /// LowerOperation - Provide custom lowering hooks for some operations.
72 ///
Dan Gohmand858e902010-04-17 15:26:15 +000073 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
Duncan Sands1607f052008-12-01 11:39:25 +000074
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,
Dan Gohmand858e902010-04-17 15:26:15 +000079 SelectionDAG &DAG) const;
Andrew Lenharth84a06052006-01-16 19:53:25 +000080
Duncan Sands126d9072008-07-04 11:47:58 +000081 // Friendly names for dumps
Andrew Lenharth84a06052006-01-16 19:53:25 +000082 const char *getTargetNodeName(unsigned Opcode) const;
83
Dan Gohman98ca4f22009-08-05 01:29:28 +000084 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000085 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +000086 const SmallVectorImpl<ISD::InputArg> &Ins,
87 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +000088 SmallVectorImpl<SDValue> &InVals) const;
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000089
Chris Lattner4234f572007-03-25 02:14:49 +000090 ConstraintType getConstraintType(const std::string &Constraint) const;
Andrew Lenharth17255992006-06-21 13:37:27 +000091
John Thompson44ab89e2010-10-29 17:29:13 +000092 /// Examine constraint string and operand type and determine a weight value.
93 /// The operand object must already have been set up with the operand type.
94 ConstraintWeight getSingleConstraintMatchWeight(
95 AsmOperandInfo &info, const char *constraint) const;
96
Eric Christopher46b65f72011-06-29 19:40:01 +000097 std::pair<unsigned, const TargetRegisterClass*>
98 getRegForInlineAsmConstraint(const std::string &Constraint,
99 EVT VT) const;
Andrew Lenharth17255992006-06-21 13:37:27 +0000100
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000101 MachineBasicBlock *
102 EmitInstrWithCustomInserter(MachineInstr *MI,
103 MachineBasicBlock *BB) const;
Duncan Sands126d9072008-07-04 11:47:58 +0000104
Dan Gohman6520e202008-10-18 02:06:02 +0000105 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
106
Evan Chengeb2f9692009-10-27 19:56:55 +0000107 /// isFPImmLegal - Returns true if the target can instruction select the
108 /// specified FP immediate natively. If false, the legalizer will
109 /// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +0000110 virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
Evan Chengeb2f9692009-10-27 19:56:55 +0000111
Duncan Sands126d9072008-07-04 11:47:58 +0000112 private:
113 // Helpers for custom lowering.
Dan Gohman475871a2008-07-27 21:46:04 +0000114 void LowerVAARG(SDNode *N, SDValue &Chain, SDValue &DataPtr,
Dan Gohmand858e902010-04-17 15:26:15 +0000115 SelectionDAG &DAG) const;
Duncan Sands126d9072008-07-04 11:47:58 +0000116
Dan Gohman98ca4f22009-08-05 01:29:28 +0000117 virtual SDValue
118 LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000119 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000120 const SmallVectorImpl<ISD::InputArg> &Ins,
121 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000122 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000123
124 virtual SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000125 LowerCall(SDValue Chain, SDValue Callee,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000126 CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000127 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000128 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000129 const SmallVectorImpl<ISD::InputArg> &Ins,
130 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000131 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000132
133 virtual SDValue
134 LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000135 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000136 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000137 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000138 DebugLoc dl, SelectionDAG &DAG) const;
Andrew Lenharthaa38ce42005-09-02 18:46:02 +0000139 };
140}
141
142#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H