LLVM 24.0.0git
Function.cpp
Go to the documentation of this file.
1//===- Function.cpp - Implement the Global object classes -----------------===//
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// This file implements the Function class for the IR library.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/IR/Function.h"
15#include "llvm/ADT/ArrayRef.h"
16#include "llvm/ADT/BitVector.h"
17#include "llvm/ADT/DenseSet.h"
18#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/StringRef.h"
23#include "llvm/IR/Argument.h"
24#include "llvm/IR/Attributes.h"
25#include "llvm/IR/BasicBlock.h"
26#include "llvm/IR/Constant.h"
28#include "llvm/IR/Constants.h"
30#include "llvm/IR/GlobalValue.h"
32#include "llvm/IR/Instruction.h"
34#include "llvm/IR/Intrinsics.h"
35#include "llvm/IR/LLVMContext.h"
36#include "llvm/IR/MDBuilder.h"
37#include "llvm/IR/Metadata.h"
38#include "llvm/IR/Module.h"
39#include "llvm/IR/Operator.h"
42#include "llvm/IR/Type.h"
43#include "llvm/IR/Use.h"
44#include "llvm/IR/User.h"
45#include "llvm/IR/Value.h"
51#include "llvm/Support/ModRef.h"
52#include <cassert>
53#include <cstddef>
54#include <cstdint>
55#include <cstring>
56#include <string>
57
58using namespace llvm;
59
60// Explicit instantiations of SymbolTableListTraits since some of the methods
61// are not in the public header file...
63
65 "non-global-value-max-name-size", cl::Hidden, cl::init(1024),
66 cl::desc("Maximum size for the name of non-global values."));
67
69 validateBlockNumbers();
70
71 NextBlockNum = 0;
72 for (auto &BB : *this)
73 BB.Number = NextBlockNum++;
74 BlockNumEpoch++;
75}
76
77void Function::validateBlockNumbers() const {
78#ifndef NDEBUG
79 BitVector Numbers(NextBlockNum);
80 for (const auto &BB : *this) {
81 unsigned Num = BB.getNumber();
82 assert(Num < NextBlockNum && "out of range block number");
83 assert(!Numbers[Num] && "duplicate block numbers");
84 Numbers.set(Num);
85 }
86#endif
87}
88
90 for (auto &BB : *this) {
91 BB.convertToNewDbgValues();
92 }
93}
94
96 bool Modified = false;
97 for (auto &BB : *this) {
98 if (BB.convertFromNewDbgValues())
99 Modified = true;
100 }
101 return Modified;
102}
103
104//===----------------------------------------------------------------------===//
105// Argument Implementation
106//===----------------------------------------------------------------------===//
107
108Argument::Argument(Type *Ty, const Twine &Name, Function *Par, unsigned ArgNo)
109 : Value(Ty, Value::ArgumentVal), Parent(Par), ArgNo(ArgNo) {
110 setName(Name);
111}
112
113void Argument::setParent(Function *parent) {
114 Parent = parent;
115}
116
117bool Argument::hasNonNullAttr(bool AllowUndefOrPoison) const {
118 if (!getType()->isPointerTy()) return false;
120 if (Attrs.hasAttribute(Attribute::NonNull) &&
121 (AllowUndefOrPoison || Attrs.hasAttribute(Attribute::NoUndef)))
122 return true;
123 else if (getDereferenceableBytes() > 0 &&
126 return true;
127 return false;
128}
129
130bool Argument::hasByValAttr() const {
131 if (!getType()->isPointerTy()) return false;
132 return hasAttribute(Attribute::ByVal);
133}
134
136 assert(getType()->isPointerTy() && "Only pointers have dead_on_return bytes");
137 return getParent()->getDeadOnReturnInfo(getArgNo());
138}
139
140bool Argument::hasByRefAttr() const {
141 if (!getType()->isPointerTy())
142 return false;
143 return hasAttribute(Attribute::ByRef);
144}
145
146bool Argument::hasSwiftSelfAttr() const {
147 return getParent()->hasParamAttribute(getArgNo(), Attribute::SwiftSelf);
148}
149
150bool Argument::hasSwiftErrorAttr() const {
151 return getParent()->hasParamAttribute(getArgNo(), Attribute::SwiftError);
152}
153
154bool Argument::hasInAllocaAttr() const {
155 if (!getType()->isPointerTy()) return false;
156 return hasAttribute(Attribute::InAlloca);
157}
158
160 if (!getType()->isPointerTy())
161 return false;
162 return hasAttribute(Attribute::Preallocated);
163}
164
166 if (!getType()->isPointerTy()) return false;
168 return Attrs.hasAttribute(Attribute::ByVal) ||
169 Attrs.hasAttribute(Attribute::InAlloca) ||
170 Attrs.hasAttribute(Attribute::Preallocated);
171}
172
174 if (!getType()->isPointerTy())
175 return false;
177 return Attrs.hasAttribute(Attribute::ByVal) ||
178 Attrs.hasAttribute(Attribute::StructRet) ||
179 Attrs.hasAttribute(Attribute::InAlloca) ||
180 Attrs.hasAttribute(Attribute::Preallocated) ||
181 Attrs.hasAttribute(Attribute::ByRef);
182}
183
184/// For a byval, sret, inalloca, or preallocated parameter, get the in-memory
185/// parameter type.
186static Type *getMemoryParamAllocType(AttributeSet ParamAttrs) {
187 // FIXME: All the type carrying attributes are mutually exclusive, so there
188 // should be a single query to get the stored type that handles any of them.
189 if (Type *ByValTy = ParamAttrs.getByValType())
190 return ByValTy;
191 if (Type *ByRefTy = ParamAttrs.getByRefType())
192 return ByRefTy;
193 if (Type *PreAllocTy = ParamAttrs.getPreallocatedType())
194 return PreAllocTy;
195 if (Type *InAllocaTy = ParamAttrs.getInAllocaType())
196 return InAllocaTy;
197 if (Type *SRetTy = ParamAttrs.getStructRetType())
198 return SRetTy;
199
200 return nullptr;
201}
202
204 if (Type *MemTy = getMemoryParamAllocType(getAttributes()))
205 return DL.getTypeAllocSize(MemTy);
206 return 0;
207}
208
211}
212
214 assert(getType()->isPointerTy() && "Only pointers have alignments");
215 return getParent()->getParamAlign(getArgNo());
216}
217
219 return getParent()->getParamStackAlign(getArgNo());
220}
221
222Type *Argument::getParamByValType() const {
223 assert(getType()->isPointerTy() && "Only pointers have byval types");
224 return getParent()->getParamByValType(getArgNo());
225}
226
228 assert(getType()->isPointerTy() && "Only pointers have sret types");
229 return getParent()->getParamStructRetType(getArgNo());
230}
231
232Type *Argument::getParamByRefType() const {
233 assert(getType()->isPointerTy() && "Only pointers have byref types");
234 return getParent()->getParamByRefType(getArgNo());
235}
236
237Type *Argument::getParamInAllocaType() const {
238 assert(getType()->isPointerTy() && "Only pointers have inalloca types");
239 return getParent()->getParamInAllocaType(getArgNo());
240}
241
244 "Only pointers have dereferenceable bytes");
245 return getParent()->getParamDereferenceableBytes(getArgNo());
246}
247
250 "Only pointers have dereferenceable bytes");
251 return getParent()->getParamDereferenceableOrNullBytes(getArgNo());
252}
253
254FPClassTest Argument::getNoFPClass() const {
255 return getParent()->getParamNoFPClass(getArgNo());
256}
257
258std::optional<ConstantRange> Argument::getRange() const {
259 const Attribute RangeAttr = getAttribute(llvm::Attribute::Range);
260 if (RangeAttr.isValid())
261 return RangeAttr.getRange();
262 return std::nullopt;
263}
264
265bool Argument::hasNestAttr() const {
266 if (!getType()->isPointerTy()) return false;
267 return hasAttribute(Attribute::Nest);
268}
269
270bool Argument::hasNoAliasAttr() const {
271 if (!getType()->isPointerTy()) return false;
272 return hasAttribute(Attribute::NoAlias);
273}
274
275bool Argument::hasNoCaptureAttr() const {
276 if (!getType()->isPointerTy()) return false;
277 return capturesNothing(getAttributes().getCaptureInfo());
278}
279
280bool Argument::hasNoFreeAttr() const {
281 if (!getType()->isPointerTy()) return false;
282 return hasAttribute(Attribute::NoFree);
283}
284
285bool Argument::hasStructRetAttr() const {
286 if (!getType()->isPointerTy()) return false;
287 return hasAttribute(Attribute::StructRet);
288}
289
290bool Argument::hasInRegAttr() const {
291 return hasAttribute(Attribute::InReg);
292}
293
294bool Argument::hasReturnedAttr() const {
295 return hasAttribute(Attribute::Returned);
296}
297
298bool Argument::hasZExtAttr() const {
299 return hasAttribute(Attribute::ZExt);
300}
301
302bool Argument::hasSExtAttr() const {
303 return hasAttribute(Attribute::SExt);
304}
305
306bool Argument::onlyReadsMemory() const {
308 return Attrs.hasAttribute(Attribute::ReadOnly) ||
309 Attrs.hasAttribute(Attribute::ReadNone);
310}
311
312void Argument::addAttrs(AttrBuilder &B) {
313 AttributeList AL = getParent()->getAttributes();
314 AL = AL.addParamAttributes(Parent->getContext(), getArgNo(), B);
315 getParent()->setAttributes(AL);
316}
317
319 getParent()->addParamAttr(getArgNo(), Kind);
320}
321
322void Argument::addAttr(Attribute Attr) {
323 getParent()->addParamAttr(getArgNo(), Attr);
324}
325
327 getParent()->removeParamAttr(getArgNo(), Kind);
328}
329
330void Argument::removeAttrs(const AttributeMask &AM) {
331 AttributeList AL = getParent()->getAttributes();
332 AL = AL.removeParamAttributes(Parent->getContext(), getArgNo(), AM);
333 getParent()->setAttributes(AL);
334}
335
337 return getParent()->hasParamAttribute(getArgNo(), Kind);
338}
339
340bool Argument::hasAttribute(StringRef Kind) const {
341 return getParent()->hasParamAttribute(getArgNo(), Kind);
342}
343
344Attribute Argument::getAttribute(Attribute::AttrKind Kind) const {
345 return getParent()->getParamAttribute(getArgNo(), Kind);
346}
347
349 return getParent()->getAttributes().getParamAttrs(getArgNo());
350}
351
352//===----------------------------------------------------------------------===//
353// Helper Methods in Function
354//===----------------------------------------------------------------------===//
355
357 return getType()->getContext();
358}
359
360const DataLayout &Function::getDataLayout() const {
361 return getParent()->getDataLayout();
362}
363
364unsigned Function::getInstructionCount() const {
365 unsigned NumInstrs = 0;
366 for (const BasicBlock &BB : BasicBlocks)
367 NumInstrs += BB.size();
368 return NumInstrs;
369}
370
372 const Twine &N, Module &M) {
373 return Create(Ty, Linkage, M.getDataLayout().getProgramAddressSpace(), N, &M);
374}
375
377 LinkageTypes Linkage,
378 unsigned AddrSpace, const Twine &N,
379 Module *M) {
380 auto *F = new (AllocMarker) Function(Ty, Linkage, AddrSpace, N, M);
381 AttrBuilder B(F->getContext());
382 UWTableKind UWTable = M->getUwtable();
383 if (UWTable != UWTableKind::None)
384 B.addUWTableAttr(UWTable);
385 switch (M->getFramePointer()) {
387 // 0 ("none") is the default.
388 break;
390 B.addAttribute("frame-pointer", "reserved");
391 break;
393 B.addAttribute("frame-pointer", "non-leaf");
394 break;
396 B.addAttribute("frame-pointer", "non-leaf-no-reserve");
397 break;
399 B.addAttribute("frame-pointer", "all");
400 break;
401 }
402 if (M->getModuleFlag("function_return_thunk_extern"))
403 B.addAttribute(Attribute::FnRetThunkExtern);
404 StringRef DefaultCPU = F->getContext().getDefaultTargetCPU();
405 if (!DefaultCPU.empty())
406 B.addAttribute("target-cpu", DefaultCPU);
407 StringRef DefaultFeatures = F->getContext().getDefaultTargetFeatures();
408 if (!DefaultFeatures.empty())
409 B.addAttribute("target-features", DefaultFeatures);
410
411 // Check if the module attribute is present and not zero.
412 auto isModuleAttributeSet = [&](const StringRef &ModAttr) -> bool {
413 const auto *Attr =
414 mdconst::extract_or_null<ConstantInt>(M->getModuleFlag(ModAttr));
415 return Attr && !Attr->isZero();
416 };
417
418 auto AddAttributeIfSet = [&](const StringRef &ModAttr) {
419 if (isModuleAttributeSet(ModAttr))
420 B.addAttribute(ModAttr);
421 };
422
423 StringRef SignType = "none";
424 if (isModuleAttributeSet("sign-return-address"))
425 SignType = "non-leaf";
426 if (isModuleAttributeSet("sign-return-address-all"))
427 SignType = "all";
428 if (SignType != "none") {
429 B.addAttribute("sign-return-address", SignType);
430 B.addAttribute("sign-return-address-key",
431 isModuleAttributeSet("sign-return-address-with-bkey")
432 ? "b_key"
433 : "a_key");
434 }
435 AddAttributeIfSet("branch-target-enforcement");
436 AddAttributeIfSet("branch-protection-pauth-lr");
437 AddAttributeIfSet("guarded-control-stack");
438 AddAttributeIfSet("ptrauth-returns");
439 AddAttributeIfSet("ptrauth-auth-traps");
440 AddAttributeIfSet("ptrauth-indirect-gotos");
441 AddAttributeIfSet("aarch64-jump-table-hardening");
442
443 F->addFnAttrs(B);
444 return F;
445}
446
448 getParent()->getFunctionList().remove(getIterator());
449}
450
452 getParent()->getFunctionList().erase(getIterator());
453}
454
456 Function::iterator FromBeginIt,
457 Function::iterator FromEndIt) {
458#ifdef EXPENSIVE_CHECKS
459 // Check that FromBeginIt is before FromEndIt.
460 auto FromFEnd = FromF->end();
461 for (auto It = FromBeginIt; It != FromEndIt; ++It)
462 assert(It != FromFEnd && "FromBeginIt not before FromEndIt!");
463#endif // EXPENSIVE_CHECKS
464 BasicBlocks.splice(ToIt, FromF->BasicBlocks, FromBeginIt, FromEndIt);
465}
466
468 Function::iterator ToIt) {
469 return BasicBlocks.erase(FromIt, ToIt);
470}
471
472//===----------------------------------------------------------------------===//
473// Function Implementation
474//===----------------------------------------------------------------------===//
475
476static unsigned computeAddrSpace(unsigned AddrSpace, Module *M) {
477 // If AS == -1 and we are passed a valid module pointer we place the function
478 // in the program address space. Otherwise we default to AS0.
479 if (AddrSpace == static_cast<unsigned>(-1))
480 return M ? M->getDataLayout().getProgramAddressSpace() : 0;
481 return AddrSpace;
482}
483
484Function::Function(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace,
485 const Twine &name, Module *ParentModule)
486 : GlobalObject(Ty, Value::FunctionVal, AllocMarker, Linkage, name,
487 computeAddrSpace(AddrSpace, ParentModule)),
488 NumArgs(Ty->getNumParams()) {
489 assert(FunctionType::isValidReturnType(getReturnType()) &&
490 "invalid return type");
491 setGlobalObjectSubClassData(0);
492
493 // We only need a symbol table for a function if the context keeps value names
494 if (!getContext().shouldDiscardValueNames())
495 SymTab = std::make_unique<ValueSymbolTable>(NonGlobalValueMaxNameSize);
496
497 // If the function has arguments, mark them as lazily built.
498 if (Ty->getNumParams())
499 setValueSubclassData(1); // Set the "has lazy arguments" bit.
500
501 if (ParentModule) {
502 ParentModule->getFunctionList().push_back(this);
503 }
504
505 HasLLVMReservedName = getName().starts_with("llvm.");
506 // Ensure intrinsics have the right parameter attributes.
507 // Note, the IntID field will have been set in Value::setName if this function
508 // name is a valid intrinsic ID.
509 if (IntID) {
510 // Don't set the attributes if the intrinsic signature is invalid. This
511 // case will either be auto-upgraded or fail verification.
512 SmallVector<Type *> OverloadTys;
513 if (!Intrinsic::isSignatureValid(IntID, Ty, OverloadTys))
514 return;
515
516 setAttributes(Intrinsic::getAttributes(getContext(), IntID, Ty));
517 }
518}
519
521 validateBlockNumbers();
522
523 dropAllReferences(); // After this it is safe to delete instructions.
524
525 // Delete all of the method arguments and unlink from symbol table...
526 if (Arguments)
527 clearArguments();
528
529 // Remove the function from the on-the-side GC table.
530 clearGC();
531}
532
533void Function::BuildLazyArguments() const {
534 // Create the arguments vector, all arguments start out unnamed.
535 auto *FT = getFunctionType();
536 if (NumArgs > 0) {
537 Arguments = std::allocator<Argument>().allocate(NumArgs);
538 for (unsigned i = 0, e = NumArgs; i != e; ++i) {
539 Type *ArgTy = FT->getParamType(i);
540 assert(!ArgTy->isVoidTy() && "Cannot have void typed arguments!");
541 new (Arguments + i) Argument(ArgTy, "", const_cast<Function *>(this), i);
542 }
543 }
544
545 // Clear the lazy arguments bit.
546 unsigned SDC = getSubclassDataFromValue();
547 SDC &= ~(1 << 0);
548 const_cast<Function*>(this)->setValueSubclassData(SDC);
549 assert(!hasLazyArguments());
550}
551
553 return MutableArrayRef<Argument>(Args, Count);
554}
555
558}
559
560void Function::clearArguments() {
561 for (Argument &A : makeArgArray(Arguments, NumArgs)) {
562 A.setName("");
563 A.~Argument();
564 }
565 std::allocator<Argument>().deallocate(Arguments, NumArgs);
566 Arguments = nullptr;
567}
568
570 assert(isDeclaration() && "Expected no references to current arguments");
571
572 // Drop the current arguments, if any, and set the lazy argument bit.
573 if (!hasLazyArguments()) {
575 [](const Argument &A) { return A.use_empty(); }) &&
576 "Expected arguments to be unused in declaration");
577 clearArguments();
578 setValueSubclassData(getSubclassDataFromValue() | (1 << 0));
579 }
580
581 // Nothing to steal if Src has lazy arguments.
582 if (Src.hasLazyArguments())
583 return;
584
585 // Steal arguments from Src, and fix the lazy argument bits.
586 assert(arg_size() == Src.arg_size());
587 Arguments = Src.Arguments;
588 Src.Arguments = nullptr;
589 for (Argument &A : makeArgArray(Arguments, NumArgs)) {
590 // FIXME: This does the work of transferNodesFromList inefficiently.
592 if (A.hasName())
593 Name = A.getName();
594 if (!Name.empty())
595 A.setName("");
596 A.setParent(this);
597 if (!Name.empty())
598 A.setName(Name);
599 }
600
601 setValueSubclassData(getSubclassDataFromValue() & ~(1 << 0));
602 assert(!hasLazyArguments());
603 Src.setValueSubclassData(Src.getSubclassDataFromValue() | (1 << 0));
604}
605
606void Function::deleteBodyImpl(bool ShouldDrop) {
607 setIsMaterializable(false);
608
609 for (BasicBlock &BB : *this)
611
612 // Delete all basic blocks. They are now unused, except possibly by
613 // blockaddresses, but BasicBlock's destructor takes care of those.
614 while (!BasicBlocks.empty())
615 BasicBlocks.begin()->eraseFromParent();
616
617 if (getNumOperands()) {
618 if (ShouldDrop) {
619 // Drop uses of any optional data (real or placeholder).
621 setNumHungOffUseOperands(0);
622 } else {
623 // The code needs to match Function::allocHungoffUselist().
625 Op<0>().set(CPN);
626 Op<1>().set(CPN);
627 Op<2>().set(CPN);
628 }
629 setValueSubclassData(getSubclassDataFromValue() & ~0xe);
630 }
631
632 // Metadata is stored in a side-table.
633 clearMetadata();
634}
635
636void Function::addAttributeAtIndex(unsigned i, Attribute Attr) {
637 AttributeSets = AttributeSets.addAttributeAtIndex(getContext(), i, Attr);
638}
639
641 AttributeSets = AttributeSets.addFnAttribute(getContext(), Kind);
642}
643
645 AttributeSets = AttributeSets.addFnAttribute(getContext(), Kind, Val);
646}
647
648void Function::addFnAttr(Attribute Attr) {
649 AttributeSets = AttributeSets.addFnAttribute(getContext(), Attr);
650}
651
652void Function::addFnAttrs(const AttrBuilder &Attrs) {
653 AttributeSets = AttributeSets.addFnAttributes(getContext(), Attrs);
654}
655
657 AttributeSets = AttributeSets.addRetAttribute(getContext(), Kind);
658}
659
660void Function::addRetAttr(Attribute Attr) {
661 AttributeSets = AttributeSets.addRetAttribute(getContext(), Attr);
662}
663
664void Function::addRetAttrs(const AttrBuilder &Attrs) {
665 AttributeSets = AttributeSets.addRetAttributes(getContext(), Attrs);
666}
667
668void Function::addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) {
669 AttributeSets = AttributeSets.addParamAttribute(getContext(), ArgNo, Kind);
670}
671
672void Function::addParamAttr(unsigned ArgNo, Attribute Attr) {
673 AttributeSets = AttributeSets.addParamAttribute(getContext(), ArgNo, Attr);
674}
675
676void Function::addParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs) {
677 AttributeSets = AttributeSets.addParamAttributes(getContext(), ArgNo, Attrs);
678}
679
681 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind);
682}
683
684void Function::removeAttributeAtIndex(unsigned i, StringRef Kind) {
685 AttributeSets = AttributeSets.removeAttributeAtIndex(getContext(), i, Kind);
686}
687
689 AttributeSets = AttributeSets.removeFnAttribute(getContext(), Kind);
690}
691
693 AttributeSets = AttributeSets.removeFnAttribute(getContext(), Kind);
694}
695
697 AttributeSets = AttributeSets.removeFnAttributes(getContext(), AM);
698}
699
701 AttributeSets = AttributeSets.removeRetAttribute(getContext(), Kind);
702}
703
705 AttributeSets = AttributeSets.removeRetAttribute(getContext(), Kind);
706}
707
708void Function::removeRetAttrs(const AttributeMask &Attrs) {
709 AttributeSets = AttributeSets.removeRetAttributes(getContext(), Attrs);
710}
711
712void Function::removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) {
713 AttributeSets = AttributeSets.removeParamAttribute(getContext(), ArgNo, Kind);
714}
715
716void Function::removeParamAttr(unsigned ArgNo, StringRef Kind) {
717 AttributeSets = AttributeSets.removeParamAttribute(getContext(), ArgNo, Kind);
718}
719
720void Function::removeParamAttrs(unsigned ArgNo, const AttributeMask &Attrs) {
721 AttributeSets =
722 AttributeSets.removeParamAttributes(getContext(), ArgNo, Attrs);
723}
724
725void Function::addDereferenceableParamAttr(unsigned ArgNo, uint64_t Bytes) {
726 AttributeSets =
727 AttributeSets.addDereferenceableParamAttr(getContext(), ArgNo, Bytes);
728}
729
731 return AttributeSets.hasFnAttr(Kind);
732}
733
734bool Function::hasFnAttribute(StringRef Kind) const {
735 return AttributeSets.hasFnAttr(Kind);
736}
737
739 return AttributeSets.hasRetAttr(Kind);
740}
741
742bool Function::hasParamAttribute(unsigned ArgNo,
743 Attribute::AttrKind Kind) const {
744 return AttributeSets.hasParamAttr(ArgNo, Kind);
745}
746
747bool Function::hasParamAttribute(unsigned ArgNo, StringRef Kind) const {
748 return AttributeSets.hasParamAttr(ArgNo, Kind);
749}
750
751Attribute Function::getAttributeAtIndex(unsigned i,
752 Attribute::AttrKind Kind) const {
753 return AttributeSets.getAttributeAtIndex(i, Kind);
754}
755
756Attribute Function::getAttributeAtIndex(unsigned i, StringRef Kind) const {
757 return AttributeSets.getAttributeAtIndex(i, Kind);
758}
759
760bool Function::hasAttributeAtIndex(unsigned Idx,
761 Attribute::AttrKind Kind) const {
762 return AttributeSets.hasAttributeAtIndex(Idx, Kind);
763}
764
765Attribute Function::getFnAttribute(Attribute::AttrKind Kind) const {
766 return AttributeSets.getFnAttr(Kind);
767}
768
769Attribute Function::getFnAttribute(StringRef Kind) const {
770 return AttributeSets.getFnAttr(Kind);
771}
772
774 return AttributeSets.getRetAttr(Kind);
775}
776
778 uint64_t Default) const {
779 Attribute A = getFnAttribute(Name);
781 if (A.isStringAttribute()) {
782 StringRef Str = A.getValueAsString();
783 if (Str.getAsInteger(0, Result))
784 getContext().emitError("cannot parse integer attribute " + Name);
785 }
786
787 return Result;
788}
789
790/// gets the specified attribute from the list of attributes.
791Attribute Function::getParamAttribute(unsigned ArgNo,
792 Attribute::AttrKind Kind) const {
793 return AttributeSets.getParamAttr(ArgNo, Kind);
794}
795
797 uint64_t Bytes) {
798 AttributeSets = AttributeSets.addDereferenceableOrNullParamAttr(getContext(),
799 ArgNo, Bytes);
800}
801
803 AttributeSets = AttributeSets.addRangeRetAttr(getContext(), CR);
804}
805
807 Attribute Attr = getFnAttribute(Attribute::DenormalFPEnv);
808 if (!Attr.isValid())
810
811 DenormalFPEnv FPEnv = Attr.getDenormalFPEnv();
812 return &FPType == &APFloat::IEEEsingle() ? FPEnv.F32Mode : FPEnv.DefaultMode;
813}
814
816 Attribute Attr = getFnAttribute(Attribute::DenormalFPEnv);
817 return Attr.isValid() ? Attr.getDenormalFPEnv() : DenormalFPEnv::getDefault();
818}
819
820const std::string &Function::getGC() const {
821 assert(hasGC() && "Function has no collector");
822 return getContext().getGC(*this);
823}
824
825void Function::setGC(std::string Str) {
826 setValueSubclassDataBit(14, !Str.empty());
827 getContext().setGC(*this, std::move(Str));
828}
829
830void Function::clearGC() {
831 if (!hasGC())
832 return;
833 getContext().deleteGC(*this);
834 setValueSubclassDataBit(14, false);
835}
836
838 return hasFnAttribute(Attribute::StackProtect) ||
839 hasFnAttribute(Attribute::StackProtectStrong) ||
840 hasFnAttribute(Attribute::StackProtectReq);
841}
842
843/// Copy all additional attributes (those not needed to create a Function) from
844/// the Function Src to this one.
845void Function::copyAttributesFrom(const Function *Src) {
847 setCallingConv(Src->getCallingConv());
848 setAttributes(Src->getAttributes());
849 if (Src->hasGC())
850 setGC(Src->getGC());
851 else
852 clearGC();
853 if (Src->hasPersonalityFn())
854 setPersonalityFn(Src->getPersonalityFn());
855 if (Src->hasPrefixData())
856 setPrefixData(Src->getPrefixData());
857 if (Src->hasPrologueData())
858 setPrologueData(Src->getPrologueData());
859}
860
862 return getAttributes().getMemoryEffects();
863}
866}
867
868/// Determine if the function does not access memory.
870 return getMemoryEffects().doesNotAccessMemory();
871}
874}
875
876/// Determine if the function does not access or only reads memory.
877bool Function::onlyReadsMemory() const {
878 return getMemoryEffects().onlyReadsMemory();
879}
881 setMemoryEffects(getMemoryEffects() & MemoryEffects::readOnly());
882}
883
884/// Determine if the function does not access or only writes memory.
885bool Function::onlyWritesMemory() const {
886 return getMemoryEffects().onlyWritesMemory();
887}
889 setMemoryEffects(getMemoryEffects() & MemoryEffects::writeOnly());
890}
891
892/// Determine if the call can access memory only using pointers based
893/// on its arguments.
895 return getMemoryEffects().onlyAccessesArgPointees();
896}
898 setMemoryEffects(getMemoryEffects() & MemoryEffects::argMemOnly());
899}
900
901/// Determine if the function may only access memory that is
902/// inaccessible from the IR.
904 return getMemoryEffects().onlyAccessesInaccessibleMem();
905}
908}
909
910/// Determine if the function may only access memory that is
911/// either inaccessible from the IR or pointed to by its arguments.
913 return getMemoryEffects().onlyAccessesInaccessibleOrArgMem();
914}
916 setMemoryEffects(getMemoryEffects() &
918}
919
920bool Function::isTargetIntrinsic() const {
921 return Intrinsic::isTargetIntrinsic(IntID);
922}
923
925 LibFuncCache = UnknownLibFunc;
927 if (!Name.starts_with("llvm.")) {
928 HasLLVMReservedName = false;
930 return;
931 }
932 HasLLVMReservedName = true;
933 IntID = Intrinsic::lookupIntrinsicID(Name);
934}
935
936/// hasAddressTaken - returns true if there are any uses of this function
937/// other than direct calls or invokes to it. Optionally ignores callback
938/// uses, assume like pointer annotation calls, and references in llvm.used
939/// and llvm.compiler.used variables.
940bool Function::hasAddressTaken(const User **PutOffender,
941 bool IgnoreCallbackUses,
942 bool IgnoreAssumeLikeCalls, bool IgnoreLLVMUsed,
943 bool IgnoreARCAttachedCall,
944 bool IgnoreCastedDirectCall) const {
945 for (const Use &U : uses()) {
946 const User *FU = U.getUser();
947 if (IgnoreCallbackUses) {
948 AbstractCallSite ACS(&U);
949 if (ACS && ACS.isCallbackCall())
950 continue;
951 }
952
953 const auto *Call = dyn_cast<CallBase>(FU);
954 if (!Call) {
955 if (IgnoreAssumeLikeCalls &&
957 all_of(FU->users(), [](const User *U) {
958 if (const auto *I = dyn_cast<IntrinsicInst>(U))
959 return I->isAssumeLikeIntrinsic();
960 return false;
961 })) {
962 continue;
963 }
964
965 if (IgnoreLLVMUsed && !FU->user_empty()) {
966 const User *FUU = FU;
968 FU->hasOneUse() && !FU->user_begin()->user_empty())
969 FUU = *FU->user_begin();
970 if (llvm::all_of(FUU->users(), [](const User *U) {
971 if (const auto *GV = dyn_cast<GlobalVariable>(U))
972 return GV->hasName() &&
973 (GV->getName() == "llvm.compiler.used" ||
974 GV->getName() == "llvm.used");
975 return false;
976 }))
977 continue;
978 }
979 if (PutOffender)
980 *PutOffender = FU;
981 return true;
982 }
983
984 if (IgnoreAssumeLikeCalls) {
985 if (const auto *I = dyn_cast<IntrinsicInst>(Call))
986 if (I->isAssumeLikeIntrinsic())
987 continue;
988 }
989
990 if (!Call->isCallee(&U) || (!IgnoreCastedDirectCall &&
991 Call->getFunctionType() != getFunctionType())) {
992 if (IgnoreARCAttachedCall &&
993 Call->isOperandBundleOfType(LLVMContext::OB_clang_arc_attachedcall,
994 U.getOperandNo()))
995 continue;
996
997 if (PutOffender)
998 *PutOffender = FU;
999 return true;
1000 }
1001 }
1002 return false;
1003}
1004
1005bool Function::isDefTriviallyDead() const {
1006 // Check the linkage
1007 if (!hasLinkOnceLinkage() && !hasLocalLinkage() &&
1008 !hasAvailableExternallyLinkage())
1009 return false;
1010
1011 return use_empty();
1012}
1013
1014/// callsFunctionThatReturnsTwice - Return true if the function has a call to
1015/// setjmp or other function that gcc recognizes as "returning twice".
1017 for (const Instruction &I : instructions(this))
1018 if (const auto *Call = dyn_cast<CallBase>(&I))
1019 if (Call->hasFnAttr(Attribute::ReturnsTwice))
1020 return true;
1021
1022 return false;
1023}
1024
1025Constant *Function::getPersonalityFn() const {
1026 assert(hasPersonalityFn() && getNumOperands());
1027 return cast<Constant>(Op<0>());
1028}
1029
1030void Function::setPersonalityFn(Constant *Fn) {
1031 setHungoffOperand<0>(Fn);
1032 setValueSubclassDataBit(3, Fn != nullptr);
1033}
1034
1035Constant *Function::getPrefixData() const {
1036 assert(hasPrefixData() && getNumOperands());
1037 return cast<Constant>(Op<1>());
1038}
1039
1040void Function::setPrefixData(Constant *PrefixData) {
1041 setHungoffOperand<1>(PrefixData);
1042 setValueSubclassDataBit(1, PrefixData != nullptr);
1043}
1044
1045Constant *Function::getPrologueData() const {
1046 assert(hasPrologueData() && getNumOperands());
1047 return cast<Constant>(Op<2>());
1048}
1049
1050void Function::setPrologueData(Constant *PrologueData) {
1051 setHungoffOperand<2>(PrologueData);
1052 setValueSubclassDataBit(2, PrologueData != nullptr);
1053}
1054
1055void Function::allocHungoffUselist() {
1056 // If we've already allocated a uselist, stop here.
1057 if (getNumOperands())
1058 return;
1059
1060 allocHungoffUses(3, /*IsPhi=*/ false);
1061 setNumHungOffUseOperands(3);
1062
1063 // Initialize the uselist with placeholder operands to allow traversal.
1065 Op<0>().set(CPN);
1066 Op<1>().set(CPN);
1067 Op<2>().set(CPN);
1068}
1069
1070template <int Idx>
1071void Function::setHungoffOperand(Constant *C) {
1072 if (C) {
1073 allocHungoffUselist();
1074 Op<Idx>().set(C);
1075 } else if (getNumOperands()) {
1077 }
1078}
1079
1080void Function::setValueSubclassDataBit(unsigned Bit, bool On) {
1081 assert(Bit < 16 && "SubclassData contains only 16 bits");
1082 if (On)
1083 setValueSubclassData(getSubclassDataFromValue() | (1 << Bit));
1084 else
1085 setValueSubclassData(getSubclassDataFromValue() & ~(1 << Bit));
1086}
1087
1089 const DenseSet<GlobalValue::GUID> *S) {
1090 auto ImportGUIDs = getImportGUIDs();
1091 if (S == nullptr && ImportGUIDs.size())
1092 S = &ImportGUIDs;
1093
1094 MDBuilder MDB(getContext());
1095 setMetadata(LLVMContext::MD_prof,
1096 MDB.createFunctionEntryCount(Count, false, S));
1097}
1098
1099std::optional<uint64_t> Function::getEntryCount() const {
1100 MDNode *MD = getMetadata(LLVMContext::MD_prof);
1101 if (MD && MD->getOperand(0))
1102 if (MDString *MDS = dyn_cast<MDString>(MD->getOperand(0))) {
1103 if (MDS->getString() != MDProfLabels::FunctionEntryCount)
1104 return std::nullopt;
1107 // A value of -1 is used for SamplePGO when there were no samples.
1108 // Treat this the same as unknown.
1109 if (Count == static_cast<uint64_t>(-1))
1110 return std::nullopt;
1111 return Count;
1112 }
1113 return std::nullopt;
1114}
1115
1118 if (MDNode *MD = getMetadata(LLVMContext::MD_prof))
1119 if (MDString *MDS = dyn_cast<MDString>(MD->getOperand(0)))
1120 if (MDS->getString() == MDProfLabels::FunctionEntryCount)
1121 for (unsigned i = 2; i < MD->getNumOperands(); i++)
1123 ->getValue()
1124 .getZExtValue());
1125 return R;
1126}
1127
1128bool Function::nullPointerIsDefined() const {
1129 return hasFnAttribute(Attribute::NullPointerIsValid);
1130}
1131
1132unsigned Function::getVScaleValue() const {
1133 Attribute Attr = getFnAttribute(Attribute::VScaleRange);
1134 if (!Attr.isValid())
1135 return 0;
1136
1137 unsigned VScale = Attr.getVScaleRangeMin();
1138 if (VScale && VScale == Attr.getVScaleRangeMax())
1139 return VScale;
1140
1141 return 0;
1142}
1143
1144bool llvm::NullPointerIsDefined(const Function *F, unsigned AS) {
1145 if (F && F->nullPointerIsDefined())
1146 return true;
1147
1148 if (AS != 0)
1149 return true;
1150
1151 return false;
1152}
1153
1155 switch (CC) {
1156 case CallingConv::C:
1157 case CallingConv::Fast:
1158 case CallingConv::Cold:
1159 case CallingConv::GHC:
1160 case CallingConv::HiPE:
1164 case CallingConv::Swift:
1166 case CallingConv::Tail:
1181 case CallingConv::Win64:
1189 return true;
1194 return false;
1212 case CallingConv::GRAAL:
1229 return true;
1230 default:
1231 return false;
1232 }
1233
1234 llvm_unreachable("covered callingconv switch");
1235}
static unsigned getIntrinsicID(const SDNode *N)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
AMDGPU Lower Kernel Arguments
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Expand Atomic instructions
This file contains the simple types necessary to represent the attributes associated with functions a...
static const Function * getParent(const Value *V)
This file implements the BitVector class.
static bool setMemoryEffects(Function &F, MemoryEffects ME)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_EXPORT_TEMPLATE
Definition Compiler.h:217
This file contains the declarations for the subclasses of Constant, which represent the different fla...
DXIL Finalize Linkage
This file defines the DenseSet and SmallDenseSet classes.
@ Default
Module.h This file contains the declarations for the Module class.
This defines the Use class.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Machine Check Debug Module
This file contains the declarations for metadata subclasses.
This file contains the declarations for profiling metadata utility functions.
static StringRef getName(Value *V)
Func getContext().diagnose(DiagnosticInfoUnsupported(Func
This file contains some templates that are useful if you are working with the STL at all.
static const char * name
static Type * getMemoryParamAllocType(AttributeSet ParamAttrs)
For a byval, sret, inalloca, or preallocated parameter, get the in-memory parameter type.
Definition Function.cpp:186
static cl::opt< int > NonGlobalValueMaxNameSize("non-global-value-max-name-size", cl::Hidden, cl::init(1024), cl::desc("Maximum size for the name of non-global values."))
static MutableArrayRef< Argument > makeArgArray(Argument *Args, size_t Count)
Definition Function.cpp:552
static unsigned computeAddrSpace(unsigned AddrSpace, Module *M)
Definition Function.cpp:476
This file defines the SmallString class.
This file defines the SmallVector class.
static SymbolRef::Type getType(const Symbol *Sym)
Definition TapiFile.cpp:39
static const fltSemantics & IEEEsingle()
Definition APFloat.h:304
uint64_t getZExtValue() const
Get zero extended value.
Definition APInt.h:1561
This class represents an incoming formal argument to a Function.
Definition Argument.h:32
LLVM_ABI Type * getParamByRefType() const
If this is a byref argument, return its type.
Definition Function.cpp:232
LLVM_ABI DeadOnReturnInfo getDeadOnReturnInfo() const
Returns information on the memory marked dead_on_return for the argument.
Definition Function.cpp:135
LLVM_ABI Attribute getAttribute(Attribute::AttrKind Kind) const
Definition Function.cpp:344
LLVM_ABI bool hasNoAliasAttr() const
Return true if this argument has the noalias attribute.
Definition Function.cpp:270
LLVM_ABI bool hasNonNullAttr(bool AllowUndefOrPoison=true) const
Return true if this argument has the nonnull attribute.
Definition Function.cpp:117
LLVM_ABI bool hasByRefAttr() const
Return true if this argument has the byref attribute.
Definition Function.cpp:140
LLVM_ABI uint64_t getDereferenceableOrNullBytes() const
If this argument has the dereferenceable_or_null attribute, return the number of bytes known to be de...
Definition Function.cpp:248
LLVM_ABI void addAttr(Attribute::AttrKind Kind)
Definition Function.cpp:318
LLVM_ABI Argument(Type *Ty, const Twine &Name="", Function *F=nullptr, unsigned ArgNo=0)
Argument constructor.
Definition Function.cpp:108
LLVM_ABI bool onlyReadsMemory() const
Return true if this argument has the readonly or readnone attribute.
Definition Function.cpp:306
LLVM_ABI bool hasPointeeInMemoryValueAttr() const
Return true if this argument has the byval, sret, inalloca, preallocated, or byref attribute.
Definition Function.cpp:173
LLVM_ABI bool hasAttribute(Attribute::AttrKind Kind) const
Check if an argument has a given attribute.
Definition Function.cpp:336
LLVM_ABI bool hasReturnedAttr() const
Return true if this argument has the returned attribute.
Definition Function.cpp:294
LLVM_ABI Type * getParamStructRetType() const
If this is an sret argument, return its type.
Definition Function.cpp:227
LLVM_ABI bool hasInRegAttr() const
Return true if this argument has the inreg attribute.
Definition Function.cpp:290
LLVM_ABI bool hasByValAttr() const
Return true if this argument has the byval attribute.
Definition Function.cpp:130
LLVM_ABI bool hasPreallocatedAttr() const
Return true if this argument has the preallocated attribute.
Definition Function.cpp:159
LLVM_ABI bool hasSExtAttr() const
Return true if this argument has the sext attribute.
Definition Function.cpp:302
LLVM_ABI void removeAttr(Attribute::AttrKind Kind)
Remove attributes from an argument.
Definition Function.cpp:326
LLVM_ABI uint64_t getPassPointeeByValueCopySize(const DataLayout &DL) const
If this argument satisfies has hasPassPointeeByValueAttr, return the in-memory ABI size copied to the...
Definition Function.cpp:203
LLVM_ABI void removeAttrs(const AttributeMask &AM)
Definition Function.cpp:330
LLVM_ABI Type * getPointeeInMemoryValueType() const
If hasPointeeInMemoryValueAttr returns true, the in-memory ABI type is returned.
Definition Function.cpp:209
LLVM_ABI bool hasInAllocaAttr() const
Return true if this argument has the inalloca attribute.
Definition Function.cpp:154
LLVM_ABI bool hasSwiftErrorAttr() const
Return true if this argument has the swifterror attribute.
Definition Function.cpp:150
LLVM_ABI FPClassTest getNoFPClass() const
If this argument has nofpclass attribute, return the mask representing disallowed floating-point valu...
Definition Function.cpp:254
LLVM_ABI void addAttrs(AttrBuilder &B)
Add attributes to an argument.
Definition Function.cpp:312
LLVM_ABI bool hasNoFreeAttr() const
Return true if this argument has the nofree attribute.
Definition Function.cpp:280
LLVM_ABI bool hasSwiftSelfAttr() const
Return true if this argument has the swiftself attribute.
Definition Function.cpp:146
LLVM_ABI Type * getParamInAllocaType() const
If this is an inalloca argument, return its type.
Definition Function.cpp:237
LLVM_ABI bool hasZExtAttr() const
Return true if this argument has the zext attribute.
Definition Function.cpp:298
LLVM_ABI Type * getParamByValType() const
If this is a byval argument, return its type.
Definition Function.cpp:222
LLVM_ABI bool hasNestAttr() const
Return true if this argument has the nest attribute.
Definition Function.cpp:265
LLVM_ABI MaybeAlign getParamAlign() const
If this is a byval or inalloca argument, return its alignment.
Definition Function.cpp:213
LLVM_ABI std::optional< ConstantRange > getRange() const
If this argument has a range attribute, return the value range of the argument.
Definition Function.cpp:258
LLVM_ABI bool hasStructRetAttr() const
Return true if this argument has the sret attribute.
Definition Function.cpp:285
LLVM_ABI AttributeSet getAttributes() const
Definition Function.cpp:348
LLVM_ABI bool hasPassPointeeByValueCopyAttr() const
Return true if this argument has the byval, inalloca, or preallocated attribute.
Definition Function.cpp:165
LLVM_ABI MaybeAlign getParamStackAlign() const
Definition Function.cpp:218
LLVM_ABI bool hasNoCaptureAttr() const
Return true if this argument has the nocapture attribute.
Definition Function.cpp:275
LLVM_ABI uint64_t getDereferenceableBytes() const
If this argument has the dereferenceable attribute, return the number of bytes known to be dereferenc...
Definition Function.cpp:242
This class stores enough information to efficiently remove some attributes from an existing AttrBuild...
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:407
LLVM_ABI Type * getInAllocaType() const
LLVM_ABI Type * getByValType() const
LLVM_ABI Type * getStructRetType() const
LLVM_ABI Type * getPreallocatedType() const
LLVM_ABI Type * getByRefType() const
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
Definition Attributes.h:125
static LLVM_ABI Attribute getWithMemoryEffects(LLVMContext &Context, MemoryEffects ME)
LLVM Basic Block Representation.
Definition BasicBlock.h:62
LLVM_ABI void dropAllReferences()
Cause all subinstructions to "let go" of all the references that said subinstructions are maintaining...
This is the shared class of boolean and integer constants.
Definition Constants.h:87
const APInt & getValue() const
Return the constant as an APInt value reference.
Definition Constants.h:159
static LLVM_ABI ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
This class represents a range of values.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Implements a dense probed hash-table based set.
Definition DenseSet.h:281
static LLVM_ABI bool isValidReturnType(Type *RetTy)
Return true if the specified type is valid as a return type.
Definition Type.cpp:462
void addFnAttr(Attribute::AttrKind Kind)
Add function attributes to this function.
Definition Function.cpp:640
unsigned getVScaleValue() const
Return the value for vscale based on the vscale_range attribute or 0 when unknown.
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Definition Function.h:169
void addParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs)
adds the attributes to the list of attributes for the given arg.
Definition Function.cpp:676
void removeRetAttr(Attribute::AttrKind Kind)
removes the attribute from the return value list of attributes.
Definition Function.cpp:700
void addRetAttrs(const AttrBuilder &Attrs)
Add return value attributes to this function.
Definition Function.cpp:664
bool isDefTriviallyDead() const
isDefTriviallyDead - Return true if it is trivially safe to remove this function definition from the ...
bool onlyAccessesInaccessibleMemOrArgMem() const
Determine if the function may only access memory that is either inaccessible from the IR or pointed t...
Definition Function.cpp:912
void splice(Function::iterator ToIt, Function *FromF)
Transfer all blocks from FromF to this function at ToIt.
Definition Function.h:746
BasicBlockListType::iterator iterator
Definition Function.h:70
bool hasAddressTaken(const User **=nullptr, bool IgnoreCallbackUses=false, bool IgnoreAssumeLikeCalls=true, bool IngoreLLVMUsed=false, bool IgnoreARCAttachedCall=false, bool IgnoreCastedDirectCall=false) const
hasAddressTaken - returns true if there are any uses of this function other than direct calls or invo...
Definition Function.cpp:940
void removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
removes the attribute from the list of attributes.
Definition Function.cpp:712
bool nullPointerIsDefined() const
Check if null pointer dereferencing is considered undefined behavior for the function.
bool convertFromNewDbgValues()
Definition Function.cpp:95
Attribute getParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const
gets the specified attribute from the list of attributes.
Definition Function.cpp:791
void setPrefixData(Constant *PrefixData)
bool hasStackProtectorFnAttr() const
Returns true if the function has ssp, sspstrong, or sspreq fn attrs.
Definition Function.cpp:837
void removeFromParent()
removeFromParent - This method unlinks 'this' from the containing module, but does not delete it.
Definition Function.cpp:447
const DataLayout & getDataLayout() const
Get the data layout of the module this function belongs to.
Definition Function.cpp:360
void addFnAttrs(const AttrBuilder &Attrs)
Add function attributes to this function.
Definition Function.cpp:652
void renumberBlocks()
Renumber basic blocks into a dense value range starting from 0.
Definition Function.cpp:68
void setDoesNotAccessMemory()
Definition Function.cpp:872
void setGC(std::string Str)
Definition Function.cpp:825
Attribute getFnAttribute(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind.
Definition Function.cpp:765
uint64_t getFnAttributeAsParsedInteger(StringRef Kind, uint64_t Default=0) const
For a string attribute Kind, parse attribute as an integer.
Definition Function.cpp:777
bool isConstrainedFPIntrinsic() const
Returns true if the function is one of the "Constrained Floating-PointIntrinsics".
Definition Function.cpp:556
void setOnlyAccessesArgMemory()
Definition Function.cpp:897
MemoryEffects getMemoryEffects() const
Definition Function.cpp:861
void setOnlyAccessesInaccessibleMemory()
Definition Function.cpp:906
void removeParamAttrs(unsigned ArgNo, const AttributeMask &Attrs)
removes the attribute from the list of attributes.
Definition Function.cpp:720
bool hasParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const
check if an attributes is in the list of attributes.
Definition Function.cpp:742
bool hasAttributeAtIndex(unsigned Idx, Attribute::AttrKind Kind) const
Check if attribute of the given kind is set at the given index.
Definition Function.cpp:760
static Function * createWithDefaultAttr(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Creates a function with some attributes recorded in llvm.module.flags and the LLVMContext applied.
Definition Function.cpp:376
void setOnlyReadsMemory()
Definition Function.cpp:880
bool isTargetIntrinsic() const
isTargetIntrinsic - Returns true if this function is an intrinsic and the intrinsic is specific to a ...
Definition Function.cpp:920
void removeFnAttrs(const AttributeMask &Attrs)
Definition Function.cpp:696
void addRetAttr(Attribute::AttrKind Kind)
Add return value attributes to this function.
Definition Function.cpp:656
DenormalFPEnv getDenormalFPEnv() const
Return the representational value of the denormal_fpenv attribute.
Definition Function.cpp:815
Constant * getPrologueData() const
Get the prologue data associated with this function.
Constant * getPersonalityFn() const
Get the personality function associated with this function.
void setOnlyWritesMemory()
Definition Function.cpp:888
void setPersonalityFn(Constant *Fn)
DenseSet< GlobalValue::GUID > getImportGUIDs() const
Returns the set of GUIDs that needs to be imported to the function for sample PGO,...
void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind)
removes the attribute from the list of attributes.
Definition Function.cpp:680
void eraseFromParent()
eraseFromParent - This method unlinks 'this' from the containing module and deletes it.
Definition Function.cpp:451
void removeFnAttr(Attribute::AttrKind Kind)
Remove function attributes from this function.
Definition Function.cpp:688
void addDereferenceableOrNullParamAttr(unsigned ArgNo, uint64_t Bytes)
adds the dereferenceable_or_null attribute to the list of attributes for the given arg.
Definition Function.cpp:796
void addRangeRetAttr(const ConstantRange &CR)
adds the range attribute to the list of attributes for the return value.
Definition Function.cpp:802
void stealArgumentListFrom(Function &Src)
Steal arguments from another function.
Definition Function.cpp:569
std::optional< uint64_t > getEntryCount() const
Get the entry count for this function.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
Definition Function.cpp:356
const std::string & getGC() const
Definition Function.cpp:820
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
adds the attribute to the list of attributes for the given arg.
Definition Function.cpp:668
bool doesNotAccessMemory() const
Determine if the function does not access memory.
Definition Function.cpp:869
DenormalMode getDenormalMode(const fltSemantics &FPType) const
Returns the denormal handling type for the default rounding mode of the function.
Definition Function.cpp:806
void updateAfterNameChange()
Update internal caches that depend on the function name (such as the intrinsic ID and libcall cache).
Definition Function.cpp:924
void setEntryCount(uint64_t Count, const DenseSet< GlobalValue::GUID > *Imports=nullptr)
Set the entry count for this function.
bool callsFunctionThatReturnsTwice() const
callsFunctionThatReturnsTwice - Return true if the function has a call to setjmp or other function th...
bool hasRetAttribute(Attribute::AttrKind Kind) const
check if an attribute is in the list of attributes for the return value.
Definition Function.cpp:738
bool onlyWritesMemory() const
Determine if the function does not access or only writes memory.
Definition Function.cpp:885
bool onlyAccessesInaccessibleMemory() const
Determine if the function may only access memory that is inaccessible from the IR.
Definition Function.cpp:903
void setPrologueData(Constant *PrologueData)
void removeRetAttrs(const AttributeMask &Attrs)
removes the attributes from the return value list of attributes.
Definition Function.cpp:708
bool onlyAccessesArgMemory() const
Determine if the call can access memory only using pointers based on its arguments.
Definition Function.cpp:894
Function::iterator erase(Function::iterator FromIt, Function::iterator ToIt)
Erases a range of BasicBlocks from FromIt to (not including) ToIt.
Definition Function.cpp:467
void setMemoryEffects(MemoryEffects ME)
Definition Function.cpp:864
Constant * getPrefixData() const
Get the prefix data associated with this function.
Attribute getAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) const
gets the attribute from the list of attributes.
Definition Function.cpp:751
iterator end()
Definition Function.h:840
void convertToNewDbgValues()
Definition Function.cpp:89
void setOnlyAccessesInaccessibleMemOrArgMem()
Definition Function.cpp:915
void addDereferenceableParamAttr(unsigned ArgNo, uint64_t Bytes)
adds the dereferenceable attribute to the list of attributes for the given arg.
Definition Function.cpp:725
unsigned getInstructionCount() const
Returns the number of non-debug IR instructions in this function.
Definition Function.cpp:364
bool onlyReadsMemory() const
Determine if the function does not access or only reads memory.
Definition Function.cpp:877
void addAttributeAtIndex(unsigned i, Attribute Attr)
adds the attribute to the list of attributes.
Definition Function.cpp:636
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition Function.cpp:730
void copyAttributesFrom(const Function *Src)
copyAttributesFrom - copy all additional attributes (those not needed to create a Function) from the ...
Definition Function.cpp:845
Attribute getRetAttribute(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind for the return value.
Definition Function.cpp:773
LLVM_ABI void copyAttributesFrom(const GlobalObject *Src)
Definition Globals.cpp:228
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Metadata node.
Definition Metadata.h:1069
const MDOperand & getOperand(unsigned I) const
Definition Metadata.h:1426
unsigned getNumOperands() const
Return number of MDNode operands.
Definition Metadata.h:1432
A single uniqued string.
Definition Metadata.h:722
static MemoryEffectsBase readOnly()
Definition ModRef.h:133
static MemoryEffectsBase argMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Definition ModRef.h:143
static MemoryEffectsBase inaccessibleMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Definition ModRef.h:149
static MemoryEffectsBase writeOnly()
Definition ModRef.h:138
static MemoryEffectsBase inaccessibleOrArgMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Definition ModRef.h:166
static MemoryEffectsBase none()
Definition ModRef.h:128
const FunctionListType & getFunctionList() const
Get the Module's list of functions (constant).
Definition Module.h:714
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:294
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
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
void dropAllReferences()
Drop all references to operands.
Definition User.h:324
user_iterator user_begin()
Definition Value.h:402
bool hasOneUse() const
Return true if there is exactly one use of this value.
Definition Value.h:439
iterator_range< user_iterator > users()
Definition Value.h:426
bool user_empty() const
Definition Value.h:389
void push_back(pointer val)
Definition ilist.h:250
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
LLVM_ABI LLVM_READNONE bool supportsNonVoidReturnType(CallingConv::ID CC)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ ARM64EC_Thunk_Native
Calling convention used in the ARM64EC ABI to implement calls between ARM64 code and thunks.
@ AArch64_VectorCall
Used between AArch64 Advanced SIMD functions.
@ X86_64_SysV
The C convention as specified in the x86-64 supplement to the System V ABI, used on most non-Windows ...
@ RISCV_VectorCall
Calling convention used for RISC-V V-extension.
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
@ M68k_INTR
Used for M68k interrupt routines.
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
@ MSP430_BUILTIN
Used for special MSP430 rtlib functions which have an "optimized" convention using additional registe...
@ AVR_SIGNAL
Used for AVR signal routines.
@ HiPE
Used by the High-Performance Erlang Compiler (HiPE).
Definition CallingConv.h:53
@ Swift
Calling convention for Swift.
Definition CallingConv.h:69
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ AArch64_SVE_VectorCall
Used between AArch64 SVE functions.
@ ARM_APCS
ARM Procedure Calling Standard (obsolete, but still used on some targets).
@ CFGuard_Check
Special calling convention on Windows for calling the Control Guard Check ICall funtion.
Definition CallingConv.h:82
@ AVR_INTR
Used for AVR interrupt routines.
@ PreserveMost
Used for runtime calls that preserves most registers.
Definition CallingConv.h:63
@ AnyReg
OBSOLETED - Used for stack based JavaScript calls.
Definition CallingConv.h:60
@ AMDGPU_Gfx
Used for AMD graphics targets.
@ DUMMY_HHVM
Placeholders for HHVM calling conventions (deprecated, removed).
@ AMDGPU_CS_ChainPreserve
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
@ ARM_AAPCS
ARM Architecture Procedure Calling Standard calling convention (aka EABI).
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
@ AArch64_SME_ABI_Support_Routines_PreserveMost_From_X2
Preserve X2-X15, X19-X29, SP, Z0-Z31, P0-P15.
@ CXX_FAST_TLS
Used for access functions.
Definition CallingConv.h:72
@ X86_INTR
x86 hardware interrupt context.
@ RISCV_VLSCall_32
Calling convention used for RISC-V V-extension fixed vectors.
@ AArch64_SME_ABI_Support_Routines_PreserveMost_From_X0
Preserve X0-X13, X19-X29, SP, Z0-Z31, P0-P15.
@ WASM_EmscriptenInvoke
For emscripten __invoke_* functions.
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AVR_BUILTIN
Used for special AVR rtlib functions which have an "optimized" convention to preserve registers.
@ GHC
Used by the Glasgow Haskell Compiler (GHC).
Definition CallingConv.h:50
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ Cold
Attempts to make code in the caller as efficient as possible under the assumption that the call is no...
Definition CallingConv.h:47
@ AArch64_SME_ABI_Support_Routines_PreserveMost_From_X1
Preserve X1-X15, X19-X29, SP, Z0-Z31, P0-P15.
@ X86_ThisCall
Similar to X86_StdCall.
@ PTX_Device
Call to a PTX device function.
@ SPIR_KERNEL
Used for SPIR kernel functions.
@ PreserveAll
Used for runtime calls that preserves (almost) all registers.
Definition CallingConv.h:66
@ X86_StdCall
stdcall is mostly used by the Win32 API.
Definition CallingConv.h:99
@ SPIR_FUNC
Used for SPIR non-kernel device functions.
@ Fast
Attempts to make calls as fast as possible (e.g.
Definition CallingConv.h:41
@ MSP430_INTR
Used for MSP430 interrupt routines.
@ X86_VectorCall
MSVC calling convention that passes vectors and vector aggregates in SSE registers.
@ Intel_OCL_BI
Used for Intel OpenCL built-ins.
@ PreserveNone
Used for runtime calls that preserves none general registers.
Definition CallingConv.h:90
@ AMDGPU_ES
Used for AMDPAL shader stage before geometry shader if geometry is in use.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
Definition CallingConv.h:76
@ Win64
The C convention as implemented on Windows/x86-64 and AArch64.
@ SwiftTail
This follows the Swift calling convention in how arguments are passed but guarantees tail calls will ...
Definition CallingConv.h:87
@ GRAAL
Used by GraalVM. Two additional registers are reserved.
@ AMDGPU_LS
Used for AMDPAL vertex shader if tessellation is in use.
@ ARM_AAPCS_VFP
Same as ARM_AAPCS, but uses hard floating point ABI.
@ ARM64EC_Thunk_X64
Calling convention used in the ARM64EC ABI to implement calls between x64 code and thunks.
@ M68k_RTD
Used for M68k rtd-based CC (similar to X86's stdcall).
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
@ X86_FastCall
'fast' analog of X86_StdCall.
LLVM_ABI bool isConstrainedFPIntrinsic(ID QID)
Returns true if the intrinsic ID is for one of the "ConstrainedFloating-Point Intrinsics".
LLVM_ABI ID lookupIntrinsicID(StringRef Name)
This does the actual lookup of an intrinsic ID which matches the given function name.
LLVM_ABI AttributeList getAttributes(LLVMContext &C, ID id, FunctionType *FT)
Return the attributes for an intrinsic.
LLVM_ABI bool isSignatureValid(Intrinsic::ID ID, FunctionType *FT, SmallVectorImpl< Type * > &OverloadTys, raw_ostream &OS=nulls())
Returns true if FT is a valid function type for intrinsic ID.
LLVM_ABI bool isTargetIntrinsic(ID IID)
isTargetIntrinsic - Returns true if IID is an intrinsic specific to a certain target.
initializer< Ty > init(const Ty &Val)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract_or_null(Y &&MD)
Extract a Value from Metadata, allowing null.
Definition Metadata.h:683
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
Definition Metadata.h:668
constexpr double e
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1739
unsigned getPointerAddressSpace(const Type *T)
Definition SPIRVUtils.h:395
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:356
UWTableKind
Definition CodeGen.h:221
@ None
No unwind table requested.
Definition CodeGen.h:222
LLVM_ABI bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
bool isPointerTy(const Type *T)
Definition SPIRVUtils.h:383
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
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
bool capturesNothing(CaptureComponents CC)
Definition ModRef.h:375
#define N
Represents the full denormal controls for a function, including the default mode and the f32 specific...
static constexpr DenormalFPEnv getDefault()
Represent subnormal handling kind for floating point instruction inputs and outputs.
static constexpr DenormalMode getDefault()
Return the assumed default mode for a function without denormal-fp-math.
static LLVM_ABI const char * FunctionEntryCount
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106