LLVM 19.0.0git
X86CallLowering.cpp
Go to the documentation of this file.
1//===- llvm/lib/Target/X86/X86CallLowering.cpp - Call lowering ------------===//
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 implements the lowering of LLVM calls to machine code calls for
11/// GlobalISel.
12//
13//===----------------------------------------------------------------------===//
14
15#include "X86CallLowering.h"
16#include "X86CallingConv.h"
17#include "X86ISelLowering.h"
18#include "X86InstrInfo.h"
19#include "X86RegisterInfo.h"
20#include "X86Subtarget.h"
21#include "llvm/ADT/ArrayRef.h"
41#include "llvm/IR/Attributes.h"
42#include "llvm/IR/DataLayout.h"
43#include "llvm/IR/Function.h"
44#include "llvm/IR/Value.h"
46#include <cassert>
47#include <cstdint>
48
49using namespace llvm;
50
52 : CallLowering(&TLI) {}
53
54namespace {
55
56struct X86OutgoingValueAssigner : public CallLowering::OutgoingValueAssigner {
57private:
58 uint64_t StackSize = 0;
59 unsigned NumXMMRegs = 0;
60
61public:
62 uint64_t getStackSize() { return StackSize; }
63 unsigned getNumXmmRegs() { return NumXMMRegs; }
64
65 X86OutgoingValueAssigner(CCAssignFn *AssignFn_)
66 : CallLowering::OutgoingValueAssigner(AssignFn_) {}
67
68 bool assignArg(unsigned ValNo, EVT OrigVT, MVT ValVT, MVT LocVT,
71 CCState &State) override {
72 bool Res = AssignFn(ValNo, ValVT, LocVT, LocInfo, Flags, State);
73 StackSize = State.getStackSize();
74
75 static const MCPhysReg XMMArgRegs[] = {X86::XMM0, X86::XMM1, X86::XMM2,
76 X86::XMM3, X86::XMM4, X86::XMM5,
77 X86::XMM6, X86::XMM7};
78 if (!Info.IsFixed)
79 NumXMMRegs = State.getFirstUnallocated(XMMArgRegs);
80
81 return Res;
82 }
83};
84
85struct X86OutgoingValueHandler : public CallLowering::OutgoingValueHandler {
86 X86OutgoingValueHandler(MachineIRBuilder &MIRBuilder,
88 : OutgoingValueHandler(MIRBuilder, MRI), MIB(MIB),
89 DL(MIRBuilder.getMF().getDataLayout()),
90 STI(MIRBuilder.getMF().getSubtarget<X86Subtarget>()) {}
91
92 Register getStackAddress(uint64_t Size, int64_t Offset,
94 ISD::ArgFlagsTy Flags) override {
95 LLT p0 = LLT::pointer(0, DL.getPointerSizeInBits(0));
96 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0));
97 auto SPReg =
98 MIRBuilder.buildCopy(p0, STI.getRegisterInfo()->getStackRegister());
99
100 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset);
101
102 auto AddrReg = MIRBuilder.buildPtrAdd(p0, SPReg, OffsetReg);
103
104 MPO = MachinePointerInfo::getStack(MIRBuilder.getMF(), Offset);
105 return AddrReg.getReg(0);
106 }
107
108 void assignValueToReg(Register ValVReg, Register PhysReg,
109 const CCValAssign &VA) override {
110 MIB.addUse(PhysReg, RegState::Implicit);
111 Register ExtReg = extendRegister(ValVReg, VA);
112 MIRBuilder.buildCopy(PhysReg, ExtReg);
113 }
114
115 void assignValueToAddress(Register ValVReg, Register Addr, LLT MemTy,
116 const MachinePointerInfo &MPO,
117 const CCValAssign &VA) override {
118 MachineFunction &MF = MIRBuilder.getMF();
119 Register ExtReg = extendRegister(ValVReg, VA);
120
121 auto *MMO = MF.getMachineMemOperand(MPO, MachineMemOperand::MOStore, MemTy,
122 inferAlignFromPtrInfo(MF, MPO));
123 MIRBuilder.buildStore(ExtReg, Addr, *MMO);
124 }
125
126protected:
128 const DataLayout &DL;
129 const X86Subtarget &STI;
130};
131
132} // end anonymous namespace
133
135 MachineFunction &MF, CallingConv::ID CallConv,
136 SmallVectorImpl<CallLowering::BaseArgInfo> &Outs, bool IsVarArg) const {
139 CCState CCInfo(CallConv, IsVarArg, MF, RVLocs, Context);
140 return checkReturn(CCInfo, Outs, RetCC_X86);
141}
142
144 const Value *Val, ArrayRef<Register> VRegs,
145 FunctionLoweringInfo &FLI) const {
146 assert(((Val && !VRegs.empty()) || (!Val && VRegs.empty())) &&
147 "Return value without a vreg");
148 MachineFunction &MF = MIRBuilder.getMF();
149 auto MIB = MIRBuilder.buildInstrNoInsert(X86::RET).addImm(0);
150 const X86Subtarget &STI = MF.getSubtarget<X86Subtarget>();
151 bool Is64Bit = STI.is64Bit();
152
153 if (!FLI.CanLowerReturn) {
154 insertSRetStores(MIRBuilder, Val->getType(), VRegs, FLI.DemoteRegister);
155 MIRBuilder.buildCopy(Is64Bit ? X86::RAX : X86::EAX, FLI.DemoteRegister);
156 } else if (!VRegs.empty()) {
157 const Function &F = MF.getFunction();
159 const DataLayout &DL = MF.getDataLayout();
160
161 ArgInfo OrigRetInfo(VRegs, Val->getType(), 0);
163
164 SmallVector<ArgInfo, 4> SplitRetInfos;
165 splitToValueTypes(OrigRetInfo, SplitRetInfos, DL, F.getCallingConv());
166
167 X86OutgoingValueAssigner Assigner(RetCC_X86);
168 X86OutgoingValueHandler Handler(MIRBuilder, MRI, MIB);
169 if (!determineAndHandleAssignments(Handler, Assigner, SplitRetInfos,
170 MIRBuilder, F.getCallingConv(),
171 F.isVarArg()))
172 return false;
173 }
174
175 MIRBuilder.insertInstr(MIB);
176 return true;
177}
178
179namespace {
180
181struct X86IncomingValueHandler : public CallLowering::IncomingValueHandler {
182 X86IncomingValueHandler(MachineIRBuilder &MIRBuilder,
184 : IncomingValueHandler(MIRBuilder, MRI),
185 DL(MIRBuilder.getMF().getDataLayout()) {}
186
187 Register getStackAddress(uint64_t Size, int64_t Offset,
189 ISD::ArgFlagsTy Flags) override {
190 auto &MFI = MIRBuilder.getMF().getFrameInfo();
191
192 // Byval is assumed to be writable memory, but other stack passed arguments
193 // are not.
194 const bool IsImmutable = !Flags.isByVal();
195
196 int FI = MFI.CreateFixedObject(Size, Offset, IsImmutable);
197 MPO = MachinePointerInfo::getFixedStack(MIRBuilder.getMF(), FI);
198
199 return MIRBuilder
200 .buildFrameIndex(LLT::pointer(0, DL.getPointerSizeInBits(0)), FI)
201 .getReg(0);
202 }
203
204 void assignValueToAddress(Register ValVReg, Register Addr, LLT MemTy,
205 const MachinePointerInfo &MPO,
206 const CCValAssign &VA) override {
207 MachineFunction &MF = MIRBuilder.getMF();
208 auto *MMO = MF.getMachineMemOperand(
210 inferAlignFromPtrInfo(MF, MPO));
211 MIRBuilder.buildLoad(ValVReg, Addr, *MMO);
212 }
213
214 void assignValueToReg(Register ValVReg, Register PhysReg,
215 const CCValAssign &VA) override {
216 markPhysRegUsed(PhysReg);
217 IncomingValueHandler::assignValueToReg(ValVReg, PhysReg, VA);
218 }
219
220 /// How the physical register gets marked varies between formal
221 /// parameters (it's a basic-block live-in), and a call instruction
222 /// (it's an implicit-def of the BL).
223 virtual void markPhysRegUsed(unsigned PhysReg) = 0;
224
225protected:
226 const DataLayout &DL;
227};
228
229struct FormalArgHandler : public X86IncomingValueHandler {
231 : X86IncomingValueHandler(MIRBuilder, MRI) {}
232
233 void markPhysRegUsed(unsigned PhysReg) override {
234 MIRBuilder.getMRI()->addLiveIn(PhysReg);
235 MIRBuilder.getMBB().addLiveIn(PhysReg);
236 }
237};
238
239struct CallReturnHandler : public X86IncomingValueHandler {
240 CallReturnHandler(MachineIRBuilder &MIRBuilder, MachineRegisterInfo &MRI,
242 : X86IncomingValueHandler(MIRBuilder, MRI), MIB(MIB) {}
243
244 void markPhysRegUsed(unsigned PhysReg) override {
245 MIB.addDef(PhysReg, RegState::Implicit);
246 }
247
248protected:
250};
251
252} // end anonymous namespace
253
255 const Function &F,
257 FunctionLoweringInfo &FLI) const {
258 MachineFunction &MF = MIRBuilder.getMF();
260 auto DL = MF.getDataLayout();
261
262 SmallVector<ArgInfo, 8> SplitArgs;
263
264 if (!FLI.CanLowerReturn)
266
267 // TODO: handle variadic function
268 if (F.isVarArg())
269 return false;
270
271 unsigned Idx = 0;
272 for (const auto &Arg : F.args()) {
273 // TODO: handle not simple cases.
274 if (Arg.hasAttribute(Attribute::ByVal) ||
275 Arg.hasAttribute(Attribute::InReg) ||
276 Arg.hasAttribute(Attribute::StructRet) ||
277 Arg.hasAttribute(Attribute::SwiftSelf) ||
278 Arg.hasAttribute(Attribute::SwiftError) ||
279 Arg.hasAttribute(Attribute::Nest) || VRegs[Idx].size() > 1)
280 return false;
281
282 ArgInfo OrigArg(VRegs[Idx], Arg.getType(), Idx);
284 splitToValueTypes(OrigArg, SplitArgs, DL, F.getCallingConv());
285 Idx++;
286 }
287
288 if (SplitArgs.empty())
289 return true;
290
291 MachineBasicBlock &MBB = MIRBuilder.getMBB();
292 if (!MBB.empty())
293 MIRBuilder.setInstr(*MBB.begin());
294
295 X86OutgoingValueAssigner Assigner(CC_X86);
296 FormalArgHandler Handler(MIRBuilder, MRI);
297 if (!determineAndHandleAssignments(Handler, Assigner, SplitArgs, MIRBuilder,
298 F.getCallingConv(), F.isVarArg()))
299 return false;
300
301 // Move back to the end of the basic block.
302 MIRBuilder.setMBB(MBB);
303
304 return true;
305}
306
308 CallLoweringInfo &Info) const {
309 MachineFunction &MF = MIRBuilder.getMF();
310 const Function &F = MF.getFunction();
312 const DataLayout &DL = F.getParent()->getDataLayout();
313 const X86Subtarget &STI = MF.getSubtarget<X86Subtarget>();
314 const TargetInstrInfo &TII = *STI.getInstrInfo();
315 const X86RegisterInfo *TRI = STI.getRegisterInfo();
316
317 // Handle only Linux C, X86_64_SysV calling conventions for now.
318 if (!STI.isTargetLinux() || !(Info.CallConv == CallingConv::C ||
319 Info.CallConv == CallingConv::X86_64_SysV))
320 return false;
321
322 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
323 auto CallSeqStart = MIRBuilder.buildInstr(AdjStackDown);
324
325 // Create a temporarily-floating call instruction so we can add the implicit
326 // uses of arg registers.
327 bool Is64Bit = STI.is64Bit();
328 unsigned CallOpc = Info.Callee.isReg()
329 ? (Is64Bit ? X86::CALL64r : X86::CALL32r)
330 : (Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32);
331
332 auto MIB = MIRBuilder.buildInstrNoInsert(CallOpc)
333 .add(Info.Callee)
334 .addRegMask(TRI->getCallPreservedMask(MF, Info.CallConv));
335
336 SmallVector<ArgInfo, 8> SplitArgs;
337 for (const auto &OrigArg : Info.OrigArgs) {
338
339 // TODO: handle not simple cases.
340 if (OrigArg.Flags[0].isByVal())
341 return false;
342
343 if (OrigArg.Regs.size() > 1)
344 return false;
345
346 splitToValueTypes(OrigArg, SplitArgs, DL, Info.CallConv);
347 }
348 // Do the actual argument marshalling.
349 X86OutgoingValueAssigner Assigner(CC_X86);
350 X86OutgoingValueHandler Handler(MIRBuilder, MRI, MIB);
351 if (!determineAndHandleAssignments(Handler, Assigner, SplitArgs, MIRBuilder,
352 Info.CallConv, Info.IsVarArg))
353 return false;
354
355 bool IsFixed = Info.OrigArgs.empty() ? true : Info.OrigArgs.back().IsFixed;
356 if (STI.is64Bit() && !IsFixed && !STI.isCallingConvWin64(Info.CallConv)) {
357 // From AMD64 ABI document:
358 // For calls that may call functions that use varargs or stdargs
359 // (prototype-less calls or calls to functions containing ellipsis (...) in
360 // the declaration) %al is used as hidden argument to specify the number
361 // of SSE registers used. The contents of %al do not need to match exactly
362 // the number of registers, but must be an ubound on the number of SSE
363 // registers used and is in the range 0 - 8 inclusive.
364
365 MIRBuilder.buildInstr(X86::MOV8ri)
366 .addDef(X86::AL)
367 .addImm(Assigner.getNumXmmRegs());
368 MIB.addUse(X86::AL, RegState::Implicit);
369 }
370
371 // Now we can add the actual call instruction to the correct basic block.
372 MIRBuilder.insertInstr(MIB);
373
374 // If Callee is a reg, since it is used by a target specific
375 // instruction, it must have a register class matching the
376 // constraint of that instruction.
377 if (Info.Callee.isReg())
379 MF, *TRI, MRI, *MF.getSubtarget().getInstrInfo(),
380 *MF.getSubtarget().getRegBankInfo(), *MIB, MIB->getDesc(), Info.Callee,
381 0));
382
383 // Finally we can copy the returned value back into its virtual-register. In
384 // symmetry with the arguments, the physical register must be an
385 // implicit-define of the call instruction.
386
387 if (Info.CanLowerReturn && !Info.OrigRet.Ty->isVoidTy()) {
388 if (Info.OrigRet.Regs.size() > 1)
389 return false;
390
391 SplitArgs.clear();
393
394 splitToValueTypes(Info.OrigRet, SplitArgs, DL, Info.CallConv);
395
396 X86OutgoingValueAssigner Assigner(RetCC_X86);
397 CallReturnHandler Handler(MIRBuilder, MRI, MIB);
398 if (!determineAndHandleAssignments(Handler, Assigner, SplitArgs, MIRBuilder,
399 Info.CallConv, Info.IsVarArg))
400 return false;
401
402 if (!NewRegs.empty())
403 MIRBuilder.buildMergeLikeInstr(Info.OrigRet.Regs[0], NewRegs);
404 }
405
406 CallSeqStart.addImm(Assigner.getStackSize())
407 .addImm(0 /* see getFrameTotalSize */)
408 .addImm(0 /* see getFrameAdjustment */);
409
410 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
411 MIRBuilder.buildInstr(AdjStackUp)
412 .addImm(Assigner.getStackSize())
413 .addImm(0 /* NumBytesForCalleeToPop */);
414
415 if (!Info.CanLowerReturn)
416 insertSRetLoads(MIRBuilder, Info.OrigRet.Ty, Info.OrigRet.Regs,
417 Info.DemoteRegister, Info.DemoteStackIndex);
418
419 return true;
420}
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file contains the simple types necessary to represent the attributes associated with functions a...
basic Basic Alias true
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
uint64_t Addr
uint64_t Size
const HexagonInstrInfo * TII
Implement a low-level type suitable for MachineInstr level instruction selection.
Implement a low-level type suitable for MachineInstr level instruction selection.
#define F(x, y, z)
Definition: MD5.cpp:55
This file declares the MachineIRBuilder class.
unsigned const TargetRegisterInfo * TRI
LLVMContext & Context
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
This file describes how to lower LLVM calls to machine code calls.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:160
CCState - This class holds information needed while lowering arguments and return values.
unsigned getFirstUnallocated(ArrayRef< MCPhysReg > Regs) const
getFirstUnallocated - Return the index of the first unallocated register in the set,...
uint64_t getStackSize() const
Returns the size of the currently allocated portion of the stack.
CCValAssign - Represent assignment of one arg/retval to a location.
void insertSRetLoads(MachineIRBuilder &MIRBuilder, Type *RetTy, ArrayRef< Register > VRegs, Register DemoteReg, int FI) const
Load the returned value from the stack into virtual registers in VRegs.
bool determineAndHandleAssignments(ValueHandler &Handler, ValueAssigner &Assigner, SmallVectorImpl< ArgInfo > &Args, MachineIRBuilder &MIRBuilder, CallingConv::ID CallConv, bool IsVarArg, ArrayRef< Register > ThisReturnRegs=std::nullopt) const
Invoke ValueAssigner::assignArg on each of the given Args and then use Handler to move them to the as...
void splitToValueTypes(const ArgInfo &OrigArgInfo, SmallVectorImpl< ArgInfo > &SplitArgs, const DataLayout &DL, CallingConv::ID CallConv, SmallVectorImpl< uint64_t > *Offsets=nullptr) const
Break OrigArgInfo into one or more pieces the calling convention can process, returned in SplitArgs.
void insertSRetIncomingArgument(const Function &F, SmallVectorImpl< ArgInfo > &SplitArgs, Register &DemoteReg, MachineRegisterInfo &MRI, const DataLayout &DL) const
Insert the hidden sret ArgInfo to the beginning of SplitArgs.
void insertSRetStores(MachineIRBuilder &MIRBuilder, Type *RetTy, ArrayRef< Register > VRegs, Register DemoteReg) const
Store the return value given by VRegs into stack starting at the offset specified in DemoteReg.
bool checkReturn(CCState &CCInfo, SmallVectorImpl< BaseArgInfo > &Outs, CCAssignFn *Fn) const
void setArgFlags(ArgInfo &Arg, unsigned OpIdx, const DataLayout &DL, const FuncInfoTy &FuncInfo) const
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:110
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
Register DemoteRegister
DemoteRegister - if CanLowerReturn is false, DemoteRegister is a vreg allocated to hold a pointer to ...
bool CanLowerReturn
CanLowerReturn - true iff the function's return value can be lowered to registers.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
Definition: Function.cpp:356
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
Definition: LowLevelType.h:42
static constexpr LLT pointer(unsigned AddressSpace, unsigned SizeInBits)
Get a low-level pointer in the given address space.
Definition: LowLevelType.h:57
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
Machine Value Type.
void addLiveIn(MCRegister PhysReg, LaneBitmask LaneMask=LaneBitmask::getAll())
Adds the specified register as a live in.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const DataLayout & getDataLayout() const
Return the DataLayout attached to the Module associated to this MF.
Function & getFunction()
Return the LLVM function that this machine code represents.
Helper class to build MachineInstr.
MachineInstrBuilder insertInstr(MachineInstrBuilder MIB)
Insert an existing instruction at the insertion point.
void setInstr(MachineInstr &MI)
Set the insertion point to before MI.
MachineInstrBuilder buildMergeLikeInstr(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_MERGE_VALUES Op0, ... or Res = G_BUILD_VECTOR Op0, ... or Res = G_CONCAT_VEC...
MachineInstrBuilder buildInstr(unsigned Opcode)
Build and insert <empty> = Opcode <empty>.
MachineFunction & getMF()
Getter for the function we currently build.
const MachineBasicBlock & getMBB() const
Getter for the basic block we currently build.
void setMBB(MachineBasicBlock &MBB)
Set the insertion point to the end of MBB.
MachineRegisterInfo * getMRI()
Getter for MRI.
MachineInstrBuilder buildInstrNoInsert(unsigned Opcode)
Build but don't insert <empty> = Opcode <empty>.
MachineInstrBuilder buildCopy(const DstOp &Res, const SrcOp &Op)
Build and insert Res = COPY Op.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addRegMask(const uint32_t *Mask) const
const MachineInstrBuilder & addUse(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addDef(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a virtual register definition operand.
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:556
@ MOLoad
The memory access reads data.
@ MOInvariant
The memory access always returns the same value (or traps).
@ MOStore
The memory access writes data.
void setReg(Register Reg)
Change the register this operand corresponds to.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
void addLiveIn(MCRegister Reg, Register vreg=Register())
addLiveIn - Add the specified register as a live-in.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
bool empty() const
Definition: SmallVector.h:94
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:586
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
TargetInstrInfo - Interface to description of machine instruction set.
virtual const RegisterBankInfo * getRegBankInfo() const
If the information for the register banks is available, return it.
virtual const TargetInstrInfo * getInstrInfo() const
LLVM Value Representation.
Definition: Value.h:74
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:255
X86CallLowering(const X86TargetLowering &TLI)
bool lowerCall(MachineIRBuilder &MIRBuilder, CallLoweringInfo &Info) const override
This hook must be implemented to lower the given call instruction, including argument and return valu...
bool lowerReturn(MachineIRBuilder &MIRBuilder, const Value *Val, ArrayRef< Register > VRegs, FunctionLoweringInfo &FLI) const override
This hook behaves as the extended lowerReturn function, but for targets that do not support swifterro...
bool canLowerReturn(MachineFunction &MF, CallingConv::ID CallConv, SmallVectorImpl< BaseArgInfo > &Outs, bool IsVarArg) const override
This hook must be implemented to check whether the return values described by Outs can fit into the r...
bool lowerFormalArguments(MachineIRBuilder &MIRBuilder, const Function &F, ArrayRef< ArrayRef< Register > > VRegs, FunctionLoweringInfo &FLI) const override
This hook must be implemented to lower the incoming (formal) arguments, described by VRegs,...
const X86InstrInfo * getInstrInfo() const override
Definition: X86Subtarget.h:129
bool isCallingConvWin64(CallingConv::ID CC) const
Definition: X86Subtarget.h:350
const X86RegisterInfo * getRegisterInfo() const override
Definition: X86Subtarget.h:139
bool isTargetLinux() const
Definition: X86Subtarget.h:303
@ X86_64_SysV
The C convention as specified in the x86-64 supplement to the System V ABI, used on most non-Windows ...
Definition: CallingConv.h:151
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
@ Implicit
Not emitted register (e.g. carry, or temporary result).
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
Register constrainOperandRegClass(const MachineFunction &MF, const TargetRegisterInfo &TRI, MachineRegisterInfo &MRI, const TargetInstrInfo &TII, const RegisterBankInfo &RBI, MachineInstr &InsertPt, const TargetRegisterClass &RegClass, MachineOperand &RegMO)
Constrain the Register operand OpIdx, so that it is now constrained to the TargetRegisterClass passed...
Definition: Utils.cpp:54
bool RetCC_X86(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, CCState &State)
bool CCAssignFn(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, CCState &State)
CCAssignFn - This function assigns a location for Val, updating State to reflect the change.
bool CC_X86(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, CCState &State)
Align inferAlignFromPtrInfo(MachineFunction &MF, const MachinePointerInfo &MPO)
Definition: Utils.cpp:865
Base class for ValueHandlers used for arguments coming into the current function, or for return value...
Definition: CallLowering.h:323
Base class for ValueHandlers used for arguments passed to a function call, or for return values.
Definition: CallLowering.h:339
MachineRegisterInfo & MRI
Definition: CallLowering.h:236
Extended Value Type.
Definition: ValueTypes.h:34
This class contains a discriminated union of information about pointers in memory operands,...
static MachinePointerInfo getStack(MachineFunction &MF, int64_t Offset, uint8_t ID=0)
Stack pointer relative access.
static MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.