LLVM 24.0.0git
CallLowering.cpp
Go to the documentation of this file.
1//===-- lib/CodeGen/GlobalISel/CallLowering.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 some simple delegations needed for call lowering.
11///
12//===----------------------------------------------------------------------===//
13
23#include "llvm/IR/DataLayout.h"
24#include "llvm/IR/LLVMContext.h"
25#include "llvm/IR/Module.h"
27
28#define DEBUG_TYPE "call-lowering"
29
30using namespace llvm;
31
32void CallLowering::anchor() {}
33
34/// Helper function which updates \p Flags based on the contents of \p Attrs.
36 if (!Attrs.hasAttributes())
37 return;
38
39 // TODO: There are missing flags. Add them here.
40 for (Attribute Attr : Attrs) {
41 if (Attr.isStringAttribute())
42 continue;
43
44 switch (Attr.getKindAsEnum()) {
45 case Attribute::SExt:
46 Flags.setSExt();
47 break;
48 case Attribute::ZExt:
49 Flags.setZExt();
50 break;
51 case Attribute::InReg:
52 Flags.setInReg();
53 break;
54 case Attribute::StructRet:
55 Flags.setSRet();
56 break;
57 case Attribute::Nest:
58 Flags.setNest();
59 break;
60 case Attribute::ByVal:
61 Flags.setByVal();
62 break;
63 case Attribute::ByRef:
64 Flags.setByRef();
65 break;
66 case Attribute::InAlloca:
67 Flags.setInAlloca();
68 // Set the byval flag for CCAssignFn callbacks that don't know about
69 // inalloca. This way we can know how many bytes we should've allocated
70 // and how many bytes a callee cleanup function will pop. If we port
71 // inalloca to more targets, we'll have to add custom inalloca handling
72 // in the various CC lowering callbacks.
73 Flags.setByVal();
74 break;
75 case Attribute::Preallocated:
76 Flags.setPreallocated();
77 // Set the byval flag for CCAssignFn callbacks that don't know about
78 // preallocated. This way we can know how many bytes we should've
79 // allocated and how many bytes a callee cleanup function will pop. If
80 // we port preallocated to more targets, we'll have to add custom
81 // preallocated handling in the various CC lowering callbacks.
82 Flags.setByVal();
83 break;
84 case Attribute::Returned:
85 Flags.setReturned();
86 break;
87 case Attribute::SwiftSelf:
88 Flags.setSwiftSelf();
89 break;
90 case Attribute::SwiftAsync:
91 Flags.setSwiftAsync();
92 break;
93 case Attribute::SwiftError:
94 Flags.setSwiftError();
95 break;
96 default:
97 break;
98 }
99 }
100}
101
103 unsigned ArgIdx) const {
104 ISD::ArgFlagsTy Flags;
105 const AttributeList &Attrs = Call.getAttributes();
106 addFlagsFromAttrSet(Flags, Attrs.getParamAttrs(ArgIdx));
107 if (const Function *F = Call.getCalledFunction())
108 addFlagsFromAttrSet(Flags, F->getAttributes().getParamAttrs(ArgIdx));
109 return Flags;
110}
111
114 ISD::ArgFlagsTy Flags;
115 addFlagsFromAttrSet(Flags, Call.getAttributes().getRetAttrs());
116 if (const Function *F = Call.getCalledFunction())
117 addFlagsFromAttrSet(Flags, F->getAttributes().getRetAttrs());
118 return Flags;
119}
120
122 const AttributeList &Attrs,
123 unsigned OpIdx) const {
124 addFlagsFromAttrSet(Flags, Attrs.getAttributes(OpIdx));
125}
126
128 ArrayRef<Register> ResRegs,
130 Register SwiftErrorVReg,
131 std::optional<PtrAuthInfo> PAI,
132 Register ConvergenceCtrlToken,
133 std::function<Register()> GetCalleeReg) const {
134 CallLoweringInfo Info;
135 const DataLayout &DL = MIRBuilder.getDataLayout();
136 MachineFunction &MF = MIRBuilder.getMF();
138 bool CanBeTailCalled = CB.isTailCall() &&
140 (MF.getFunction()
141 .getFnAttribute("disable-tail-calls")
142 .getValueAsString() != "true");
143
144 CallingConv::ID CallConv = CB.getCallingConv();
145 Type *RetTy = CB.getType();
146 bool IsVarArg = CB.getFunctionType()->isVarArg();
147
149 getReturnInfo(CallConv, RetTy, CB.getAttributes(), SplitArgs, DL);
150 Info.CanLowerReturn = canLowerReturn(MF, CallConv, SplitArgs, IsVarArg);
151
152 Info.IsConvergent = CB.isConvergent();
153
154 if (!Info.CanLowerReturn) {
155 // Callee requires sret demotion.
156 insertSRetOutgoingArgument(MIRBuilder, CB, Info);
157
158 // The sret demotion isn't compatible with tail-calls, since the sret
159 // argument points into the caller's stack frame.
160 CanBeTailCalled = false;
161 }
162
163 // First step is to marshall all the function's parameters into the correct
164 // physregs and memory locations. Gather the sequence of argument types that
165 // we'll pass to the assigner function.
166 unsigned i = 0;
167 unsigned NumFixedArgs = CB.getFunctionType()->getNumParams();
168 for (const auto &Arg : CB.args()) {
169 ArgInfo OrigArg{ArgRegs[i], *Arg.get(), i, getAttributesForArgIdx(CB, i)};
170 setArgFlags(OrigArg, i + AttributeList::FirstArgIndex, DL, CB);
171 if (i >= NumFixedArgs)
172 OrigArg.Flags[0].setVarArg();
173
174 // If we have an explicit sret argument that is an Instruction, (i.e., it
175 // might point to function-local memory), we can't meaningfully tail-call.
176 if (OrigArg.Flags[0].isSRet() && isa<Instruction>(&Arg))
177 CanBeTailCalled = false;
178
179 Info.OrigArgs.push_back(OrigArg);
180 ++i;
181 }
182
183 // Try looking through a bitcast from one function type to another.
184 // Commonly happens with calls to objc_msgSend().
185 const Value *CalleeV = CB.getCalledOperand()->stripPointerCasts();
186
187 // If IRTranslator chose to drop the ptrauth info, we can turn this into
188 // a direct call.
190 CalleeV = cast<ConstantPtrAuth>(CalleeV)->getPointer();
191 assert(isa<Function>(CalleeV));
192 }
193
194 if (const Function *F = dyn_cast<Function>(CalleeV)) {
195 if (F->hasFnAttribute(Attribute::NonLazyBind)) {
196 LLT Ty = getLLTForType(*F->getType(), DL);
197 Register Reg = MIRBuilder.buildGlobalValue(Ty, F).getReg(0);
198 Info.Callee = MachineOperand::CreateReg(Reg, false);
199 } else {
200 Info.Callee = MachineOperand::CreateGA(F, 0);
201 }
202 } else if (isa<GlobalIFunc>(CalleeV) || isa<GlobalAlias>(CalleeV)) {
203 // IR IFuncs and Aliases can't be forward declared (only defined), so the
204 // callee must be in the same TU and therefore we can direct-call it without
205 // worrying about it being out of range.
206 Info.Callee = MachineOperand::CreateGA(cast<GlobalValue>(CalleeV), 0);
207 } else
208 Info.Callee = MachineOperand::CreateReg(GetCalleeReg(), false);
209
210 Register ReturnHintAlignReg;
211 Align ReturnHintAlign;
212
213 Info.OrigRet = ArgInfo{ResRegs, RetTy, 0, getAttributesForReturn(CB)};
214
215 if (!Info.OrigRet.Ty->isVoidTy()) {
216 setArgFlags(Info.OrigRet, AttributeList::ReturnIndex, DL, CB);
217
218 if (MaybeAlign Alignment = CB.getRetAlign()) {
219 if (*Alignment > Align(1)) {
220 ReturnHintAlignReg = MRI.cloneVirtualRegister(ResRegs[0]);
221 Info.OrigRet.Regs[0] = ReturnHintAlignReg;
222 ReturnHintAlign = *Alignment;
223 }
224 }
225 }
226
227 auto Bundle = CB.getOperandBundle(LLVMContext::OB_kcfi);
228 if (Bundle && CB.isIndirectCall()) {
229 Info.CFIType = cast<ConstantInt>(Bundle->Inputs[0]);
230 assert(Info.CFIType->getType()->isIntegerTy(32) && "Invalid CFI type");
231 }
232
234 Info.DeactivationSymbol = cast<GlobalValue>(Bundle->Inputs[0]);
235 }
236
237 Info.CB = &CB;
238 Info.KnownCallees = CB.getMetadata(LLVMContext::MD_callees);
239 Info.CallConv = CallConv;
240 Info.SwiftErrorVReg = SwiftErrorVReg;
241 Info.PAI = PAI;
242 Info.ConvergenceCtrlToken = ConvergenceCtrlToken;
243 Info.IsMustTailCall = CB.isMustTailCall();
244 Info.IsTailCall = CanBeTailCalled;
245 Info.IsVarArg = IsVarArg;
246 if (!lowerCall(MIRBuilder, Info))
247 return false;
248
249 if (ReturnHintAlignReg && !Info.LoweredTailCall) {
250 MIRBuilder.buildAssertAlign(ResRegs[0], ReturnHintAlignReg,
251 ReturnHintAlign);
252 }
253
254 return true;
255}
256
257template <typename FuncInfoTy>
259 const DataLayout &DL,
260 const FuncInfoTy &FuncInfo) const {
261 auto &Flags = Arg.Flags[0];
262 const AttributeList &Attrs = FuncInfo.getAttributes();
263 addArgFlagsFromAttributes(Flags, Attrs, OpIdx);
264
266 if (PtrTy) {
267 Flags.setPointer();
268 Flags.setPointerAddrSpace(PtrTy->getPointerAddressSpace());
269 }
270
271 Align MemAlign = DL.getABITypeAlign(Arg.Ty);
272 if (Flags.isByVal() || Flags.isInAlloca() || Flags.isPreallocated() ||
273 Flags.isByRef()) {
274 assert(OpIdx >= AttributeList::FirstArgIndex);
275 unsigned ParamIdx = OpIdx - AttributeList::FirstArgIndex;
276
277 Type *ElementTy = FuncInfo.getParamByValType(ParamIdx);
278 if (!ElementTy)
279 ElementTy = FuncInfo.getParamByRefType(ParamIdx);
280 if (!ElementTy)
281 ElementTy = FuncInfo.getParamInAllocaType(ParamIdx);
282 if (!ElementTy)
283 ElementTy = FuncInfo.getParamPreallocatedType(ParamIdx);
284
285 assert(ElementTy && "Must have byval, inalloca or preallocated type");
286
287 uint64_t MemSize = DL.getTypeAllocSize(ElementTy);
288 if (Flags.isByRef())
289 Flags.setByRefSize(MemSize);
290 else
291 Flags.setByValSize(MemSize);
292
293 // For ByVal, alignment should be passed from FE. BE will guess if
294 // this info is not there but there are cases it cannot get right.
295 if (auto ParamAlign = FuncInfo.getParamStackAlign(ParamIdx))
296 MemAlign = *ParamAlign;
297 else if ((ParamAlign = FuncInfo.getParamAlign(ParamIdx)))
298 MemAlign = *ParamAlign;
299 else
300 MemAlign = getTLI()->getByValTypeAlignment(ElementTy, DL);
301 } else if (OpIdx >= AttributeList::FirstArgIndex) {
302 if (auto ParamAlign =
303 FuncInfo.getParamStackAlign(OpIdx - AttributeList::FirstArgIndex))
304 MemAlign = *ParamAlign;
305 }
306 Flags.setMemAlign(MemAlign);
307 Flags.setOrigAlign(DL.getABITypeAlign(Arg.Ty));
308
309 // Don't try to use the returned attribute if the argument is marked as
310 // swiftself, since it won't be passed in x0.
311 if (Flags.isSwiftSelf())
312 Flags.setReturned(false);
313}
314
315template void
317 const DataLayout &DL,
318 const Function &FuncInfo) const;
319
320template void
322 const DataLayout &DL,
323 const CallBase &FuncInfo) const;
324
326 SmallVectorImpl<ArgInfo> &SplitArgs,
327 const DataLayout &DL,
328 CallingConv::ID CallConv,
329 SmallVectorImpl<TypeSize> *Offsets) const {
330 SmallVector<Type *, 4> SplitTys;
331 ComputeValueTypes(DL, OrigArg.Ty, SplitTys, Offsets);
332
333 if (SplitTys.size() == 0)
334 return;
335
336 if (SplitTys.size() == 1) {
337 // No splitting to do, but we want to replace the original type (e.g. [1 x
338 // double] -> double).
339 SplitArgs.emplace_back(OrigArg.Regs[0], SplitTys[0], OrigArg.OrigArgIndex,
340 OrigArg.Flags[0], OrigArg.OrigValue);
341 return;
342 }
343
344 // Create one ArgInfo for each virtual register in the original ArgInfo.
345 assert(OrigArg.Regs.size() == SplitTys.size() && "Regs / types mismatch");
346
347 bool NeedsRegBlock = TLI->functionArgumentNeedsConsecutiveRegisters(
348 OrigArg.Ty, CallConv, false, DL);
349 for (unsigned i = 0, e = SplitTys.size(); i < e; ++i) {
350 SplitArgs.emplace_back(OrigArg.Regs[i], SplitTys[i], OrigArg.OrigArgIndex,
351 OrigArg.Flags[0]);
352 if (NeedsRegBlock)
353 SplitArgs.back().Flags[0].setInConsecutiveRegs();
354 }
355
356 SplitArgs.back().Flags[0].setInConsecutiveRegsLast();
357}
358
359/// Pack values \p SrcRegs to cover the vector type result \p DstRegs.
362 ArrayRef<Register> SrcRegs) {
363 MachineRegisterInfo &MRI = *B.getMRI();
364 LLT LLTy = MRI.getType(DstRegs[0]);
365 LLT PartLLT = MRI.getType(SrcRegs[0]);
366
367 // Deal with v3s16 split into v2s16
368 LLT LCMTy = getCoverTy(LLTy, PartLLT);
369 if (LCMTy == LLTy) {
370 // Common case where no padding is needed.
371 assert(DstRegs.size() == 1);
372
373 SmallVector<Register, 8> ConcatRegs(SrcRegs.size());
374 llvm::copy(SrcRegs, ConcatRegs.begin());
375
376 if (LLTy.getScalarType() != PartLLT.getScalarType())
377 for (size_t I = 0, E = SrcRegs.size(); I != E; ++I) {
378 auto BitcastDst =
379 MRI.getType(SrcRegs[I]).changeElementType(LLTy.getScalarType());
380 ConcatRegs[I] = B.buildBitcast(BitcastDst, SrcRegs[I]).getReg(0);
381 }
382
383 return B.buildConcatVectors(DstRegs[0], ConcatRegs);
384 }
385
386 // We need to create an unmerge to the result registers, which may require
387 // widening the original value.
388 Register UnmergeSrcReg;
389 if (LCMTy.getSizeInBits() != PartLLT.getSizeInBits()) {
390 assert(DstRegs.size() == 1);
391 return B.buildDeleteTrailingVectorElements(
392 DstRegs[0], B.buildMergeLikeInstr(LCMTy, SrcRegs));
393 } else {
394 // We don't need to widen anything if we're extracting a scalar which was
395 // promoted to a vector e.g. s8 -> v4s8 -> s8
396 assert(SrcRegs.size() == 1);
397 UnmergeSrcReg = SrcRegs[0];
398 }
399
400 size_t NumDst = LCMTy.getSizeInBits() / LLTy.getSizeInBits();
401
402 SmallVector<Register, 8> PadDstRegs(NumDst);
403 llvm::copy(DstRegs, PadDstRegs.begin());
404
405 // Create the excess dead defs for the unmerge.
406 for (size_t I = DstRegs.size(); I != NumDst; ++I)
407 PadDstRegs[I] = MRI.createGenericVirtualRegister(LLTy);
408
409 if (PartLLT != LCMTy)
410 UnmergeSrcReg = B.buildBitcast(LCMTy, UnmergeSrcReg).getReg(0);
411
412 if (PadDstRegs.size() == 1)
413 return B.buildDeleteTrailingVectorElements(DstRegs[0], UnmergeSrcReg);
414 return B.buildUnmerge(PadDstRegs, UnmergeSrcReg);
415}
416
418 ArrayRef<Register> OrigRegs,
419 ArrayRef<Register> Regs, LLT LLTy,
420 LLT PartLLT, const ISD::ArgFlagsTy Flags) {
421 MachineRegisterInfo &MRI = *B.getMRI();
422
423 if (PartLLT == LLTy) {
424 // We should have avoided introducing a new virtual register, and just
425 // directly assigned here.
426 assert(OrigRegs[0] == Regs[0]);
427 return;
428 }
429
430 if (PartLLT.getSizeInBits() == LLTy.getSizeInBits() && OrigRegs.size() == 1 &&
431 Regs.size() == 1) {
432 B.buildBitcast(OrigRegs[0], Regs[0]);
433 return;
434 }
435
436 // A vector PartLLT needs extending to LLTy's element size.
437 // E.g. <2 x s64> = G_SEXT <2 x s32>.
438 if (PartLLT.isVector() == LLTy.isVector() &&
439 PartLLT.getScalarSizeInBits() > LLTy.getScalarSizeInBits() &&
440 (!PartLLT.isVector() ||
441 PartLLT.getElementCount() == LLTy.getElementCount()) &&
442 OrigRegs.size() == 1 && Regs.size() == 1) {
443 Register SrcReg = Regs[0];
444
445 LLT LocTy = MRI.getType(SrcReg);
446
447 if (Flags.isSExt()) {
448 SrcReg = B.buildAssertSExt(LocTy, SrcReg, LLTy.getScalarSizeInBits())
449 .getReg(0);
450 } else if (Flags.isZExt()) {
451 SrcReg = B.buildAssertZExt(LocTy, SrcReg, LLTy.getScalarSizeInBits())
452 .getReg(0);
453 }
454
455 // Sometimes pointers are passed zero extended.
456 LLT OrigTy = MRI.getType(OrigRegs[0]);
457 if (OrigTy.isPointer()) {
459 B.buildIntToPtr(OrigRegs[0], B.buildTrunc(IntPtrTy, SrcReg));
460 return;
461 }
462
463 B.buildTrunc(OrigRegs[0], SrcReg);
464 return;
465 }
466
467 if (!LLTy.isVector() && !PartLLT.isVector()) {
468 assert(OrigRegs.size() == 1);
469 LLT OrigTy = MRI.getType(OrigRegs[0]);
470
471 unsigned SrcSize = PartLLT.getSizeInBits().getFixedValue() * Regs.size();
472 if (SrcSize == OrigTy.getSizeInBits())
473 B.buildMergeValues(OrigRegs[0], Regs);
474 else {
475 auto Widened = B.buildMergeLikeInstr(LLT::integer(SrcSize), Regs);
476 B.buildTrunc(OrigRegs[0], Widened);
477 }
478
479 return;
480 }
481
482 if (PartLLT.isVector()) {
483 assert(OrigRegs.size() == 1);
484 SmallVector<Register> CastRegs(Regs);
485
486 // If PartLLT is a mismatched vector in both number of elements and element
487 // size, e.g. PartLLT == v2s64 and LLTy is v3s32, then first coerce it to
488 // have the same elt type, i.e. v4s32.
489 // TODO: Extend this coersion to element multiples other than just 2.
490 if (TypeSize::isKnownGT(PartLLT.getSizeInBits(), LLTy.getSizeInBits()) &&
491 PartLLT.getScalarSizeInBits() == LLTy.getScalarSizeInBits() * 2 &&
492 Regs.size() == 1) {
493 LLT NewTy = PartLLT.changeElementType(LLTy.getElementType())
494 .changeElementCount(PartLLT.getElementCount() * 2);
495 CastRegs[0] = B.buildBitcast(NewTy, Regs[0]).getReg(0);
496 PartLLT = NewTy;
497 }
498
499 if (LLTy.getScalarSizeInBits() == PartLLT.getScalarSizeInBits()) {
500 mergeVectorRegsToResultRegs(B, OrigRegs, CastRegs);
501 } else {
502 unsigned I = 0;
503 LLT GCDTy = getGCDType(LLTy, PartLLT);
504
505 // We are both splitting a vector, and bitcasting its element types. Cast
506 // the source pieces into the appropriate number of pieces with the result
507 // element type.
508 for (Register SrcReg : CastRegs)
509 CastRegs[I++] = B.buildBitcast(GCDTy, SrcReg).getReg(0);
510 mergeVectorRegsToResultRegs(B, OrigRegs, CastRegs);
511 }
512
513 return;
514 }
515
516 assert(LLTy.isVector() && !PartLLT.isVector());
517
518 LLT DstEltTy = LLTy.getElementType();
519
520 // Pointer information was discarded. We'll need to coerce some register types
521 // to avoid violating type constraints.
522 LLT RealDstEltTy = MRI.getType(OrigRegs[0]).getElementType();
523
524 assert(DstEltTy.getSizeInBits() == RealDstEltTy.getSizeInBits());
525
526 if (DstEltTy == PartLLT) {
527 // Vector was trivially scalarized.
528
529 if (RealDstEltTy.isPointer()) {
530 for (Register Reg : Regs)
531 MRI.setType(Reg, RealDstEltTy);
532 }
533
534 B.buildBuildVector(OrigRegs[0], Regs);
535 } else if (DstEltTy.getSizeInBits() > PartLLT.getSizeInBits()) {
536 // Deal with vector with 64-bit elements decomposed to 32-bit
537 // registers. Need to create intermediate 64-bit elements.
538 SmallVector<Register, 8> EltMerges;
539 int PartsPerElt =
540 divideCeil(DstEltTy.getSizeInBits(), PartLLT.getSizeInBits());
541 LLT ExtendedPartTy = LLT::integer(PartLLT.getSizeInBits() * PartsPerElt);
542
543 for (int I = 0, NumElts = LLTy.getNumElements(); I != NumElts; ++I) {
544 auto Merge =
545 B.buildMergeLikeInstr(ExtendedPartTy, Regs.take_front(PartsPerElt));
546 if (ExtendedPartTy.getSizeInBits() > RealDstEltTy.getSizeInBits())
547 Merge = B.buildTrunc(RealDstEltTy, Merge);
548 // Fix the type in case this is really a vector of pointers.
549 MRI.setType(Merge.getReg(0), RealDstEltTy);
550 EltMerges.push_back(Merge.getReg(0));
551 Regs = Regs.drop_front(PartsPerElt);
552 }
553
554 B.buildBuildVector(OrigRegs[0], EltMerges);
555 } else {
556 // Vector was split, and elements promoted to a wider type.
557 // FIXME: Should handle floating point promotions.
558 unsigned NumElts = LLTy.getNumElements();
559 LLT BVType = LLT::fixed_vector(NumElts, PartLLT);
560
561 Register BuildVec;
562 if (NumElts == Regs.size())
563 BuildVec = B.buildBuildVector(BVType, Regs).getReg(0);
564 else {
565 // Vector elements are packed in the inputs.
566 // e.g. we have a <4 x s16> but 2 x s32 in regs.
567 assert(NumElts > Regs.size());
568 LLT SrcEltTy = MRI.getType(Regs[0]);
569
570 LLT OriginalEltTy = MRI.getType(OrigRegs[0]).getElementType();
571
572 // Input registers contain packed elements.
573 // Determine how many elements per reg.
574 assert((SrcEltTy.getSizeInBits() % OriginalEltTy.getSizeInBits()) == 0);
575 unsigned EltPerReg =
576 (SrcEltTy.getSizeInBits() / OriginalEltTy.getSizeInBits());
577
579 BVRegs.reserve(Regs.size() * EltPerReg);
580 for (Register R : Regs) {
581 auto Unmerge = B.buildUnmerge(OriginalEltTy, R);
582 for (unsigned K = 0; K < EltPerReg; ++K)
583 BVRegs.push_back(B.buildAnyExt(PartLLT, Unmerge.getReg(K)).getReg(0));
584 }
585
586 // We may have some more elements in BVRegs, e.g. if we have 2 s32 pieces
587 // for a <3 x s16> vector. We should have less than EltPerReg extra items.
588 if (BVRegs.size() > NumElts) {
589 assert((BVRegs.size() - NumElts) < EltPerReg);
590 BVRegs.truncate(NumElts);
591 }
592 BuildVec = B.buildBuildVector(BVType, BVRegs).getReg(0);
593 }
594 B.buildTrunc(OrigRegs[0], BuildVec);
595 }
596}
597
599 ArrayRef<Register> DstRegs, Register SrcReg,
600 LLT SrcTy, LLT PartTy, unsigned ExtendOp) {
601 // We could just insert a regular copy, but this is unreachable at the moment.
602 assert(SrcTy != PartTy && "identical part types shouldn't reach here");
603
604 const TypeSize PartSize = PartTy.getSizeInBits();
605
606 if (PartSize == SrcTy.getSizeInBits() && DstRegs.size() == 1) {
607 // TODO: Handle int<->ptr casts. It just happens the ABI lowering
608 // assignments are not pointer aware.
609 B.buildBitcast(DstRegs[0], SrcReg);
610 return;
611 }
612
613 if (PartTy.isVector() == SrcTy.isVector() &&
614 PartTy.getScalarSizeInBits() > SrcTy.getScalarSizeInBits()) {
615 assert(DstRegs.size() == 1);
616 B.buildInstr(ExtendOp, {DstRegs[0]}, {SrcReg});
617 return;
618 }
619
620 if (SrcTy.isVector() && !PartTy.isVector() &&
621 TypeSize::isKnownGT(PartSize, SrcTy.getElementType().getSizeInBits()) &&
622 SrcTy.getElementCount() == ElementCount::getFixed(DstRegs.size())) {
623 // Vector was scalarized, and the elements extended.
624 auto UnmergeToEltTy = B.buildUnmerge(SrcTy.getElementType(), SrcReg);
625 for (int i = 0, e = DstRegs.size(); i != e; ++i)
626 B.buildAnyExt(DstRegs[i], UnmergeToEltTy.getReg(i));
627 return;
628 }
629
630 if (SrcTy.isVector() && PartTy.isVector() &&
631 PartTy.getSizeInBits() == SrcTy.getSizeInBits() &&
632 ElementCount::isKnownLT(SrcTy.getElementCount(),
633 PartTy.getElementCount())) {
634 // A coercion like: v2f32 -> v4f32 or nxv2f32 -> nxv4f32
635 Register DstReg = DstRegs.front();
636 B.buildPadVectorWithUndefElements(DstReg, SrcReg);
637 return;
638 }
639
640 LLT GCDTy = getGCDType(SrcTy, PartTy);
641 if (GCDTy == PartTy) {
642 // If this already evenly divisible, we can create a simple unmerge.
643 B.buildUnmerge(DstRegs, SrcReg);
644 return;
645 }
646
647 if (SrcTy.isVector() && !PartTy.isVector() &&
648 SrcTy.getScalarSizeInBits() > PartTy.getSizeInBits()) {
649 LLT ExtTy =
650 LLT::vector(SrcTy.getElementCount(),
651 LLT::integer(PartTy.getScalarSizeInBits() * DstRegs.size() /
652 SrcTy.getNumElements()));
653 auto Ext = B.buildAnyExt(ExtTy, SrcReg);
654 B.buildUnmerge(DstRegs, Ext);
655 return;
656 }
657
658 MachineRegisterInfo &MRI = *B.getMRI();
659 LLT DstTy = MRI.getType(DstRegs[0]);
660 LLT CoverTy = getCoverTy(SrcTy, PartTy);
661 if (SrcTy.isVector() && DstRegs.size() > 1) {
662 TypeSize FullCoverSize = DstTy.getSizeInBits() * DstRegs.size();
663
664 LLT EltTy = SrcTy.getElementType();
665 TypeSize EltSize = EltTy.getSizeInBits();
666 if (FullCoverSize.isKnownMultipleOf(EltSize)) {
667 TypeSize VecSize = FullCoverSize.divideCoefficientBy(EltSize);
668 CoverTy =
669 LLT::vector(ElementCount::get(VecSize, VecSize.isScalable()), EltTy);
670 }
671 }
672
673 if (PartTy.isVector() && CoverTy == PartTy) {
674 assert(DstRegs.size() == 1);
675 B.buildPadVectorWithUndefElements(DstRegs[0], SrcReg);
676 return;
677 }
678
679 const unsigned DstSize = DstTy.getSizeInBits();
680 const unsigned SrcSize = SrcTy.getSizeInBits();
681 unsigned CoveringSize = CoverTy.getSizeInBits();
682
683 Register UnmergeSrc = SrcReg;
684
685 if (!CoverTy.isVector() && CoveringSize != SrcSize) {
686 // For scalars, it's common to be able to use a simple extension.
687 if (SrcTy.isScalar() && DstTy.isScalar()) {
688 CoveringSize = alignTo(SrcSize, DstSize);
689 LLT CoverTy = LLT::integer(CoveringSize);
690 UnmergeSrc = B.buildInstr(ExtendOp, {CoverTy}, {SrcReg}).getReg(0);
691 } else {
692 // Widen to the common type.
693 // FIXME: This should respect the extend type
694 Register Undef = B.buildUndef(SrcTy).getReg(0);
695 SmallVector<Register, 8> MergeParts(1, SrcReg);
696 for (unsigned Size = SrcSize; Size != CoveringSize; Size += SrcSize)
697 MergeParts.push_back(Undef);
698 UnmergeSrc = B.buildMergeLikeInstr(CoverTy, MergeParts).getReg(0);
699 }
700 }
701
702 if (CoverTy.isVector() && CoveringSize != SrcSize)
703 UnmergeSrc = B.buildPadVectorWithUndefElements(CoverTy, SrcReg).getReg(0);
704
705 B.buildUnmerge(DstRegs, UnmergeSrc);
706}
707
709 ValueHandler &Handler, ValueAssigner &Assigner,
711 CallingConv::ID CallConv, bool IsVarArg,
712 ArrayRef<Register> ThisReturnRegs) const {
713 MachineFunction &MF = MIRBuilder.getMF();
714 const Function &F = MF.getFunction();
716
717 CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, F.getContext());
718 if (!determineAssignments(Assigner, Args, CCInfo))
719 return false;
720
721 return handleAssignments(Handler, Args, CCInfo, ArgLocs, MIRBuilder,
722 ThisReturnRegs);
723}
724
726 if (Flags.isSExt())
727 return TargetOpcode::G_SEXT;
728 if (Flags.isZExt())
729 return TargetOpcode::G_ZEXT;
730 return TargetOpcode::G_ANYEXT;
731}
732
735 CCState &CCInfo) const {
736 LLVMContext &Ctx = CCInfo.getContext();
737 const DataLayout &DL = CCInfo.getMachineFunction().getDataLayout();
738 const CallingConv::ID CallConv = CCInfo.getCallingConv();
739
740 unsigned NumArgs = Args.size();
741 for (unsigned i = 0; i != NumArgs; ++i) {
742 EVT CurVT = TLI->getValueType(DL, Args[i].Ty);
743
744 MVT NewVT = TLI->getRegisterTypeForCallingConv(Ctx, CallConv, CurVT);
745
746 // If we need to split the type over multiple regs, check it's a scenario
747 // we currently support.
748 unsigned NumParts =
749 TLI->getNumRegistersForCallingConv(Ctx, CallConv, CurVT);
750
751 if (NumParts == 1) {
752 // Try to use the register type if we couldn't assign the VT.
753 if (Assigner.assignArg(i, CurVT, NewVT, NewVT, CCValAssign::Full, Args[i],
754 Args[i].Flags[0], CCInfo))
755 return false;
756 continue;
757 }
758
759 // For incoming arguments (physregs to vregs), we could have values in
760 // physregs (or memlocs) which we want to extract and copy to vregs.
761 // During this, we might have to deal with the LLT being split across
762 // multiple regs, so we have to record this information for later.
763 //
764 // If we have outgoing args, then we have the opposite case. We have a
765 // vreg with an LLT which we want to assign to a physical location, and
766 // we might have to record that the value has to be split later.
767
768 // We're handling an incoming arg which is split over multiple regs.
769 // E.g. passing an s128 on AArch64.
770 ISD::ArgFlagsTy OrigFlags = Args[i].Flags[0];
771 Args[i].Flags.clear();
772
773 for (unsigned Part = 0; Part < NumParts; ++Part) {
774 ISD::ArgFlagsTy Flags = OrigFlags;
775 if (Part == 0) {
776 Flags.setSplit();
777 } else {
778 Flags.setOrigAlign(Align(1));
779 if (Part == NumParts - 1)
780 Flags.setSplitEnd();
781 }
782
783 Args[i].Flags.push_back(Flags);
784 if (Assigner.assignArg(i, CurVT, NewVT, NewVT, CCValAssign::Full, Args[i],
785 Args[i].Flags[Part], CCInfo)) {
786 // Still couldn't assign this smaller part type for some reason.
787 return false;
788 }
789 }
790 }
791
792 return true;
793}
794
797 CCState &CCInfo,
799 MachineIRBuilder &MIRBuilder,
800 ArrayRef<Register> ThisReturnRegs) const {
801 MachineFunction &MF = MIRBuilder.getMF();
803 const Function &F = MF.getFunction();
804 const DataLayout &DL = F.getDataLayout();
805
806 const unsigned NumArgs = Args.size();
807
808 // Stores thunks for outgoing register assignments. This is used so we delay
809 // generating register copies until mem loc assignments are done. We do this
810 // so that if the target is using the delayed stack protector feature, we can
811 // find the split point of the block accurately. E.g. if we have:
812 // G_STORE %val, %memloc
813 // $x0 = COPY %foo
814 // $x1 = COPY %bar
815 // CALL func
816 // ... then the split point for the block will correctly be at, and including,
817 // the copy to $x0. If instead the G_STORE instruction immediately precedes
818 // the CALL, then we'd prematurely choose the CALL as the split point, thus
819 // generating a split block with a CALL that uses undefined physregs.
820 SmallVector<std::function<void()>> DelayedOutgoingRegAssignments;
821
822 for (unsigned i = 0, j = 0; i != NumArgs; ++i, ++j) {
823 assert(j < ArgLocs.size() && "Skipped too many arg locs");
824 CCValAssign &VA = ArgLocs[j];
825 assert(VA.getValNo() == i && "Location doesn't correspond to current arg");
826
827 if (VA.needsCustom()) {
828 std::function<void()> Thunk;
829 unsigned NumArgRegs = Handler.assignCustomValue(
830 Args[i], ArrayRef(ArgLocs).slice(j), &Thunk);
831 if (Thunk)
832 DelayedOutgoingRegAssignments.emplace_back(Thunk);
833 if (!NumArgRegs)
834 return false;
835 j += (NumArgRegs - 1);
836 continue;
837 }
838
839 auto AllocaAddressSpace = MF.getDataLayout().getAllocaAddrSpace();
840
841 const MVT ValVT = VA.getValVT();
842 const MVT LocVT = VA.getLocVT();
843
844 const LLT LocTy = getLLTForMVT(LocVT);
845 const LLT ValTy = getLLTForMVT(ValVT);
846 const LLT NewLLT = Handler.isIncomingArgumentHandler() ? LocTy : ValTy;
847 const EVT OrigVT = TLI->getValueType(DL, Args[i].Ty);
848 // Use the EVT here to strip pointerness.
849 const LLT OrigTy = getLLTForType(*OrigVT.getTypeForEVT(F.getContext()), DL);
850 const LLT PointerTy = LLT::pointer(
851 AllocaAddressSpace, DL.getPointerSizeInBits(AllocaAddressSpace));
852
853 // Expected to be multiple regs for a single incoming arg.
854 // There should be Regs.size() ArgLocs per argument.
855 // This should be the same as getNumRegistersForCallingConv
856 const unsigned NumParts = Args[i].Flags.size();
857
858 // Now split the registers into the assigned types.
859 Args[i].OrigRegs.assign(Args[i].Regs.begin(), Args[i].Regs.end());
860
861 if (NumParts != 1 || NewLLT != OrigTy) {
862 // If we can't directly assign the register, we need one or more
863 // intermediate values.
864 Args[i].Regs.resize(NumParts);
865
866 // When we have indirect parameter passing we are receiving a pointer,
867 // that points to the actual value, so we need one "temporary" pointer.
868 if (VA.getLocInfo() == CCValAssign::Indirect) {
869 if (Handler.isIncomingArgumentHandler())
870 Args[i].Regs[0] = MRI.createGenericVirtualRegister(PointerTy);
871 } else {
872 // For each split register, create and assign a vreg that will store
873 // the incoming component of the larger value. These will later be
874 // merged to form the final vreg.
875 for (unsigned Part = 0; Part < NumParts; ++Part)
876 Args[i].Regs[Part] = MRI.createGenericVirtualRegister(NewLLT);
877 }
878 }
879
880 assert((j + (NumParts - 1)) < ArgLocs.size() &&
881 "Too many regs for number of args");
882
883 // Coerce into outgoing value types before register assignment.
884 if (!Handler.isIncomingArgumentHandler() && OrigTy != ValTy &&
886 assert(Args[i].OrigRegs.size() == 1);
887 buildCopyToRegs(MIRBuilder, Args[i].Regs, Args[i].OrigRegs[0], OrigTy,
888 ValTy, extendOpFromFlags(Args[i].Flags[0]));
889 }
890
891 bool IndirectParameterPassingHandled = false;
892 bool BigEndianPartOrdering = TLI->hasBigEndianPartOrdering(OrigVT, DL);
893 for (unsigned Part = 0; Part < NumParts; ++Part) {
894 assert((VA.getLocInfo() != CCValAssign::Indirect || Part == 0) &&
895 "Only the first parameter should be processed when "
896 "handling indirect passing!");
897 Register ArgReg = Args[i].Regs[Part];
898 // There should be Regs.size() ArgLocs per argument.
899 unsigned Idx = BigEndianPartOrdering ? NumParts - 1 - Part : Part;
900 CCValAssign &VA = ArgLocs[j + Idx];
901 const ISD::ArgFlagsTy Flags = Args[i].Flags[Part];
902
903 // We found an indirect parameter passing, and we have an
904 // OutgoingValueHandler as our handler (so we are at the call site or the
905 // return value). In this case, start the construction of the following
906 // GMIR, that is responsible for the preparation of indirect parameter
907 // passing:
908 //
909 // %1(indirectly passed type) = The value to pass
910 // %3(pointer) = G_FRAME_INDEX %stack.0
911 // G_STORE %1, %3 :: (store (s128), align 8)
912 //
913 // After this GMIR, the remaining part of the loop body will decide how
914 // to get the value to the caller and we break out of the loop.
915 if (VA.getLocInfo() == CCValAssign::Indirect &&
916 !Handler.isIncomingArgumentHandler()) {
917 Align AlignmentForStored = DL.getPrefTypeAlign(Args[i].Ty);
918 MachineFrameInfo &MFI = MF.getFrameInfo();
919 // Get some space on the stack for the value, so later we can pass it
920 // as a reference.
921 int FrameIdx = MFI.CreateStackObject(OrigTy.getScalarSizeInBits(),
922 AlignmentForStored, false);
923 Register PointerToStackReg =
924 MIRBuilder.buildFrameIndex(PointerTy, FrameIdx).getReg(0);
925 MachinePointerInfo StackPointerMPO =
927 // Store the value in the previously created stack space.
928 MIRBuilder.buildStore(Args[i].OrigRegs[Part], PointerToStackReg,
929 StackPointerMPO,
930 inferAlignFromPtrInfo(MF, StackPointerMPO));
931
932 ArgReg = PointerToStackReg;
933 IndirectParameterPassingHandled = true;
934 }
935
936 if (VA.isMemLoc() && !Flags.isByVal()) {
937 // Individual pieces may have been spilled to the stack and others
938 // passed in registers.
939
940 // TODO: The memory size may be larger than the value we need to
941 // store. We may need to adjust the offset for big endian targets.
942 LLT MemTy = Handler.getStackValueStoreType(DL, VA, Flags);
943
945 Register StackAddr =
947 ? PointerTy.getSizeInBytes()
948 : MemTy.getSizeInBytes(),
949 VA.getLocMemOffset(), MPO, Flags);
950
951 // Finish the handling of indirect passing from the passers
952 // (OutgoingParameterHandler) side.
953 // This branch is needed, so the pointer to the value is loaded onto the
954 // stack.
956 Handler.assignValueToAddress(ArgReg, StackAddr, PointerTy, MPO, VA);
957 else
958 Handler.assignValueToAddress(Args[i], Part, StackAddr, MemTy, MPO,
959 VA);
960 } else if (VA.isMemLoc() && Flags.isByVal()) {
961 assert(Args[i].Regs.size() == 1 && "didn't expect split byval pointer");
962
963 if (Handler.isIncomingArgumentHandler()) {
964 // We just need to copy the frame index value to the pointer.
966 Register StackAddr = Handler.getStackAddress(
967 Flags.getByValSize(), VA.getLocMemOffset(), MPO, Flags);
968 MIRBuilder.buildCopy(Args[i].Regs[0], StackAddr);
969 } else {
970 // For outgoing byval arguments, insert the implicit copy byval
971 // implies, such that writes in the callee do not modify the caller's
972 // value.
973 uint64_t MemSize = Flags.getByValSize();
974 int64_t Offset = VA.getLocMemOffset();
975
976 MachinePointerInfo DstMPO;
977 Register StackAddr =
978 Handler.getStackAddress(MemSize, Offset, DstMPO, Flags);
979
980 MachinePointerInfo SrcMPO(Args[i].OrigValue);
981 if (!Args[i].OrigValue) {
982 // We still need to accurately track the stack address space if we
983 // don't know the underlying value.
984 const LLT PtrTy = MRI.getType(StackAddr);
985 SrcMPO = MachinePointerInfo(PtrTy.getAddressSpace());
986 }
987
988 Align DstAlign = std::max(Flags.getNonZeroByValAlign(),
989 inferAlignFromPtrInfo(MF, DstMPO));
990
991 Align SrcAlign = std::max(Flags.getNonZeroByValAlign(),
992 inferAlignFromPtrInfo(MF, SrcMPO));
993
994 Handler.copyArgumentMemory(Args[i], StackAddr, Args[i].Regs[0],
995 DstMPO, DstAlign, SrcMPO, SrcAlign,
996 MemSize, VA);
997 }
998 } else if (i == 0 && !ThisReturnRegs.empty() &&
999 Handler.isIncomingArgumentHandler() &&
1001 Handler.assignValueToReg(ArgReg, ThisReturnRegs[Part], VA, Flags);
1002 } else if (Handler.isIncomingArgumentHandler()) {
1003 Handler.assignValueToReg(ArgReg, VA.getLocReg(), VA, Flags);
1004 } else {
1005 DelayedOutgoingRegAssignments.emplace_back([=, &Handler]() {
1006 Handler.assignValueToReg(ArgReg, VA.getLocReg(), VA, Flags);
1007 });
1008 }
1009
1010 // Finish the handling of indirect parameter passing when receiving
1011 // the value (we are in the called function or the caller when receiving
1012 // the return value).
1013 if (VA.getLocInfo() == CCValAssign::Indirect &&
1014 Handler.isIncomingArgumentHandler()) {
1015 Align Alignment = DL.getABITypeAlign(Args[i].Ty);
1017
1018 // Since we are doing indirect parameter passing, we know that the value
1019 // in the temporary register is not the value passed to the function,
1020 // but rather a pointer to that value. Let's load that value into the
1021 // virtual register where the parameter should go.
1022 MIRBuilder.buildLoad(Args[i].OrigRegs[0], Args[i].Regs[0], MPO,
1023 Alignment);
1024
1025 IndirectParameterPassingHandled = true;
1026 }
1027
1028 if (IndirectParameterPassingHandled)
1029 break;
1030 }
1031
1032 // Now that all pieces have been assigned, re-pack the register typed values
1033 // into the original value typed registers. This is only necessary, when
1034 // the value was passed in multiple registers, not indirectly.
1035 if (Handler.isIncomingArgumentHandler() && OrigVT != LocVT &&
1036 !IndirectParameterPassingHandled) {
1037 // Merge the split registers into the expected larger result vregs of
1038 // the original call.
1039 buildCopyFromRegs(MIRBuilder, Args[i].OrigRegs, Args[i].Regs, OrigTy,
1040 LocTy, Args[i].Flags[0]);
1041 }
1042
1043 j += NumParts - 1;
1044 }
1045 for (auto &Fn : DelayedOutgoingRegAssignments)
1046 Fn();
1047
1048 return true;
1049}
1050
1052 ArrayRef<Register> VRegs, Register DemoteReg,
1053 int FI) const {
1054 MachineFunction &MF = MIRBuilder.getMF();
1055 MachineRegisterInfo &MRI = MF.getRegInfo();
1056 const DataLayout &DL = MF.getDataLayout();
1057
1058 SmallVector<EVT, 4> SplitVTs;
1060 ComputeValueVTs(*TLI, DL, RetTy, SplitVTs, /*MemVTs=*/nullptr, &Offsets, 0);
1061
1062 assert(VRegs.size() == SplitVTs.size());
1063
1064 unsigned NumValues = SplitVTs.size();
1065 Align BaseAlign = DL.getPrefTypeAlign(RetTy);
1066 Type *RetPtrTy =
1067 PointerType::get(RetTy->getContext(), DL.getAllocaAddrSpace());
1068 LLT OffsetLLTy = getLLTForType(*DL.getIndexType(RetPtrTy), DL);
1069
1071
1072 for (unsigned I = 0; I < NumValues; ++I) {
1073 Register Addr;
1074 MIRBuilder.materializeObjectPtrOffset(Addr, DemoteReg, OffsetLLTy,
1075 Offsets[I]);
1076 auto *MMO = MF.getMachineMemOperand(PtrInfo, MachineMemOperand::MOLoad,
1077 MRI.getType(VRegs[I]),
1078 commonAlignment(BaseAlign, Offsets[I]));
1079 MIRBuilder.buildLoad(VRegs[I], Addr, *MMO);
1080 }
1081}
1082
1084 ArrayRef<Register> VRegs,
1085 Register DemoteReg) const {
1086 MachineFunction &MF = MIRBuilder.getMF();
1087 MachineRegisterInfo &MRI = MF.getRegInfo();
1088 const DataLayout &DL = MF.getDataLayout();
1089
1090 SmallVector<EVT, 4> SplitVTs;
1092 ComputeValueVTs(*TLI, DL, RetTy, SplitVTs, /*MemVTs=*/nullptr, &Offsets, 0);
1093
1094 assert(VRegs.size() == SplitVTs.size());
1095
1096 unsigned NumValues = SplitVTs.size();
1097 Align BaseAlign = DL.getPrefTypeAlign(RetTy);
1098 unsigned AS = DL.getAllocaAddrSpace();
1099 LLT OffsetLLTy = getLLTForType(*DL.getIndexType(RetTy->getContext(), AS), DL);
1100
1101 MachinePointerInfo PtrInfo(AS);
1102
1103 for (unsigned I = 0; I < NumValues; ++I) {
1104 Register Addr;
1105 MIRBuilder.materializeObjectPtrOffset(Addr, DemoteReg, OffsetLLTy,
1106 Offsets[I]);
1107 auto *MMO = MF.getMachineMemOperand(PtrInfo, MachineMemOperand::MOStore,
1108 MRI.getType(VRegs[I]),
1109 commonAlignment(BaseAlign, Offsets[I]));
1110 MIRBuilder.buildStore(VRegs[I], Addr, *MMO);
1111 }
1112}
1113
1115 const Function &F, SmallVectorImpl<ArgInfo> &SplitArgs, Register &DemoteReg,
1116 MachineRegisterInfo &MRI, const DataLayout &DL) const {
1117 unsigned AS = DL.getAllocaAddrSpace();
1118 DemoteReg = MRI.createGenericVirtualRegister(
1119 LLT::pointer(AS, DL.getPointerSizeInBits(AS)));
1120
1121 Type *PtrTy = PointerType::get(F.getContext(), AS);
1122
1123 SmallVector<EVT, 1> ValueVTs;
1124 ComputeValueVTs(*TLI, DL, PtrTy, ValueVTs);
1125
1126 // NOTE: Assume that a pointer won't get split into more than one VT.
1127 assert(ValueVTs.size() == 1);
1128
1129 ArgInfo DemoteArg(DemoteReg, ValueVTs[0].getTypeForEVT(PtrTy->getContext()),
1131 setArgFlags(DemoteArg, AttributeList::ReturnIndex, DL, F);
1132 DemoteArg.Flags[0].setSRet();
1133 SplitArgs.insert(SplitArgs.begin(), DemoteArg);
1134}
1135
1137 const CallBase &CB,
1138 CallLoweringInfo &Info) const {
1139 const DataLayout &DL = MIRBuilder.getDataLayout();
1140 Type *RetTy = CB.getType();
1141 unsigned AS = DL.getAllocaAddrSpace();
1142 LLT FramePtrTy = LLT::pointer(AS, DL.getPointerSizeInBits(AS));
1143
1144 int FI = MIRBuilder.getMF().getFrameInfo().CreateStackObject(
1145 DL.getTypeAllocSize(RetTy), DL.getPrefTypeAlign(RetTy), false);
1146
1147 Register DemoteReg = MIRBuilder.buildFrameIndex(FramePtrTy, FI).getReg(0);
1148 ArgInfo DemoteArg(DemoteReg, PointerType::get(RetTy->getContext(), AS),
1150 setArgFlags(DemoteArg, AttributeList::ReturnIndex, DL, CB);
1151 DemoteArg.Flags[0].setSRet();
1152
1153 Info.OrigArgs.insert(Info.OrigArgs.begin(), DemoteArg);
1154 Info.DemoteStackIndex = FI;
1155 Info.DemoteRegister = DemoteReg;
1156}
1157
1160 CCAssignFn *Fn) const {
1161 for (unsigned I = 0, E = Outs.size(); I < E; ++I) {
1162 MVT VT = MVT::getVT(Outs[I].Ty);
1163 if (Fn(I, VT, VT, CCValAssign::Full, Outs[I].Flags[0], Outs[I].Ty, CCInfo))
1164 return false;
1165 }
1166 return true;
1167}
1168
1170 AttributeList Attrs,
1172 const DataLayout &DL) const {
1173 LLVMContext &Context = RetTy->getContext();
1175
1176 SmallVector<EVT, 4> SplitVTs;
1177 ComputeValueVTs(*TLI, DL, RetTy, SplitVTs);
1178 addArgFlagsFromAttributes(Flags, Attrs, AttributeList::ReturnIndex);
1179
1180 for (EVT VT : SplitVTs) {
1181 unsigned NumParts =
1182 TLI->getNumRegistersForCallingConv(Context, CallConv, VT);
1183 MVT RegVT = TLI->getRegisterTypeForCallingConv(Context, CallConv, VT);
1184 Type *PartTy = EVT(RegVT).getTypeForEVT(Context);
1185
1186 for (unsigned I = 0; I < NumParts; ++I) {
1187 Outs.emplace_back(PartTy, Flags);
1188 }
1189 }
1190}
1191
1193 const auto &F = MF.getFunction();
1194 Type *ReturnType = F.getReturnType();
1195 CallingConv::ID CallConv = F.getCallingConv();
1196
1198 getReturnInfo(CallConv, ReturnType, F.getAttributes(), SplitArgs,
1199 MF.getDataLayout());
1200 return canLowerReturn(MF, CallConv, SplitArgs, F.isVarArg());
1201}
1202
1204 const MachineRegisterInfo &MRI, const uint32_t *CallerPreservedMask,
1205 const SmallVectorImpl<CCValAssign> &OutLocs,
1206 const SmallVectorImpl<ArgInfo> &OutArgs) const {
1207 for (unsigned i = 0; i < OutLocs.size(); ++i) {
1208 const auto &ArgLoc = OutLocs[i];
1209 // If it's not a register, it's fine.
1210 if (!ArgLoc.isRegLoc())
1211 continue;
1212
1213 MCRegister PhysReg = ArgLoc.getLocReg();
1214
1215 // Only look at callee-saved registers.
1216 if (MachineOperand::clobbersPhysReg(CallerPreservedMask, PhysReg))
1217 continue;
1218
1219 LLVM_DEBUG(
1220 dbgs()
1221 << "... Call has an argument passed in a callee-saved register.\n");
1222
1223 // Check if it was copied from.
1224 const ArgInfo &OutInfo = OutArgs[i];
1225
1226 if (OutInfo.Regs.size() > 1) {
1227 LLVM_DEBUG(
1228 dbgs() << "... Cannot handle arguments in multiple registers.\n");
1229 return false;
1230 }
1231
1232 // Check if we copy the register, walking through copies from virtual
1233 // registers. Note that getDefIgnoringCopies does not ignore copies from
1234 // physical registers.
1235 MachineInstr *RegDef = getDefIgnoringCopies(OutInfo.Regs[0], MRI);
1236 if (!RegDef || RegDef->getOpcode() != TargetOpcode::COPY) {
1237 LLVM_DEBUG(
1238 dbgs()
1239 << "... Parameter was not copied into a VReg, cannot tail call.\n");
1240 return false;
1241 }
1242
1243 // Got a copy. Verify that it's the same as the register we want.
1244 Register CopyRHS = RegDef->getOperand(1).getReg();
1245 if (CopyRHS != PhysReg) {
1246 LLVM_DEBUG(dbgs() << "... Callee-saved register was not copied into "
1247 "VReg, cannot tail call.\n");
1248 return false;
1249 }
1250 }
1251
1252 return true;
1253}
1254
1256 MachineFunction &MF,
1258 ValueAssigner &CalleeAssigner,
1259 ValueAssigner &CallerAssigner) const {
1260 const Function &F = MF.getFunction();
1261 CallingConv::ID CalleeCC = Info.CallConv;
1262 CallingConv::ID CallerCC = F.getCallingConv();
1263
1264 if (CallerCC == CalleeCC)
1265 return true;
1266
1268 CCState CCInfo1(CalleeCC, Info.IsVarArg, MF, ArgLocs1, F.getContext());
1269 if (!determineAssignments(CalleeAssigner, InArgs, CCInfo1))
1270 return false;
1271
1273 CCState CCInfo2(CallerCC, F.isVarArg(), MF, ArgLocs2, F.getContext());
1274 if (!determineAssignments(CallerAssigner, InArgs, CCInfo2))
1275 return false;
1276
1277 // We need the argument locations to match up exactly. If there's more in
1278 // one than the other, then we are done.
1279 if (ArgLocs1.size() != ArgLocs2.size())
1280 return false;
1281
1282 // Make sure that each location is passed in exactly the same way.
1283 for (unsigned i = 0, e = ArgLocs1.size(); i < e; ++i) {
1284 const CCValAssign &Loc1 = ArgLocs1[i];
1285 const CCValAssign &Loc2 = ArgLocs2[i];
1286
1287 // We need both of them to be the same. So if one is a register and one
1288 // isn't, we're done.
1289 if (Loc1.isRegLoc() != Loc2.isRegLoc())
1290 return false;
1291
1292 if (Loc1.isRegLoc()) {
1293 // If they don't have the same register location, we're done.
1294 if (Loc1.getLocReg() != Loc2.getLocReg())
1295 return false;
1296
1297 // They matched, so we can move to the next ArgLoc.
1298 continue;
1299 }
1300
1301 // Loc1 wasn't a RegLoc, so they both must be MemLocs. Check if they match.
1302 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset())
1303 return false;
1304 }
1305
1306 return true;
1307}
1308
1310 const DataLayout &DL, const CCValAssign &VA, ISD::ArgFlagsTy Flags) const {
1311 const MVT ValVT = VA.getValVT();
1312 if (ValVT != MVT::iPTR) {
1313 LLT ValTy(ValVT);
1314
1315 // We lost the pointeriness going through CCValAssign, so try to restore it
1316 // based on the flags.
1317 if (Flags.isPointer()) {
1318 LLT PtrTy = LLT::pointer(Flags.getPointerAddrSpace(),
1319 ValTy.getScalarSizeInBits());
1320 if (ValVT.isVector() && ValVT.getVectorNumElements() != 1)
1321 return LLT::vector(ValTy.getElementCount(), PtrTy);
1322 return PtrTy;
1323 }
1324
1325 return ValTy;
1326 }
1327
1328 unsigned AddrSpace = Flags.getPointerAddrSpace();
1329 return LLT::pointer(AddrSpace, DL.getPointerSize(AddrSpace));
1330}
1331
1333 const ArgInfo &Arg, Register DstPtr, Register SrcPtr,
1334 const MachinePointerInfo &DstPtrInfo, Align DstAlign,
1335 const MachinePointerInfo &SrcPtrInfo, Align SrcAlign, uint64_t MemSize,
1336 CCValAssign &VA) const {
1337 MachineFunction &MF = MIRBuilder.getMF();
1339 SrcPtrInfo,
1341 SrcAlign);
1342
1344 DstPtrInfo,
1346 MemSize, DstAlign);
1347
1348 const LLT PtrTy = MRI.getType(DstPtr);
1349 const LLT SizeTy = LLT::integer(PtrTy.getSizeInBits());
1350
1351 auto SizeConst = MIRBuilder.buildConstant(SizeTy, MemSize);
1352 MIRBuilder.buildMemCpy(DstPtr, SrcPtr, SizeConst, *DstMMO, *SrcMMO);
1353}
1354
1356 const CCValAssign &VA,
1357 unsigned MaxSizeBits) {
1358 LLT LocTy{VA.getLocVT()};
1359 LLT ValTy{VA.getValVT()};
1360
1361 if (LocTy.getSizeInBits() == ValTy.getSizeInBits())
1362 return ValReg;
1363
1364 if (LocTy.isScalar() && MaxSizeBits && MaxSizeBits < LocTy.getSizeInBits()) {
1365 if (MaxSizeBits <= ValTy.getSizeInBits())
1366 return ValReg;
1367 LocTy = LLT::scalar(MaxSizeBits);
1368 }
1369
1370 const LLT ValRegTy = MRI.getType(ValReg);
1371 if (ValRegTy.isPointer()) {
1372 // The x32 ABI wants to zero extend 32-bit pointers to 64-bit registers, so
1373 // we have to cast to do the extension.
1374 LLT IntPtrTy = LLT::scalar(ValRegTy.getSizeInBits());
1375 ValReg = MIRBuilder.buildPtrToInt(IntPtrTy, ValReg).getReg(0);
1376 }
1377
1378 switch (VA.getLocInfo()) {
1379 default:
1380 break;
1381 case CCValAssign::Full:
1382 case CCValAssign::BCvt:
1384 // FIXME: bitconverting between vector types may or may not be a
1385 // nop in big-endian situations.
1386 return ValReg;
1387 case CCValAssign::AExt: {
1388 auto MIB = MIRBuilder.buildAnyExt(LocTy, ValReg);
1389 return MIB.getReg(0);
1390 }
1391 case CCValAssign::SExt: {
1392 Register NewReg = MRI.createGenericVirtualRegister(LocTy);
1393 MIRBuilder.buildSExt(NewReg, ValReg);
1394 return NewReg;
1395 }
1396 case CCValAssign::ZExt: {
1397 Register NewReg = MRI.createGenericVirtualRegister(LocTy);
1398 MIRBuilder.buildZExt(NewReg, ValReg);
1399 return NewReg;
1400 }
1401 }
1402 llvm_unreachable("unable to extend register");
1403}
1404
1405void CallLowering::ValueAssigner::anchor() {}
1406
1408 const CCValAssign &VA, Register SrcReg, LLT NarrowTy) {
1409 switch (VA.getLocInfo()) {
1411 return MIRBuilder
1412 .buildAssertZExt(MRI.cloneVirtualRegister(SrcReg), SrcReg,
1413 NarrowTy.getScalarSizeInBits())
1414 .getReg(0);
1415 }
1417 return MIRBuilder
1418 .buildAssertSExt(MRI.cloneVirtualRegister(SrcReg), SrcReg,
1419 NarrowTy.getScalarSizeInBits())
1420 .getReg(0);
1421 break;
1422 }
1423 default:
1424 return SrcReg;
1425 }
1426}
1427
1428/// Check if we can use a basic COPY instruction between the two types.
1429///
1430/// We're currently building on top of the infrastructure using MVT, which loses
1431/// pointer information in the CCValAssign. We accept copies from physical
1432/// registers that have been reported as integers if it's to an equivalent sized
1433/// pointer LLT.
1434static bool isCopyCompatibleType(LLT SrcTy, LLT DstTy) {
1435 if (SrcTy == DstTy)
1436 return true;
1437
1438 if (SrcTy.getSizeInBits() != DstTy.getSizeInBits())
1439 return false;
1440
1441 SrcTy = SrcTy.getScalarType();
1442 DstTy = DstTy.getScalarType();
1443
1444 return (SrcTy.isPointer() && DstTy.isScalar()) ||
1445 (DstTy.isPointer() && SrcTy.isScalar());
1446}
1447
1449 Register ValVReg, Register PhysReg, const CCValAssign &VA,
1450 ISD::ArgFlagsTy Flags) {
1451 const MVT LocVT = VA.getLocVT();
1452 const LLT LocTy = getLLTForMVT(LocVT);
1453 const LLT RegTy = MRI.getType(ValVReg);
1454
1455 if (isCopyCompatibleType(RegTy, LocTy)) {
1456 MIRBuilder.buildCopy(ValVReg, PhysReg);
1457 return;
1458 }
1459
1460 auto Copy = MIRBuilder.buildCopy(LocTy, PhysReg);
1461 auto Hint = buildExtensionHint(VA, Copy.getReg(0), RegTy);
1462 MIRBuilder.buildTrunc(ValVReg, Hint);
1463}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static void addFlagsFromAttrSet(ISD::ArgFlagsTy &Flags, AttributeSet Attrs)
Helper function which updates Flags based on the contents of Attrs.
static MachineInstrBuilder mergeVectorRegsToResultRegs(MachineIRBuilder &B, ArrayRef< Register > DstRegs, ArrayRef< Register > SrcRegs)
Pack values SrcRegs to cover the vector type result DstRegs.
static bool isCopyCompatibleType(LLT SrcTy, LLT DstTy)
Check if we can use a basic COPY instruction between the two types.
static unsigned extendOpFromFlags(llvm::ISD::ArgFlagsTy Flags)
This file describes how to lower LLVM calls to machine code calls.
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
This file declares the MachineIRBuilder class.
Promote Memory to Register
Definition Mem2Reg.cpp:110
static MCRegister getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
R600 Clause Merge
#define LLVM_DEBUG(...)
Definition Debug.h:119
This file describes how to lower LLVM code to machine code.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
ArrayRef< T > take_front(size_t N=1) const
Return a copy of *this with only the first N elements.
Definition ArrayRef.h:218
ArrayRef< T > drop_front(size_t N=1) const
Drop the first N elements of the array.
Definition ArrayRef.h:194
const T & front() const
Get the first element.
Definition ArrayRef.h:144
size_t size() const
Get the array size.
Definition ArrayRef.h:141
bool empty() const
Check if the array is empty.
Definition ArrayRef.h:136
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:407
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:106
CCState - This class holds information needed while lowering arguments and return values.
MachineFunction & getMachineFunction() const
CallingConv::ID getCallingConv() const
LLVMContext & getContext() const
CCValAssign - Represent assignment of one arg/retval to a location.
Register getLocReg() const
LocInfo getLocInfo() const
bool needsCustom() const
int64_t getLocMemOffset() const
unsigned getValNo() const
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
MaybeAlign getRetAlign() const
Extract the alignment of the return value.
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
CallingConv::ID getCallingConv() const
LLVM_ABI bool isMustTailCall() const
Tests if this call site must be tail call optimized.
LLVM_ABI bool isIndirectCall() const
Return true if the callsite is an indirect call.
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
Value * getCalledOperand() const
bool isConvergent() const
Determine if the invoke is convergent.
FunctionType * getFunctionType() const
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
AttributeList getAttributes() const
Return the attributes for this call.
LLVM_ABI bool isTailCall() const
Tests if this call site is marked as a tail call.
void insertSRetOutgoingArgument(MachineIRBuilder &MIRBuilder, const CallBase &CB, CallLoweringInfo &Info) const
For the call-base described by CB, insert the hidden sret ArgInfo to the OrigArgs field of Info.
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 checkReturnTypeForCallConv(MachineFunction &MF) const
Toplevel function to check the return type based on the target calling convention.
bool handleAssignments(ValueHandler &Handler, SmallVectorImpl< ArgInfo > &Args, CCState &CCState, SmallVectorImpl< CCValAssign > &ArgLocs, MachineIRBuilder &MIRBuilder, ArrayRef< Register > ThisReturnRegs={}) const
Use Handler to insert code to handle the argument/return values represented by Args.
bool resultsCompatible(CallLoweringInfo &Info, MachineFunction &MF, SmallVectorImpl< ArgInfo > &InArgs, ValueAssigner &CalleeAssigner, ValueAssigner &CallerAssigner) const
virtual bool canLowerReturn(MachineFunction &MF, CallingConv::ID CallConv, SmallVectorImpl< BaseArgInfo > &Outs, bool IsVarArg) const
This hook must be implemented to check whether the return values described by Outs can fit into the r...
virtual bool isTypeIsValidForThisReturn(EVT Ty) const
For targets which support the "returned" parameter attribute, returns true if the given type is a val...
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 splitToValueTypes(const ArgInfo &OrigArgInfo, SmallVectorImpl< ArgInfo > &SplitArgs, const DataLayout &DL, CallingConv::ID CallConv, SmallVectorImpl< TypeSize > *Offsets=nullptr) const
Break OrigArgInfo into one or more pieces the calling convention can process, returned in SplitArgs.
static void buildCopyToRegs(MachineIRBuilder &B, ArrayRef< Register > DstRegs, Register SrcReg, LLT SrcTy, LLT PartTy, unsigned ExtendOp=TargetOpcode::G_ANYEXT)
Create a sequence of instructions to expand the value in SrcReg (of type SrcTy) to the types in DstRe...
ISD::ArgFlagsTy getAttributesForArgIdx(const CallBase &Call, unsigned ArgIdx) const
bool determineAndHandleAssignments(ValueHandler &Handler, ValueAssigner &Assigner, SmallVectorImpl< ArgInfo > &Args, MachineIRBuilder &MIRBuilder, CallingConv::ID CallConv, bool IsVarArg, ArrayRef< Register > ThisReturnRegs={}) const
Invoke ValueAssigner::assignArg on each of the given Args and then use Handler to move them to the as...
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.
static void buildCopyFromRegs(MachineIRBuilder &B, ArrayRef< Register > OrigRegs, ArrayRef< Register > Regs, LLT LLTy, LLT PartLLT, const ISD::ArgFlagsTy Flags)
Create a sequence of instructions to combine pieces split into register typed values to the original ...
void addArgFlagsFromAttributes(ISD::ArgFlagsTy &Flags, const AttributeList &Attrs, unsigned OpIdx) const
Adds flags to Flags based off of the attributes in Attrs.
bool parametersInCSRMatch(const MachineRegisterInfo &MRI, const uint32_t *CallerPreservedMask, const SmallVectorImpl< CCValAssign > &ArgLocs, const SmallVectorImpl< ArgInfo > &OutVals) const
Check whether parameters to a call that are passed in callee saved registers are the same as from the...
void getReturnInfo(CallingConv::ID CallConv, Type *RetTy, AttributeList Attrs, SmallVectorImpl< BaseArgInfo > &Outs, const DataLayout &DL) const
Get the type and the ArgFlags for the split components of RetTy as returned by ComputeValueVTs.
bool determineAssignments(ValueAssigner &Assigner, SmallVectorImpl< ArgInfo > &Args, CCState &CCInfo) const
Analyze the argument list in Args, using Assigner to populate CCInfo.
bool checkReturn(CCState &CCInfo, SmallVectorImpl< BaseArgInfo > &Outs, CCAssignFn *Fn) const
const TargetLowering * getTLI() const
Getter for generic TargetLowering class.
virtual bool lowerCall(MachineIRBuilder &MIRBuilder, CallLoweringInfo &Info) const
This hook must be implemented to lower the given call instruction, including argument and return valu...
void setArgFlags(ArgInfo &Arg, unsigned OpIdx, const DataLayout &DL, const FuncInfoTy &FuncInfo) const
ISD::ArgFlagsTy getAttributesForReturn(const CallBase &Call) const
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
unsigned getAllocaAddrSpace() const
Definition DataLayout.h:252
static constexpr ElementCount getFixed(ScalarTy MinVal)
Definition TypeSize.h:305
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
Definition TypeSize.h:311
unsigned getNumParams() const
Return the number of fixed parameters this function type requires.
bool isVarArg() const
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLT changeElementCount(ElementCount EC) const
Return a vector or scalar with the same element type and the new element count.
constexpr unsigned getScalarSizeInBits() const
constexpr bool isScalar() const
constexpr LLT changeElementType(LLT NewEltTy) const
If this type is a vector, return a vector with the same number of elements but the new element type.
static constexpr LLT vector(ElementCount EC, unsigned ScalarSizeInBits)
Get a low-level vector of some number of elements and element width.
LLT getScalarType() const
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool isVector() const
static constexpr LLT pointer(unsigned AddressSpace, unsigned SizeInBits)
Get a low-level pointer in the given address space.
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr bool isPointer() const
constexpr ElementCount getElementCount() const
constexpr unsigned getAddressSpace() const
static constexpr LLT fixed_vector(unsigned NumElements, unsigned ScalarSizeInBits)
Get a low-level fixed-width vector of some number of elements and element width.
static LLT integer(unsigned SizeInBits)
constexpr TypeSize getSizeInBytes() const
Returns the total size of the type in bytes, i.e.
LLT getElementType() const
Returns the vector's element type. Only valid for vector types.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
Machine Value Type.
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
static LLVM_ABI MVT getVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
LLVM_ABI int CreateStackObject(uint64_t Size, Align Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
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.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
Helper class to build MachineInstr.
MachineInstrBuilder buildGlobalValue(const DstOp &Res, const GlobalValue *GV)
Build and insert Res = G_GLOBAL_VALUE GV.
std::optional< MachineInstrBuilder > materializeObjectPtrOffset(Register &Res, Register Op0, const LLT ValueTy, uint64_t Value)
Materialize and insert an instruction with appropriate flags for addressing some offset of an object,...
MachineInstrBuilder buildLoad(const DstOp &Res, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert Res = G_LOAD Addr, MMO.
MachineInstrBuilder buildStore(const SrcOp &Val, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert G_STORE Val, Addr, MMO.
MachineInstrBuilder buildFrameIndex(const DstOp &Res, int Idx)
Build and insert Res = G_FRAME_INDEX Idx.
MachineFunction & getMF()
Getter for the function we currently build.
MachineInstrBuilder buildAssertAlign(const DstOp &Res, const SrcOp &Op, Align AlignVal)
Build and insert Res = G_ASSERT_ALIGN Op, AlignVal.
MachineInstrBuilder buildCopy(const DstOp &Res, const SrcOp &Op)
Build and insert Res = COPY Op.
const DataLayout & getDataLayout() const
Register getReg(unsigned Idx) const
Get the register for the operand index.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
A description of a memory reference used in the backend.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
Register getReg() const
getReg - Returns the register number.
static MachineOperand CreateGA(const GlobalValue *GV, int64_t Offset, unsigned TargetFlags=0)
static bool clobbersPhysReg(const uint32_t *RegMask, MCRegister PhysReg)
clobbersPhysReg - Returns true if this RegMask clobbers PhysReg.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLT getType(Register Reg) const
Get the low-level type of Reg or LLT{} if Reg is not a generic (target independent) virtual register.
LLVM_ABI void setType(Register VReg, LLT Ty)
Set the low-level type of VReg to Ty.
LLVM_ABI Register createGenericVirtualRegister(LLT Ty, StringRef Name="")
Create and return a new generic virtual register with low-level type Ty.
LLVM_ABI Register cloneVirtualRegister(Register VReg, StringRef Name="")
Create and return a new virtual register in the function with the same attributes as the given regist...
Class to represent pointers.
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
Definition Type.cpp:911
Wrapper class representing virtual and physical registers.
Definition Register.h:20
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
iterator insert(iterator I, T &&Elt)
void truncate(size_type N)
Like resize, but requires that N is less than size().
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
virtual Align getByValTypeAlignment(Type *Ty, const DataLayout &DL) const
Returns the desired alignment for ByVal or InAlloca aggregate function arguments in the caller parame...
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition Type.h:368
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition Type.h:130
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
Definition Value.cpp:713
constexpr bool isKnownMultipleOf(ScalarTy RHS) const
This function tells the caller whether the element count is known at compile time to be a multiple of...
Definition TypeSize.h:180
constexpr ScalarTy getFixedValue() const
Definition TypeSize.h:200
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition TypeSize.h:216
static constexpr bool isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition TypeSize.h:223
constexpr LeafTy divideCoefficientBy(ScalarTy RHS) const
We do not provide the '/' operator here because division for polynomial types does not work in the sa...
Definition TypeSize.h:252
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:577
@ Undef
Value of the register doesn't matter.
LLVM_ABI void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< EVT > *MemVTs=nullptr, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
ComputeValueVTs - Given an LLVM IR type, compute a sequence of EVTs that represent all the individual...
Definition Analysis.cpp:119
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
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.
void * PointerTy
LLVM_ABI LLT getLLTForMVT(MVT Ty)
Get a rough equivalent of an LLT for a given MVT.
LLVM_ABI MachineInstr * getDefIgnoringCopies(Register Reg, const MachineRegisterInfo &MRI)
Find the def instruction for Reg, folding away any trivial copies.
Definition Utils.cpp:497
LLVM_ABI void ComputeValueTypes(const DataLayout &DL, Type *Ty, SmallVectorImpl< Type * > &Types, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
Given an LLVM IR type, compute non-aggregate subtypes.
Definition Analysis.cpp:72
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition Alignment.h:144
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
Definition MathExtras.h:389
LLVM_ABI LLVM_READNONE LLT getCoverTy(LLT OrigTy, LLT TargetTy)
Return smallest type that covers both OrigTy and TargetTy and is multiple of TargetTy.
Definition Utils.cpp:1208
IntPtrTy
Definition InstrProf.h:82
LLVM_ABI bool isInTailCallPosition(const CallBase &Call, const TargetMachine &TM, bool ReturnsFirstArg=false)
Test if the given instruction is in a position to be optimized with a tail-call.
Definition Analysis.cpp:539
ArrayRef(const T &OneElt) -> ArrayRef< T >
OutputIt copy(R &&Range, OutputIt Out)
Definition STLExtras.h:1885
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
Definition Alignment.h:201
LLVM_ABI LLVM_READNONE LLT getGCDType(LLT OrigTy, LLT TargetTy)
Return a type where the total size is the greatest common divisor of OrigTy and TargetTy.
Definition Utils.cpp:1229
LLVM_ABI LLT getLLTForType(Type &Ty, const DataLayout &DL)
Construct a low-level type based on an LLVM type.
LLVM_ABI Align inferAlignFromPtrInfo(MachineFunction &MF, const MachinePointerInfo &MPO)
Definition Utils.cpp:831
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
const Value * OrigValue
Optionally track the original IR value for the argument.
SmallVector< Register, 4 > Regs
unsigned OrigArgIndex
Index original Function's argument.
static const unsigned NoArgIndex
Sentinel value for implicit machine-level input arguments.
SmallVector< ISD::ArgFlagsTy, 4 > Flags
void assignValueToReg(Register ValVReg, Register PhysReg, const CCValAssign &VA, ISD::ArgFlagsTy Flags={}) override
Provides a default implementation for argument handling.
Register buildExtensionHint(const CCValAssign &VA, Register SrcReg, LLT NarrowTy)
Insert G_ASSERT_ZEXT/G_ASSERT_SEXT or other hint instruction based on VA, returning the new register ...
Argument handling is mostly uniform between the four places that make these decisions: function forma...
virtual bool assignArg(unsigned ValNo, EVT OrigVT, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, const ArgInfo &Info, ISD::ArgFlagsTy Flags, CCState &State)
Wrap call to (typically tablegenerated CCAssignFn).
void copyArgumentMemory(const ArgInfo &Arg, Register DstPtr, Register SrcPtr, const MachinePointerInfo &DstPtrInfo, Align DstAlign, const MachinePointerInfo &SrcPtrInfo, Align SrcAlign, uint64_t MemSize, CCValAssign &VA) const
Do a memory copy of MemSize bytes from SrcPtr to DstPtr.
virtual Register getStackAddress(uint64_t MemSize, int64_t Offset, MachinePointerInfo &MPO, ISD::ArgFlagsTy Flags)=0
Materialize a VReg containing the address of the specified stack-based object.
virtual LLT getStackValueStoreType(const DataLayout &DL, const CCValAssign &VA, ISD::ArgFlagsTy Flags) const
Return the in-memory size to write for the argument at VA.
virtual void assignValueToReg(Register ValVReg, Register PhysReg, const CCValAssign &VA, ISD::ArgFlagsTy Flags)=0
The specified value has been assigned to a physical register, handle the appropriate COPY (either to ...
bool isIncomingArgumentHandler() const
Returns true if the handler is dealing with incoming arguments, i.e.
virtual void assignValueToAddress(Register ValVReg, Register Addr, LLT MemTy, const MachinePointerInfo &MPO, const CCValAssign &VA)=0
The specified value has been assigned to a stack location.
Register extendRegister(Register ValReg, const CCValAssign &VA, unsigned MaxSizeBits=0)
Extend a register to the location type given in VA, capped at extending to at most MaxSize bits.
virtual unsigned assignCustomValue(ArgInfo &Arg, ArrayRef< CCValAssign > VAs, std::function< void()> *Thunk=nullptr)
Handle custom values, which may be passed into one or more of VAs.
Extended Value Type.
Definition ValueTypes.h:35
LLVM_ABI Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
This class contains a discriminated union of information about pointers in memory operands,...
static LLVM_ABI MachinePointerInfo getUnknownStack(MachineFunction &MF)
Stack memory without other information.
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106