blob: 0c1d825acff43094752d36838351f8b8389a42cc [file] [log] [blame]
Anton Korobeynikov32b7d5b2009-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 Korobeynikovab79c0a2009-07-16 13:51:53 +000019#include "SystemZRegisterInfo.h"
Anton Korobeynikov32b7d5b2009-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 Korobeynikov974e6a52009-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 Korobeynikov961cd4a2009-07-16 13:50:21 +000029 RET_FLAG,
30
Dan Gohman9178de12009-08-05 01:29:28 +000031 /// CALL - These operations represent an abstract call
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000032 /// instruction, which includes a bunch of information.
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000033 CALL,
34
Anton Korobeynikov9044c192009-07-16 13:57:27 +000035 /// PCRelativeWrapper - PC relative address
36 PCRelativeWrapper,
37
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000038 /// CMP, UCMP - Compare instruction
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000039 CMP,
40 UCMP,
Anton Korobeynikov0b608cb2009-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 Korobeynikov32b7d5b2009-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
60 /// LowerOperation - Provide custom lowering hooks for some operations.
61 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
62
63 /// getTargetNodeName - This method returns the name of a target specific
64 /// DAG node.
65 virtual const char *getTargetNodeName(unsigned Opcode) const;
66
Anton Korobeynikov147a9a72009-07-16 14:36:52 +000067 /// getFunctionAlignment - Return the Log2 alignment of this function.
68 virtual unsigned getFunctionAlignment(const Function *F) const {
69 return 1;
70 }
71
Anton Korobeynikov18ce5752009-08-21 18:15:41 +000072 std::pair<unsigned, const TargetRegisterClass*>
73 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
74 TargetLowering::ConstraintType
75 getConstraintType(const std::string &Constraint) const;
76
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000077 SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000078 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov9044c192009-07-16 13:57:27 +000079 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov23bf4412009-07-16 14:07:50 +000080 SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov67565d62009-07-16 14:19:35 +000081 SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000082
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000083 SDValue EmitCmp(SDValue LHS, SDValue RHS,
84 ISD::CondCode CC, SDValue &SystemZCC,
85 SelectionDAG &DAG);
86
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000087
88 MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
89 MachineBasicBlock *BB) const;
90
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000091 private:
Dan Gohman9178de12009-08-05 01:29:28 +000092 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
93 unsigned CallConv, bool isVarArg,
94 bool isTailCall,
95 const SmallVectorImpl<ISD::OutputArg> &Outs,
96 const SmallVectorImpl<ISD::InputArg> &Ins,
97 DebugLoc dl, SelectionDAG &DAG,
98 SmallVectorImpl<SDValue> &InVals);
99
100 SDValue LowerCCCArguments(SDValue Chain,
101 unsigned CallConv,
102 bool isVarArg,
103 const SmallVectorImpl<ISD::InputArg> &Ins,
104 DebugLoc dl,
105 SelectionDAG &DAG,
106 SmallVectorImpl<SDValue> &InVals);
107
108 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
109 unsigned CallConv, bool isVarArg,
110 const SmallVectorImpl<ISD::InputArg> &Ins,
111 DebugLoc dl, SelectionDAG &DAG,
112 SmallVectorImpl<SDValue> &InVals);
113
114 virtual SDValue
115 LowerFormalArguments(SDValue Chain,
116 unsigned CallConv, bool isVarArg,
117 const SmallVectorImpl<ISD::InputArg> &Ins,
118 DebugLoc dl, SelectionDAG &DAG,
119 SmallVectorImpl<SDValue> &InVals);
120 virtual SDValue
121 LowerCall(SDValue Chain, SDValue Callee,
122 unsigned CallConv, bool isVarArg, bool isTailCall,
123 const SmallVectorImpl<ISD::OutputArg> &Outs,
124 const SmallVectorImpl<ISD::InputArg> &Ins,
125 DebugLoc dl, SelectionDAG &DAG,
126 SmallVectorImpl<SDValue> &InVals);
127
128 virtual SDValue
129 LowerReturn(SDValue Chain,
130 unsigned CallConv, bool isVarArg,
131 const SmallVectorImpl<ISD::OutputArg> &Outs,
132 DebugLoc dl, SelectionDAG &DAG);
133
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +0000134 const SystemZSubtarget &Subtarget;
135 const SystemZTargetMachine &TM;
Anton Korobeynikovab79c0a2009-07-16 13:51:53 +0000136 const SystemZRegisterInfo *RegInfo;
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +0000137 };
138} // namespace llvm
139
140#endif // LLVM_TARGET_SystemZ_ISELLOWERING_H