[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / include / llvm / IR / Function.h
blobcee8d6c973f03d29b8710ace3650ef958c93f29c
1 //===- llvm/Function.h - Class to represent a single function ---*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains the declaration of the Function class, which represents a
10 // single function/procedure in LLVM.
12 // A function basically consists of a list of basic blocks, a list of arguments,
13 // and a symbol table.
15 //===----------------------------------------------------------------------===//
17 #ifndef LLVM_IR_FUNCTION_H
18 #define LLVM_IR_FUNCTION_H
20 #include "llvm/ADT/DenseSet.h"
21 #include "llvm/ADT/StringRef.h"
22 #include "llvm/ADT/Twine.h"
23 #include "llvm/ADT/ilist_node.h"
24 #include "llvm/ADT/iterator_range.h"
25 #include "llvm/IR/Argument.h"
26 #include "llvm/IR/Attributes.h"
27 #include "llvm/IR/BasicBlock.h"
28 #include "llvm/IR/CallingConv.h"
29 #include "llvm/IR/DerivedTypes.h"
30 #include "llvm/IR/GlobalObject.h"
31 #include "llvm/IR/GlobalValue.h"
32 #include "llvm/IR/OperandTraits.h"
33 #include "llvm/IR/SymbolTableListTraits.h"
34 #include "llvm/IR/Value.h"
35 #include "llvm/Support/Casting.h"
36 #include "llvm/Support/Compiler.h"
37 #include <cassert>
38 #include <cstddef>
39 #include <cstdint>
40 #include <memory>
41 #include <string>
43 namespace llvm {
45 namespace Intrinsic {
46 enum ID : unsigned;
49 class AssemblyAnnotationWriter;
50 class Constant;
51 class DISubprogram;
52 class LLVMContext;
53 class Module;
54 template <typename T> class Optional;
55 class raw_ostream;
56 class Type;
57 class User;
59 class Function : public GlobalObject, public ilist_node<Function> {
60 public:
61 using BasicBlockListType = SymbolTableList<BasicBlock>;
63 // BasicBlock iterators...
64 using iterator = BasicBlockListType::iterator;
65 using const_iterator = BasicBlockListType::const_iterator;
67 using arg_iterator = Argument *;
68 using const_arg_iterator = const Argument *;
70 private:
71 // Important things that make up a function!
72 BasicBlockListType BasicBlocks; ///< The basic blocks
73 mutable Argument *Arguments = nullptr; ///< The formal arguments
74 size_t NumArgs;
75 std::unique_ptr<ValueSymbolTable>
76 SymTab; ///< Symbol table of args/instructions
77 AttributeList AttributeSets; ///< Parameter attributes
80 * Value::SubclassData
82 * bit 0 : HasLazyArguments
83 * bit 1 : HasPrefixData
84 * bit 2 : HasPrologueData
85 * bit 3 : HasPersonalityFn
86 * bits 4-13 : CallingConvention
87 * bits 14 : HasGC
88 * bits 15 : [reserved]
91 /// Bits from GlobalObject::GlobalObjectSubclassData.
92 enum {
93 /// Whether this function is materializable.
94 IsMaterializableBit = 0,
97 friend class SymbolTableListTraits<Function>;
99 /// hasLazyArguments/CheckLazyArguments - The argument list of a function is
100 /// built on demand, so that the list isn't allocated until the first client
101 /// needs it. The hasLazyArguments predicate returns true if the arg list
102 /// hasn't been set up yet.
103 public:
104 bool hasLazyArguments() const {
105 return getSubclassDataFromValue() & (1<<0);
108 private:
109 void CheckLazyArguments() const {
110 if (hasLazyArguments())
111 BuildLazyArguments();
114 void BuildLazyArguments() const;
116 void clearArguments();
118 /// Function ctor - If the (optional) Module argument is specified, the
119 /// function is automatically inserted into the end of the function list for
120 /// the module.
122 Function(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace,
123 const Twine &N = "", Module *M = nullptr);
125 public:
126 Function(const Function&) = delete;
127 void operator=(const Function&) = delete;
128 ~Function();
130 // This is here to help easily convert from FunctionT * (Function * or
131 // MachineFunction *) in BlockFrequencyInfoImpl to Function * by calling
132 // FunctionT->getFunction().
133 const Function &getFunction() const { return *this; }
135 static Function *Create(FunctionType *Ty, LinkageTypes Linkage,
136 unsigned AddrSpace, const Twine &N = "",
137 Module *M = nullptr) {
138 return new Function(Ty, Linkage, AddrSpace, N, M);
141 // TODO: remove this once all users have been updated to pass an AddrSpace
142 static Function *Create(FunctionType *Ty, LinkageTypes Linkage,
143 const Twine &N = "", Module *M = nullptr) {
144 return new Function(Ty, Linkage, static_cast<unsigned>(-1), N, M);
147 /// Creates a new function and attaches it to a module.
149 /// Places the function in the program address space as specified
150 /// by the module's data layout.
151 static Function *Create(FunctionType *Ty, LinkageTypes Linkage,
152 const Twine &N, Module &M);
154 // Provide fast operand accessors.
155 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
157 /// Returns the number of non-debug IR instructions in this function.
158 /// This is equivalent to the sum of the sizes of each basic block contained
159 /// within this function.
160 unsigned getInstructionCount() const;
162 /// Returns the FunctionType for me.
163 FunctionType *getFunctionType() const {
164 return cast<FunctionType>(getValueType());
167 /// Returns the type of the ret val.
168 Type *getReturnType() const { return getFunctionType()->getReturnType(); }
170 /// getContext - Return a reference to the LLVMContext associated with this
171 /// function.
172 LLVMContext &getContext() const;
174 /// isVarArg - Return true if this function takes a variable number of
175 /// arguments.
176 bool isVarArg() const { return getFunctionType()->isVarArg(); }
178 bool isMaterializable() const {
179 return getGlobalObjectSubClassData() & (1 << IsMaterializableBit);
181 void setIsMaterializable(bool V) {
182 unsigned Mask = 1 << IsMaterializableBit;
183 setGlobalObjectSubClassData((~Mask & getGlobalObjectSubClassData()) |
184 (V ? Mask : 0u));
187 /// getIntrinsicID - This method returns the ID number of the specified
188 /// function, or Intrinsic::not_intrinsic if the function is not an
189 /// intrinsic, or if the pointer is null. This value is always defined to be
190 /// zero to allow easy checking for whether a function is intrinsic or not.
191 /// The particular intrinsic functions which correspond to this value are
192 /// defined in llvm/Intrinsics.h.
193 Intrinsic::ID getIntrinsicID() const LLVM_READONLY { return IntID; }
195 /// isIntrinsic - Returns true if the function's name starts with "llvm.".
196 /// It's possible for this function to return true while getIntrinsicID()
197 /// returns Intrinsic::not_intrinsic!
198 bool isIntrinsic() const { return HasLLVMReservedName; }
200 static Intrinsic::ID lookupIntrinsicID(StringRef Name);
202 /// Recalculate the ID for this function if it is an Intrinsic defined
203 /// in llvm/Intrinsics.h. Sets the intrinsic ID to Intrinsic::not_intrinsic
204 /// if the name of this function does not match an intrinsic in that header.
205 /// Note, this method does not need to be called directly, as it is called
206 /// from Value::setName() whenever the name of this function changes.
207 void recalculateIntrinsicID();
209 /// getCallingConv()/setCallingConv(CC) - These method get and set the
210 /// calling convention of this function. The enum values for the known
211 /// calling conventions are defined in CallingConv.h.
212 CallingConv::ID getCallingConv() const {
213 return static_cast<CallingConv::ID>((getSubclassDataFromValue() >> 4) &
214 CallingConv::MaxID);
216 void setCallingConv(CallingConv::ID CC) {
217 auto ID = static_cast<unsigned>(CC);
218 assert(!(ID & ~CallingConv::MaxID) && "Unsupported calling convention");
219 setValueSubclassData((getSubclassDataFromValue() & 0xc00f) | (ID << 4));
222 /// Return the attribute list for this Function.
223 AttributeList getAttributes() const { return AttributeSets; }
225 /// Set the attribute list for this Function.
226 void setAttributes(AttributeList Attrs) { AttributeSets = Attrs; }
228 /// Add function attributes to this function.
229 void addFnAttr(Attribute::AttrKind Kind) {
230 addAttribute(AttributeList::FunctionIndex, Kind);
233 /// Add function attributes to this function.
234 void addFnAttr(StringRef Kind, StringRef Val = StringRef()) {
235 addAttribute(AttributeList::FunctionIndex,
236 Attribute::get(getContext(), Kind, Val));
239 /// Add function attributes to this function.
240 void addFnAttr(Attribute Attr) {
241 addAttribute(AttributeList::FunctionIndex, Attr);
244 /// Remove function attributes from this function.
245 void removeFnAttr(Attribute::AttrKind Kind) {
246 removeAttribute(AttributeList::FunctionIndex, Kind);
249 /// Remove function attribute from this function.
250 void removeFnAttr(StringRef Kind) {
251 setAttributes(getAttributes().removeAttribute(
252 getContext(), AttributeList::FunctionIndex, Kind));
255 enum ProfileCountType { PCT_Invalid, PCT_Real, PCT_Synthetic };
257 /// Class to represent profile counts.
259 /// This class represents both real and synthetic profile counts.
260 class ProfileCount {
261 private:
262 uint64_t Count;
263 ProfileCountType PCT;
264 static ProfileCount Invalid;
266 public:
267 ProfileCount() : Count(-1), PCT(PCT_Invalid) {}
268 ProfileCount(uint64_t Count, ProfileCountType PCT)
269 : Count(Count), PCT(PCT) {}
270 bool hasValue() const { return PCT != PCT_Invalid; }
271 uint64_t getCount() const { return Count; }
272 ProfileCountType getType() const { return PCT; }
273 bool isSynthetic() const { return PCT == PCT_Synthetic; }
274 explicit operator bool() { return hasValue(); }
275 bool operator!() const { return !hasValue(); }
276 // Update the count retaining the same profile count type.
277 ProfileCount &setCount(uint64_t C) {
278 Count = C;
279 return *this;
281 static ProfileCount getInvalid() { return ProfileCount(-1, PCT_Invalid); }
284 /// Set the entry count for this function.
286 /// Entry count is the number of times this function was executed based on
287 /// pgo data. \p Imports points to a set of GUIDs that needs to
288 /// be imported by the function for sample PGO, to enable the same inlines as
289 /// the profiled optimized binary.
290 void setEntryCount(ProfileCount Count,
291 const DenseSet<GlobalValue::GUID> *Imports = nullptr);
293 /// A convenience wrapper for setting entry count
294 void setEntryCount(uint64_t Count, ProfileCountType Type = PCT_Real,
295 const DenseSet<GlobalValue::GUID> *Imports = nullptr);
297 /// Get the entry count for this function.
299 /// Entry count is the number of times the function was executed.
300 /// When AllowSynthetic is false, only pgo_data will be returned.
301 ProfileCount getEntryCount(bool AllowSynthetic = false) const;
303 /// Return true if the function is annotated with profile data.
305 /// Presence of entry counts from a profile run implies the function has
306 /// profile annotations. If IncludeSynthetic is false, only return true
307 /// when the profile data is real.
308 bool hasProfileData(bool IncludeSynthetic = false) const {
309 return getEntryCount(IncludeSynthetic).hasValue();
312 /// Returns the set of GUIDs that needs to be imported to the function for
313 /// sample PGO, to enable the same inlines as the profiled optimized binary.
314 DenseSet<GlobalValue::GUID> getImportGUIDs() const;
316 /// Set the section prefix for this function.
317 void setSectionPrefix(StringRef Prefix);
319 /// Get the section prefix for this function.
320 Optional<StringRef> getSectionPrefix() const;
322 /// Return true if the function has the attribute.
323 bool hasFnAttribute(Attribute::AttrKind Kind) const {
324 return AttributeSets.hasFnAttribute(Kind);
327 /// Return true if the function has the attribute.
328 bool hasFnAttribute(StringRef Kind) const {
329 return AttributeSets.hasFnAttribute(Kind);
332 /// Return the attribute for the given attribute kind.
333 Attribute getFnAttribute(Attribute::AttrKind Kind) const {
334 return getAttribute(AttributeList::FunctionIndex, Kind);
337 /// Return the attribute for the given attribute kind.
338 Attribute getFnAttribute(StringRef Kind) const {
339 return getAttribute(AttributeList::FunctionIndex, Kind);
342 /// Return the stack alignment for the function.
343 unsigned getFnStackAlignment() const {
344 if (!hasFnAttribute(Attribute::StackAlignment))
345 return 0;
346 return AttributeSets.getStackAlignment(AttributeList::FunctionIndex);
349 /// hasGC/getGC/setGC/clearGC - The name of the garbage collection algorithm
350 /// to use during code generation.
351 bool hasGC() const {
352 return getSubclassDataFromValue() & (1<<14);
354 const std::string &getGC() const;
355 void setGC(std::string Str);
356 void clearGC();
358 /// adds the attribute to the list of attributes.
359 void addAttribute(unsigned i, Attribute::AttrKind Kind);
361 /// adds the attribute to the list of attributes.
362 void addAttribute(unsigned i, Attribute Attr);
364 /// adds the attributes to the list of attributes.
365 void addAttributes(unsigned i, const AttrBuilder &Attrs);
367 /// adds the attribute to the list of attributes for the given arg.
368 void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind);
370 /// adds the attribute to the list of attributes for the given arg.
371 void addParamAttr(unsigned ArgNo, Attribute Attr);
373 /// adds the attributes to the list of attributes for the given arg.
374 void addParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs);
376 /// removes the attribute from the list of attributes.
377 void removeAttribute(unsigned i, Attribute::AttrKind Kind);
379 /// removes the attribute from the list of attributes.
380 void removeAttribute(unsigned i, StringRef Kind);
382 /// removes the attributes from the list of attributes.
383 void removeAttributes(unsigned i, const AttrBuilder &Attrs);
385 /// removes the attribute from the list of attributes.
386 void removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind);
388 /// removes the attribute from the list of attributes.
389 void removeParamAttr(unsigned ArgNo, StringRef Kind);
391 /// removes the attribute from the list of attributes.
392 void removeParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs);
394 /// check if an attributes is in the list of attributes.
395 bool hasAttribute(unsigned i, Attribute::AttrKind Kind) const {
396 return getAttributes().hasAttribute(i, Kind);
399 /// check if an attributes is in the list of attributes.
400 bool hasParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const {
401 return getAttributes().hasParamAttribute(ArgNo, Kind);
404 /// gets the specified attribute from the list of attributes.
405 Attribute getParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const {
406 return getAttributes().getParamAttr(ArgNo, Kind);
409 /// gets the attribute from the list of attributes.
410 Attribute getAttribute(unsigned i, Attribute::AttrKind Kind) const {
411 return AttributeSets.getAttribute(i, Kind);
414 /// gets the attribute from the list of attributes.
415 Attribute getAttribute(unsigned i, StringRef Kind) const {
416 return AttributeSets.getAttribute(i, Kind);
419 /// adds the dereferenceable attribute to the list of attributes.
420 void addDereferenceableAttr(unsigned i, uint64_t Bytes);
422 /// adds the dereferenceable attribute to the list of attributes for
423 /// the given arg.
424 void addDereferenceableParamAttr(unsigned ArgNo, uint64_t Bytes);
426 /// adds the dereferenceable_or_null attribute to the list of
427 /// attributes.
428 void addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes);
430 /// adds the dereferenceable_or_null attribute to the list of
431 /// attributes for the given arg.
432 void addDereferenceableOrNullParamAttr(unsigned ArgNo, uint64_t Bytes);
434 /// Extract the alignment for a call or parameter (0=unknown).
435 unsigned getParamAlignment(unsigned ArgNo) const {
436 return AttributeSets.getParamAlignment(ArgNo);
439 /// Extract the byval type for a parameter.
440 Type *getParamByValType(unsigned ArgNo) const {
441 Type *Ty = AttributeSets.getParamByValType(ArgNo);
442 return Ty ? Ty : (arg_begin() + ArgNo)->getType()->getPointerElementType();
445 /// Extract the number of dereferenceable bytes for a call or
446 /// parameter (0=unknown).
447 /// @param i AttributeList index, referring to a return value or argument.
448 uint64_t getDereferenceableBytes(unsigned i) const {
449 return AttributeSets.getDereferenceableBytes(i);
452 /// Extract the number of dereferenceable bytes for a parameter.
453 /// @param ArgNo Index of an argument, with 0 being the first function arg.
454 uint64_t getParamDereferenceableBytes(unsigned ArgNo) const {
455 return AttributeSets.getParamDereferenceableBytes(ArgNo);
458 /// Extract the number of dereferenceable_or_null bytes for a call or
459 /// parameter (0=unknown).
460 /// @param i AttributeList index, referring to a return value or argument.
461 uint64_t getDereferenceableOrNullBytes(unsigned i) const {
462 return AttributeSets.getDereferenceableOrNullBytes(i);
465 /// Extract the number of dereferenceable_or_null bytes for a
466 /// parameter.
467 /// @param ArgNo AttributeList ArgNo, referring to an argument.
468 uint64_t getParamDereferenceableOrNullBytes(unsigned ArgNo) const {
469 return AttributeSets.getParamDereferenceableOrNullBytes(ArgNo);
472 /// Determine if the function does not access memory.
473 bool doesNotAccessMemory() const {
474 return hasFnAttribute(Attribute::ReadNone);
476 void setDoesNotAccessMemory() {
477 addFnAttr(Attribute::ReadNone);
480 /// Determine if the function does not access or only reads memory.
481 bool onlyReadsMemory() const {
482 return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly);
484 void setOnlyReadsMemory() {
485 addFnAttr(Attribute::ReadOnly);
488 /// Determine if the function does not access or only writes memory.
489 bool doesNotReadMemory() const {
490 return doesNotAccessMemory() || hasFnAttribute(Attribute::WriteOnly);
492 void setDoesNotReadMemory() {
493 addFnAttr(Attribute::WriteOnly);
496 /// Determine if the call can access memmory only using pointers based
497 /// on its arguments.
498 bool onlyAccessesArgMemory() const {
499 return hasFnAttribute(Attribute::ArgMemOnly);
501 void setOnlyAccessesArgMemory() { addFnAttr(Attribute::ArgMemOnly); }
503 /// Determine if the function may only access memory that is
504 /// inaccessible from the IR.
505 bool onlyAccessesInaccessibleMemory() const {
506 return hasFnAttribute(Attribute::InaccessibleMemOnly);
508 void setOnlyAccessesInaccessibleMemory() {
509 addFnAttr(Attribute::InaccessibleMemOnly);
512 /// Determine if the function may only access memory that is
513 /// either inaccessible from the IR or pointed to by its arguments.
514 bool onlyAccessesInaccessibleMemOrArgMem() const {
515 return hasFnAttribute(Attribute::InaccessibleMemOrArgMemOnly);
517 void setOnlyAccessesInaccessibleMemOrArgMem() {
518 addFnAttr(Attribute::InaccessibleMemOrArgMemOnly);
521 /// Determine if the function cannot return.
522 bool doesNotReturn() const {
523 return hasFnAttribute(Attribute::NoReturn);
525 void setDoesNotReturn() {
526 addFnAttr(Attribute::NoReturn);
529 /// Determine if the function should not perform indirect branch tracking.
530 bool doesNoCfCheck() const { return hasFnAttribute(Attribute::NoCfCheck); }
532 /// Determine if the function cannot unwind.
533 bool doesNotThrow() const {
534 return hasFnAttribute(Attribute::NoUnwind);
536 void setDoesNotThrow() {
537 addFnAttr(Attribute::NoUnwind);
540 /// Determine if the call cannot be duplicated.
541 bool cannotDuplicate() const {
542 return hasFnAttribute(Attribute::NoDuplicate);
544 void setCannotDuplicate() {
545 addFnAttr(Attribute::NoDuplicate);
548 /// Determine if the call is convergent.
549 bool isConvergent() const {
550 return hasFnAttribute(Attribute::Convergent);
552 void setConvergent() {
553 addFnAttr(Attribute::Convergent);
555 void setNotConvergent() {
556 removeFnAttr(Attribute::Convergent);
559 /// Determine if the call has sideeffects.
560 bool isSpeculatable() const {
561 return hasFnAttribute(Attribute::Speculatable);
563 void setSpeculatable() {
564 addFnAttr(Attribute::Speculatable);
567 /// Determine if the call might deallocate memory.
568 bool doesNotFreeMemory() const {
569 return onlyReadsMemory() || hasFnAttribute(Attribute::NoFree);
571 void setDoesNotFreeMemory() {
572 addFnAttr(Attribute::NoFree);
575 /// Determine if the function is known not to recurse, directly or
576 /// indirectly.
577 bool doesNotRecurse() const {
578 return hasFnAttribute(Attribute::NoRecurse);
580 void setDoesNotRecurse() {
581 addFnAttr(Attribute::NoRecurse);
584 /// True if the ABI mandates (or the user requested) that this
585 /// function be in a unwind table.
586 bool hasUWTable() const {
587 return hasFnAttribute(Attribute::UWTable);
589 void setHasUWTable() {
590 addFnAttr(Attribute::UWTable);
593 /// True if this function needs an unwind table.
594 bool needsUnwindTableEntry() const {
595 return hasUWTable() || !doesNotThrow() || hasPersonalityFn();
598 /// Determine if the function returns a structure through first
599 /// or second pointer argument.
600 bool hasStructRetAttr() const {
601 return AttributeSets.hasParamAttribute(0, Attribute::StructRet) ||
602 AttributeSets.hasParamAttribute(1, Attribute::StructRet);
605 /// Determine if the parameter or return value is marked with NoAlias
606 /// attribute.
607 bool returnDoesNotAlias() const {
608 return AttributeSets.hasAttribute(AttributeList::ReturnIndex,
609 Attribute::NoAlias);
611 void setReturnDoesNotAlias() {
612 addAttribute(AttributeList::ReturnIndex, Attribute::NoAlias);
615 /// Do not optimize this function (-O0).
616 bool hasOptNone() const { return hasFnAttribute(Attribute::OptimizeNone); }
618 /// Optimize this function for minimum size (-Oz).
619 bool hasMinSize() const { return hasFnAttribute(Attribute::MinSize); }
621 /// Optimize this function for size (-Os) or minimum size (-Oz).
622 bool hasOptSize() const {
623 return hasFnAttribute(Attribute::OptimizeForSize) || hasMinSize();
626 /// copyAttributesFrom - copy all additional attributes (those not needed to
627 /// create a Function) from the Function Src to this one.
628 void copyAttributesFrom(const Function *Src);
630 /// deleteBody - This method deletes the body of the function, and converts
631 /// the linkage to external.
633 void deleteBody() {
634 dropAllReferences();
635 setLinkage(ExternalLinkage);
638 /// removeFromParent - This method unlinks 'this' from the containing module,
639 /// but does not delete it.
641 void removeFromParent();
643 /// eraseFromParent - This method unlinks 'this' from the containing module
644 /// and deletes it.
646 void eraseFromParent();
648 /// Steal arguments from another function.
650 /// Drop this function's arguments and splice in the ones from \c Src.
651 /// Requires that this has no function body.
652 void stealArgumentListFrom(Function &Src);
654 /// Get the underlying elements of the Function... the basic block list is
655 /// empty for external functions.
657 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
658 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
660 static BasicBlockListType Function::*getSublistAccess(BasicBlock*) {
661 return &Function::BasicBlocks;
664 const BasicBlock &getEntryBlock() const { return front(); }
665 BasicBlock &getEntryBlock() { return front(); }
667 //===--------------------------------------------------------------------===//
668 // Symbol Table Accessing functions...
670 /// getSymbolTable() - Return the symbol table if any, otherwise nullptr.
672 inline ValueSymbolTable *getValueSymbolTable() { return SymTab.get(); }
673 inline const ValueSymbolTable *getValueSymbolTable() const {
674 return SymTab.get();
677 //===--------------------------------------------------------------------===//
678 // BasicBlock iterator forwarding functions
680 iterator begin() { return BasicBlocks.begin(); }
681 const_iterator begin() const { return BasicBlocks.begin(); }
682 iterator end () { return BasicBlocks.end(); }
683 const_iterator end () const { return BasicBlocks.end(); }
685 size_t size() const { return BasicBlocks.size(); }
686 bool empty() const { return BasicBlocks.empty(); }
687 const BasicBlock &front() const { return BasicBlocks.front(); }
688 BasicBlock &front() { return BasicBlocks.front(); }
689 const BasicBlock &back() const { return BasicBlocks.back(); }
690 BasicBlock &back() { return BasicBlocks.back(); }
692 /// @name Function Argument Iteration
693 /// @{
695 arg_iterator arg_begin() {
696 CheckLazyArguments();
697 return Arguments;
699 const_arg_iterator arg_begin() const {
700 CheckLazyArguments();
701 return Arguments;
704 arg_iterator arg_end() {
705 CheckLazyArguments();
706 return Arguments + NumArgs;
708 const_arg_iterator arg_end() const {
709 CheckLazyArguments();
710 return Arguments + NumArgs;
713 Argument* getArg(unsigned i) const {
714 assert (i < NumArgs && "getArg() out of range!");
715 CheckLazyArguments();
716 return Arguments + i;
719 iterator_range<arg_iterator> args() {
720 return make_range(arg_begin(), arg_end());
722 iterator_range<const_arg_iterator> args() const {
723 return make_range(arg_begin(), arg_end());
726 /// @}
728 size_t arg_size() const { return NumArgs; }
729 bool arg_empty() const { return arg_size() == 0; }
731 /// Check whether this function has a personality function.
732 bool hasPersonalityFn() const {
733 return getSubclassDataFromValue() & (1<<3);
736 /// Get the personality function associated with this function.
737 Constant *getPersonalityFn() const;
738 void setPersonalityFn(Constant *Fn);
740 /// Check whether this function has prefix data.
741 bool hasPrefixData() const {
742 return getSubclassDataFromValue() & (1<<1);
745 /// Get the prefix data associated with this function.
746 Constant *getPrefixData() const;
747 void setPrefixData(Constant *PrefixData);
749 /// Check whether this function has prologue data.
750 bool hasPrologueData() const {
751 return getSubclassDataFromValue() & (1<<2);
754 /// Get the prologue data associated with this function.
755 Constant *getPrologueData() const;
756 void setPrologueData(Constant *PrologueData);
758 /// Print the function to an output stream with an optional
759 /// AssemblyAnnotationWriter.
760 void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW = nullptr,
761 bool ShouldPreserveUseListOrder = false,
762 bool IsForDebug = false) const;
764 /// viewCFG - This function is meant for use from the debugger. You can just
765 /// say 'call F->viewCFG()' and a ghostview window should pop up from the
766 /// program, displaying the CFG of the current function with the code for each
767 /// basic block inside. This depends on there being a 'dot' and 'gv' program
768 /// in your path.
770 void viewCFG() const;
772 /// viewCFGOnly - This function is meant for use from the debugger. It works
773 /// just like viewCFG, but it does not include the contents of basic blocks
774 /// into the nodes, just the label. If you are only interested in the CFG
775 /// this can make the graph smaller.
777 void viewCFGOnly() const;
779 /// Methods for support type inquiry through isa, cast, and dyn_cast:
780 static bool classof(const Value *V) {
781 return V->getValueID() == Value::FunctionVal;
784 /// dropAllReferences() - This method causes all the subinstructions to "let
785 /// go" of all references that they are maintaining. This allows one to
786 /// 'delete' a whole module at a time, even though there may be circular
787 /// references... first all references are dropped, and all use counts go to
788 /// zero. Then everything is deleted for real. Note that no operations are
789 /// valid on an object that has "dropped all references", except operator
790 /// delete.
792 /// Since no other object in the module can have references into the body of a
793 /// function, dropping all references deletes the entire body of the function,
794 /// including any contained basic blocks.
796 void dropAllReferences();
798 /// hasAddressTaken - returns true if there are any uses of this function
799 /// other than direct calls or invokes to it, or blockaddress expressions.
800 /// Optionally passes back an offending user for diagnostic purposes.
802 bool hasAddressTaken(const User** = nullptr) const;
804 /// isDefTriviallyDead - Return true if it is trivially safe to remove
805 /// this function definition from the module (because it isn't externally
806 /// visible, does not have its address taken, and has no callers). To make
807 /// this more accurate, call removeDeadConstantUsers first.
808 bool isDefTriviallyDead() const;
810 /// callsFunctionThatReturnsTwice - Return true if the function has a call to
811 /// setjmp or other function that gcc recognizes as "returning twice".
812 bool callsFunctionThatReturnsTwice() const;
814 /// Set the attached subprogram.
816 /// Calls \a setMetadata() with \a LLVMContext::MD_dbg.
817 void setSubprogram(DISubprogram *SP);
819 /// Get the attached subprogram.
821 /// Calls \a getMetadata() with \a LLVMContext::MD_dbg and casts the result
822 /// to \a DISubprogram.
823 DISubprogram *getSubprogram() const;
825 /// Returns true if we should emit debug info for profiling.
826 bool isDebugInfoForProfiling() const;
828 /// Check if null pointer dereferencing is considered undefined behavior for
829 /// the function.
830 /// Return value: false => null pointer dereference is undefined.
831 /// Return value: true => null pointer dereference is not undefined.
832 bool nullPointerIsDefined() const;
834 private:
835 void allocHungoffUselist();
836 template<int Idx> void setHungoffOperand(Constant *C);
838 /// Shadow Value::setValueSubclassData with a private forwarding method so
839 /// that subclasses cannot accidentally use it.
840 void setValueSubclassData(unsigned short D) {
841 Value::setValueSubclassData(D);
843 void setValueSubclassDataBit(unsigned Bit, bool On);
846 /// Check whether null pointer dereferencing is considered undefined behavior
847 /// for a given function or an address space.
848 /// Null pointer access in non-zero address space is not considered undefined.
849 /// Return value: false => null pointer dereference is undefined.
850 /// Return value: true => null pointer dereference is not undefined.
851 bool NullPointerIsDefined(const Function *F, unsigned AS = 0);
853 template <>
854 struct OperandTraits<Function> : public HungoffOperandTraits<3> {};
856 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(Function, Value)
858 } // end namespace llvm
860 #endif // LLVM_IR_FUNCTION_H