blob: bab3dc23eeadedb0b47b8d6b528273ae59a3971f [file] [log] [blame]
Anton Korobeynikov4403b932009-07-16 13:27:25 +00001//==-- SystemZISelLowering.h - SystemZ 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 SystemZ uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_SystemZ_ISELLOWERING_H
16#define LLVM_TARGET_SystemZ_ISELLOWERING_H
17
18#include "SystemZ.h"
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +000019#include "SystemZRegisterInfo.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
21#include "llvm/Target/TargetLowering.h"
22
23namespace llvm {
24 namespace SystemZISD {
25 enum {
Anton Korobeynikov87a24e32009-07-16 13:28:59 +000026 FIRST_NUMBER = ISD::BUILTIN_OP_END,
27
28 /// Return with a flag operand. Operand 0 is the chain operand.
Anton Korobeynikovba249e42009-07-16 13:50:21 +000029 RET_FLAG,
30
Dan Gohman98ca4f22009-08-05 01:29:28 +000031 /// CALL - These operations represent an abstract call
Anton Korobeynikovba249e42009-07-16 13:50:21 +000032 /// instruction, which includes a bunch of information.
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +000033 CALL,
34
Anton Korobeynikovbad769f2009-07-16 13:57:27 +000035 /// PCRelativeWrapper - PC relative address
36 PCRelativeWrapper,
37
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +000038 /// CMP, UCMP - Compare instruction
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +000039 CMP,
40 UCMP,
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +000041
42 /// BRCOND - Conditional branch. Operand 0 is chain operand, operand 1 is
43 /// the block to branch if condition is true, operand 2 is condition code
44 /// and operand 3 is the flag operand produced by a CMP instruction.
45 BRCOND,
46
47 /// SELECT - Operands 0 and 1 are selection variables, operand 2 is
48 /// condition code and operand 3 is the flag operand.
49 SELECT
Anton Korobeynikov4403b932009-07-16 13:27:25 +000050 };
51 }
52
53 class SystemZSubtarget;
54 class SystemZTargetMachine;
55
56 class SystemZTargetLowering : public TargetLowering {
57 public:
58 explicit SystemZTargetLowering(SystemZTargetMachine &TM);
59
Owen Anderson95771af2011-02-25 21:41:48 +000060 virtual MVT getShiftAmountTy(EVT LHSTy) const { return MVT::i64; }
61
Anton Korobeynikov4403b932009-07-16 13:27:25 +000062 /// LowerOperation - Provide custom lowering hooks for some operations.
Dan Gohmand858e902010-04-17 15:26:15 +000063 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000064
65 /// getTargetNodeName - This method returns the name of a target specific
66 /// DAG node.
67 virtual const char *getTargetNodeName(unsigned Opcode) const;
68
Anton Korobeynikov3c2734c2009-08-21 18:15:41 +000069 std::pair<unsigned, const TargetRegisterClass*>
70 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
71 TargetLowering::ConstraintType
72 getConstraintType(const std::string &Constraint) const;
73
Dan Gohmand858e902010-04-17 15:26:15 +000074 SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const;
75 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
76 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
77 SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
78 SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikovba249e42009-07-16 13:50:21 +000079
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +000080 SDValue EmitCmp(SDValue LHS, SDValue RHS,
81 ISD::CondCode CC, SDValue &SystemZCC,
Dan Gohmand858e902010-04-17 15:26:15 +000082 SelectionDAG &DAG) const;
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +000083
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +000084
85 MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000086 MachineBasicBlock *BB) const;
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +000087
Evan Chengeb2f9692009-10-27 19:56:55 +000088 /// isFPImmLegal - Returns true if the target can instruction select the
89 /// specified FP immediate natively. If false, the legalizer will
90 /// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +000091 virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
Evan Chengeb2f9692009-10-27 19:56:55 +000092
Anton Korobeynikov4403b932009-07-16 13:27:25 +000093 private:
Dan Gohman98ca4f22009-08-05 01:29:28 +000094 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000095 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +000096 bool isTailCall,
97 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +000098 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +000099 const SmallVectorImpl<ISD::InputArg> &Ins,
100 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000101 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000102
103 SDValue LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000104 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000105 bool isVarArg,
106 const SmallVectorImpl<ISD::InputArg> &Ins,
107 DebugLoc dl,
108 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000109 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000110
111 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000112 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000113 const SmallVectorImpl<ISD::InputArg> &Ins,
114 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000115 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000116
117 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 virtual SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000124 LowerCall(SDValue Chain, SDValue Callee,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000125 CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000126 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000127 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000128 const SmallVectorImpl<ISD::InputArg> &Ins,
129 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000130 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000131
132 virtual SDValue
133 LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000134 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000135 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000136 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000137 DebugLoc dl, SelectionDAG &DAG) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000138
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000139 const SystemZSubtarget &Subtarget;
140 const SystemZTargetMachine &TM;
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +0000141 const SystemZRegisterInfo *RegInfo;
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000142 };
143} // namespace llvm
144
145#endif // LLVM_TARGET_SystemZ_ISELLOWERING_H