blob: 098c33fc57a0d9e2ee1f2365bed1f5913a5f0e3a [file] [log] [blame]
Andrew Lenharth9690a4f2005-09-02 18:46:02 +00001//===-- AlphaISelLowering.h - Alpha DAG Lowering Interface ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Lenharth9690a4f2005-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 Lenharthb0316ea2006-06-21 13:37:27 +000018#include "llvm/ADT/VectorExtras.h"
Andrew Lenharth9690a4f2005-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 Lenharth7b698672005-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 Gohmaned1cf1a2008-09-23 18:42:32 +000028 FIRST_NUMBER = ISD::BUILTIN_OP_END,
Andrew Lenharth6db615d2005-11-30 07:19:56 +000029 //These corrospond to the identical Instruction
Andrew Lenharthc4bdea02007-01-24 21:09:16 +000030 CVTQT_, CVTQS_, CVTTQ_,
Andrew Lenharth46214882005-12-24 05:36:33 +000031
32 /// GPRelHi/GPRelLo - These represent the high and low 16-bit
Andrew Lenharth5b18ed92005-12-24 08:29:32 +000033 /// parts of a global address respectively.
34 GPRelHi, GPRelLo,
35
36 /// RetLit - Literal Relocation of a Global
37 RelLit,
Andrew Lenharth46214882005-12-24 05:36:33 +000038
Andrew Lenharthf570fee2006-06-13 18:27:39 +000039 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr,
Chris Lattner2c00db82006-01-27 23:39:00 +000041
42 /// CALL - Normal call.
43 CALL,
Andrew Lenharth46214882005-12-24 05:36:33 +000044
Andrew Lenharth0fce6132005-12-25 01:34:27 +000045 /// DIVCALL - used for special library calls for div and rem
Andrew Lenharth80528492006-06-12 18:09:24 +000046 DivCall,
47
48 /// return flag operand
Andrew Lenharth692e4152006-10-31 16:49:55 +000049 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
Andrew Lenharth0fce6132005-12-25 01:34:27 +000058
Andrew Lenharth7b698672005-10-20 00:28:31 +000059 };
60 }
61
Andrew Lenharth9690a4f2005-09-02 18:46:02 +000062 class AlphaTargetLowering : public TargetLowering {
63 int VarArgsOffset; // What is the offset to the first vaarg
64 int VarArgsBase; // What is the base FrameIndex
Andrew Lenharth6db615d2005-11-30 07:19:56 +000065 bool useITOF;
Andrew Lenharth9690a4f2005-09-02 18:46:02 +000066 public:
Dan Gohman5f6a9da52007-08-02 21:21:54 +000067 explicit AlphaTargetLowering(TargetMachine &TM);
Andrew Lenharth6db615d2005-11-30 07:19:56 +000068
Scott Michela6729e82008-03-10 15:42:14 +000069 /// getSetCCResultType - Get the SETCC result ValueType
Duncan Sands8feb6942009-01-01 15:52:00 +000070 virtual MVT getSetCCResultType(MVT VT) const;
Scott Michela6729e82008-03-10 15:42:14 +000071
Andrew Lenharth6db615d2005-11-30 07:19:56 +000072 /// LowerOperation - Provide custom lowering hooks for some operations.
73 ///
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000074 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
Duncan Sands6ed40142008-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);
Andrew Lenharth81b108c2006-01-16 19:53:25 +000081
Duncan Sands93e180342008-07-04 11:47:58 +000082 // Friendly names for dumps
Andrew Lenharth81b108c2006-01-16 19:53:25 +000083 const char *getTargetNodeName(unsigned Opcode) const;
84
Eli Friedman916a0f32009-07-19 01:11:32 +000085 SDValue LowerCALL(SDValue Op, SelectionDAG &DAG);
86 SDNode *LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
87 unsigned CallingConv, SelectionDAG &DAG);
Andrew Lenharth9690a4f2005-09-02 18:46:02 +000088
Chris Lattnerd6855142007-03-25 02:14:49 +000089 ConstraintType getConstraintType(const std::string &Constraint) const;
Andrew Lenharthb0316ea2006-06-21 13:37:27 +000090
91 std::vector<unsigned>
92 getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands13237ac2008-06-06 12:08:01 +000093 MVT VT) const;
Andrew Lenharthb0316ea2006-06-21 13:37:27 +000094
Andrew Lenharth6db615d2005-11-30 07:19:56 +000095 bool hasITOF() { return useITOF; }
Andrew Lenharth95528942008-02-21 06:45:13 +000096
97 MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman747e55b2009-02-07 16:15:20 +000098 MachineBasicBlock *BB) const;
Duncan Sands93e180342008-07-04 11:47:58 +000099
Dan Gohman2fe6bee2008-10-18 02:06:02 +0000100 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
101
Bill Wendling512ff732009-07-01 18:50:55 +0000102 /// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling31ceb1b2009-06-30 22:38:32 +0000103 virtual unsigned getFunctionAlignment(const Function *F) const;
104
Duncan Sands93e180342008-07-04 11:47:58 +0000105 private:
106 // Helpers for custom lowering.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000107 void LowerVAARG(SDNode *N, SDValue &Chain, SDValue &DataPtr,
Duncan Sands93e180342008-07-04 11:47:58 +0000108 SelectionDAG &DAG);
109
Andrew Lenharth9690a4f2005-09-02 18:46:02 +0000110 };
111}
112
113#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H