LLVM 24.0.0git
M68kISelLowering.h
Go to the documentation of this file.
1//===-- M68kISelLowering.h - M68k DAG Lowering Interface --------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file defines the interfaces that M68k uses to lower LLVM code into a
11/// selection DAG.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_LIB_TARGET_M68K_M68KISELLOWERING_H
16#define LLVM_LIB_TARGET_M68K_M68KISELLOWERING_H
17
18#include "M68k.h"
19
23#include "llvm/IR/Function.h"
24
25#include <deque>
26
27namespace llvm {
28
29/// Define some predicates that are used for node matching.
30namespace M68k {
31
32/// Determines whether the callee is required to pop its
33/// own arguments. Callee pop is necessary to support tail calls.
34bool isCalleePop(CallingConv::ID CallingConv, bool IsVarArg, bool GuaranteeTCO);
35
36} // end namespace M68k
37
38//===--------------------------------------------------------------------===//
39// TargetLowering Implementation
40//===--------------------------------------------------------------------===//
41
43class M68kSubtarget;
44
46 const M68kSubtarget &Subtarget;
47 const M68kTargetMachine &TM;
48
49public:
50 explicit M68kTargetLowering(const M68kTargetMachine &TM,
51 const M68kSubtarget &STI);
52
54 const M68kSubtarget &STI);
55
56 /// Return the value type to use for ISD::SETCC.
58 EVT VT) const override;
59
60 /// EVT is not used in-tree, but is used by out-of-tree target.
61 virtual MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override;
62
63 /// Provide custom lowering hooks for some operations.
64 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
65
66 /// Return the entry encoding for a jump table in the current function.
67 /// The returned value is a member of the MachineJumpTableInfo::JTEntryKind
68 /// enum.
69 unsigned getJumpTableEncoding() const override;
70
73 unsigned uid,
74 MCContext &Ctx) const override;
75
76 /// Returns relocation base for the given PIC jumptable.
78 SelectionDAG &DAG) const override;
79
80 /// This returns the relocation base for the given PIC jumptable,
81 /// the same as getPICJumpTableRelocBase, but as an MCExpr.
83 unsigned JTI,
84 MCContext &Ctx) const override;
85
86 ConstraintType getConstraintType(StringRef ConstraintStr) const override;
87
88 std::pair<unsigned, const TargetRegisterClass *>
90 StringRef Constraint, MVT VT) const override;
91
92 // Lower operand with C_Immediate and C_Other constraint type
94 std::vector<SDValue> &Ops,
95 SelectionDAG &DAG) const override;
96
99 MachineBasicBlock *MBB) const override;
100
102 bool IsVarArg) const;
103
105 shouldExpandAtomicRMWInIR(const AtomicRMWInst *RMW) const override;
106
107 /// If a physical register, this returns the register that receives the
108 /// exception address on entry to an EH pad.
111 const Constant *PersonalityFn) const override;
112
113 /// If a physical register, this returns the register that receives the
114 /// exception typeid on entry to a landing pad.
117 const Constant *PersonalityFn) const override;
118
120 getInlineAsmMemConstraint(StringRef ConstraintCode) const override;
121
122 // We need this for DAGCombiner to eliminate as many ISD::SELECT as possible.
123 // Otherwise we might end up with M68kISD::CMOV.
124 bool convertSelectOfConstantsToMath(EVT VT) const override { return true; }
125
126private:
127 unsigned GetAlignedArgumentStackSize(unsigned StackSize,
128 SelectionDAG &DAG) const;
129
130 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override {
131 // In many cases, `GA` doesn't give the correct offset to fold. It's
132 // hard to know if the real offset actually fits into the displacement
133 // of the perspective addressing mode.
134 // Thus, we disable offset folding altogether and leave that to ISel
135 // patterns.
136 return false;
137 }
138
139 SDValue getReturnAddressFrameIndex(SelectionDAG &DAG) const;
140
141 /// Emit a load of return address if tail call
142 /// optimization is performed and it is required.
143 SDValue EmitTailCallLoadRetAddr(SelectionDAG &DAG, SDValue &OutRetAddr,
144 SDValue Chain, bool IsTailCall, int FPDiff,
145 const SDLoc &DL) const;
146
147 /// Emit a store of the return address if tail call
148 /// optimization is performed and it is required (FPDiff!=0).
149 SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
150 SDValue Chain, SDValue RetAddrFrIdx,
151 EVT PtrVT, unsigned SlotSize, int FPDiff,
152 const SDLoc &DL) const;
153
154 SDValue LowerMemArgument(SDValue Chain, CallingConv::ID CallConv,
155 const SmallVectorImpl<ISD::InputArg> &ArgInfo,
156 const SDLoc &DL, SelectionDAG &DAG,
157 const CCValAssign &VA, MachineFrameInfo &MFI,
158 unsigned ArgIdx) const;
159
160 SDValue LowerMemOpCallTo(SDValue Chain, SDValue StackPtr, SDValue Arg,
161 const SDLoc &DL, SelectionDAG &DAG,
162 const CCValAssign &VA, ISD::ArgFlagsTy Flags) const;
163
164 SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) const;
165 SDValue LowerToBTST(SDValue And, ISD::CondCode CC, const SDLoc &DL,
166 SelectionDAG &DAG) const;
167 SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const;
168 SDValue LowerSETCCCARRY(SDValue Op, SelectionDAG &DAG) const;
169 SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
170 SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
171 SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) const;
172 SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
173 SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
174 SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const;
175 SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
176 SDValue LowerGlobalAddress(const GlobalValue *GV, const SDLoc &DL,
177 int64_t Offset, SelectionDAG &DAG) const;
178 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
179 SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
180 SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
181 SDValue LowerShiftLeftParts(SDValue Op, SelectionDAG &DAG) const;
182 SDValue LowerShiftRightParts(SDValue Op, SelectionDAG &DAG, bool IsSRA) const;
183
184 SDValue LowerATOMICFENCE(SDValue Op, SelectionDAG &DAG) const;
185
187 CallingConv::ID CallConv, bool IsVarArg,
188 const SmallVectorImpl<ISD::InputArg> &Ins,
189 const SDLoc &DL, SelectionDAG &DAG,
190 SmallVectorImpl<SDValue> &InVals) const;
191 SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
192
193 /// LowerFormalArguments - transform physical registers into virtual
194 /// registers and generate load operations for arguments places on the stack.
195 SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CCID,
196 bool IsVarArg,
197 const SmallVectorImpl<ISD::InputArg> &Ins,
198 const SDLoc &DL, SelectionDAG &DAG,
199 SmallVectorImpl<SDValue> &InVals) const override;
200
201 SDValue LowerCall(CallLoweringInfo &CLI,
202 SmallVectorImpl<SDValue> &InVals) const override;
203
204 bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
205 bool isVarArg,
206 const SmallVectorImpl<ISD::OutputArg> &Outs,
207 LLVMContext &Context, const Type *RetTy) const override;
208
209 /// Lower the result values of a call into the
210 /// appropriate copies out of appropriate physical registers.
211 SDValue LowerReturn(SDValue Chain, CallingConv::ID CCID, bool IsVarArg,
212 const SmallVectorImpl<ISD::OutputArg> &Outs,
213 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
214 SelectionDAG &DAG) const override;
215
216 SDValue LowerExternalSymbolCall(SelectionDAG &DAG, SDLoc loc,
217 llvm::StringRef SymbolName,
218 ArgListTy &&ArgList) const;
219 SDValue getTLSGetAddr(GlobalAddressSDNode *GA, SelectionDAG &DAG,
220 unsigned TargetFlags) const;
221 SDValue getM68kReadTp(SDLoc Loc, SelectionDAG &DAG) const;
222
223 SDValue LowerTLSGeneralDynamic(GlobalAddressSDNode *GA,
224 SelectionDAG &DAG) const;
225 SDValue LowerTLSLocalDynamic(GlobalAddressSDNode *GA,
226 SelectionDAG &DAG) const;
227 SDValue LowerTLSInitialExec(GlobalAddressSDNode *GA, SelectionDAG &DAG) const;
228 SDValue LowerTLSLocalExec(GlobalAddressSDNode *GA, SelectionDAG &DAG) const;
229
230 bool decomposeMulByConstant(LLVMContext &Context, EVT VT,
231 SDValue C) const override;
232
233 MachineBasicBlock *EmitLoweredSelect(MachineInstr &I,
234 MachineBasicBlock *MBB) const;
235 MachineBasicBlock *EmitLoweredSegAlloca(MachineInstr &MI,
236 MachineBasicBlock *BB) const;
237
238 /// Emit nodes that will be selected as "test Op0,Op0", or something
239 /// equivalent, for use with the given M68k condition code.
240 SDValue EmitTest(SDValue Op0, unsigned M68kCC, const SDLoc &dl,
241 SelectionDAG &DAG) const;
242
243 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
244 /// equivalent, for use with the given M68k condition code.
245 SDValue EmitCmp(SDValue Op0, SDValue Op1, unsigned M68kCC, const SDLoc &dl,
246 SelectionDAG &DAG) const;
247
248 /// Check whether the call is eligible for tail call optimization. Targets
249 /// that want to do tail call optimization should implement this function.
250 bool IsEligibleForTailCallOptimization(
251 SDValue Callee, CallingConv::ID CalleeCC, bool IsVarArg,
252 bool IsCalleeStructRet, bool IsCallerStructRet, Type *RetTy,
253 const SmallVectorImpl<ISD::OutputArg> &Outs,
254 const SmallVectorImpl<SDValue> &OutVals,
255 const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const;
256
257 SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
258};
259} // namespace llvm
260
261#endif // LLVM_LIB_TARGET_M68K_M68KISELLOWERING_H
static SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG)
return SDValue()
static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG)
static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG)
static SDValue LowerSETCCCARRY(SDValue Op, SelectionDAG &DAG)
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
IRTranslator LLVM IR MI
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
This file contains the entry points for global functions defined in the M68k target library,...
#define I(x, y, z)
Definition MD5.cpp:57
Register const TargetRegisterInfo * TRI
static void LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain, SDValue Arg, SDValue PtrOff, int SPDiff, unsigned ArgOffset, bool isPPC64, bool isTailCall, bool isVector, SmallVectorImpl< SDValue > &MemOpChains, SmallVectorImpl< TailCallArgumentInfo > &TailCallArguments, const SDLoc &dl)
LowerMemOpCallTo - Store the argument to the stack or remember it in case of tail calls.
static SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG, const SparcSubtarget *Subtarget)
This file describes how to lower LLVM code to machine code.
static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT, unsigned SlotSize, int FPDiff, const SDLoc &dl)
Emit a store of the return address if tail call optimization is performed and it is required (FPDiff!...
static SDValue EmitTest(SDValue Op, X86::CondCode X86CC, const SDLoc &dl, SelectionDAG &DAG, const X86Subtarget &Subtarget)
Emit nodes that will be selected as "test Op0,Op0", or something equivalent.
static SDValue EmitCmp(SDValue Op0, SDValue Op1, X86::CondCode X86CC, const SDLoc &dl, SelectionDAG &DAG, const X86Subtarget &Subtarget)
Emit nodes that will be selected as "cmp Op0,Op1", or something equivalent.
static SDValue LowerCallResult(SDValue Chain, SDValue InGlue, const SmallVectorImpl< CCValAssign > &RVLocs, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl< SDValue > &InVals)
LowerCallResult - Lower the result values of a call into the appropriate copies out of appropriate ph...
an instruction that atomically reads a memory location, combines it with another value,...
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
ConstraintType getConstraintType(StringRef ConstraintStr) const override
Given a constraint, return the type of constraint it is for this target.
void LowerAsmOperandForConstraint(SDValue Op, StringRef Constraint, std::vector< SDValue > &Ops, SelectionDAG &DAG) const override
Lower the specified operand into the Ops vector.
MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *MBB) const override
This method should be implemented by targets that mark instructions with the 'usesCustomInserter' fla...
AtomicExpansionKind shouldExpandAtomicRMWInIR(const AtomicRMWInst *RMW) const override
Returns how the IR-level AtomicExpand pass should expand the given AtomicRMW, if at all.
virtual MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override
EVT is not used in-tree, but is used by out-of-tree target.
const MCExpr * LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI, const MachineBasicBlock *MBB, unsigned uid, MCContext &Ctx) const override
SDValue getPICJumpTableRelocBase(SDValue Table, SelectionDAG &DAG) const override
Returns relocation base for the given PIC jumptable.
const MCExpr * getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI, MCContext &Ctx) const override
This returns the relocation base for the given PIC jumptable, the same as getPICJumpTableRelocBase,...
bool convertSelectOfConstantsToMath(EVT VT) const override
Return true if a select of constants (select Cond, C1, C2) should be transformed into simple math ops...
CCAssignFn * getCCAssignFn(CallingConv::ID CC, bool Return, bool IsVarArg) const
static const M68kTargetLowering * create(const M68kTargetMachine &TM, const M68kSubtarget &STI)
M68kTargetLowering(const M68kTargetMachine &TM, const M68kSubtarget &STI)
InlineAsm::ConstraintCode getInlineAsmMemConstraint(StringRef ConstraintCode) const override
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override
Provide custom lowering hooks for some operations.
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const override
Return the value type to use for ISD::SETCC.
Register getExceptionSelectorRegister(ExceptionHandling EH, const Constant *PersonalityFn) const override
If a physical register, this returns the register that receives the exception typeid on entry to a la...
unsigned getJumpTableEncoding() const override
Return the entry encoding for a jump table in the current function.
Register getExceptionPointerRegister(ExceptionHandling EH, const Constant *PersonalityFn) const override
If a physical register, this returns the register that receives the exception address on entry to an ...
std::pair< unsigned, const TargetRegisterClass * > getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const override
Given a physical register constraint (e.g.
Context object for machine code objects.
Definition MCContext.h:83
Base class for the full range of assembler expressions which are needed for parsing.
Definition MCExpr.h:34
Machine Value Type.
Representation of each machine instruction.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
AtomicExpansionKind
Enum that specifies what an atomic load/AtomicRMWInst is expanded to, if at all.
TargetLowering(const TargetLowering &)=delete
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
Define some predicates that are used for node matching.
bool isCalleePop(CallingConv::ID CallingConv, bool IsVarArg, bool GuaranteeTCO)
Determines whether the callee is required to pop its own arguments.
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:578
bool CCAssignFn(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, Type *OrigTy, CCState &State)
CCAssignFn - This function assigns a location for Val, updating State to reflect the change.
@ And
Bitwise or logical AND of integers.
DWARFExpression::Operation Op
ExceptionHandling
Definition CodeGen.h:54
#define N
Extended Value Type.
Definition ValueTypes.h:35