Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===- llvm/Function.h - Class to represent a single function ---*- C++ -*-===// |
| 2 | // |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 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 |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file contains the declaration of the Function class, which represents a |
| 10 | // single function/procedure in LLVM. |
| 11 | // |
| 12 | // A function basically consists of a list of basic blocks, a list of arguments, |
| 13 | // and a symbol table. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #ifndef LLVM_IR_FUNCTION_H |
| 18 | #define LLVM_IR_FUNCTION_H |
| 19 | |
| 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> |
| 42 | |
| 43 | namespace llvm { |
| 44 | |
| 45 | namespace Intrinsic { |
| 46 | enum ID : unsigned; |
| 47 | } |
| 48 | |
| 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; |
| 58 | |
| 59 | class Function : public GlobalObject, public ilist_node<Function> { |
| 60 | public: |
| 61 | using BasicBlockListType = SymbolTableList<BasicBlock>; |
| 62 | |
| 63 | // BasicBlock iterators... |
| 64 | using iterator = BasicBlockListType::iterator; |
| 65 | using const_iterator = BasicBlockListType::const_iterator; |
| 66 | |
| 67 | using arg_iterator = Argument *; |
| 68 | using const_arg_iterator = const Argument *; |
| 69 | |
| 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 |
| 78 | |
| 79 | /* |
| 80 | * Value::SubclassData |
| 81 | * |
| 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] |
| 89 | */ |
| 90 | |
| 91 | /// Bits from GlobalObject::GlobalObjectSubclassData. |
| 92 | enum { |
| 93 | /// Whether this function is materializable. |
| 94 | IsMaterializableBit = 0, |
| 95 | }; |
| 96 | |
| 97 | friend class SymbolTableListTraits<Function>; |
| 98 | |
| 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); |
| 106 | } |
| 107 | |
| 108 | private: |
| 109 | void CheckLazyArguments() const { |
| 110 | if (hasLazyArguments()) |
| 111 | BuildLazyArguments(); |
| 112 | } |
| 113 | |
| 114 | void BuildLazyArguments() const; |
| 115 | |
| 116 | void clearArguments(); |
| 117 | |
| 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. |
| 121 | /// |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 122 | Function(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 123 | const Twine &N = "", Module *M = nullptr); |
| 124 | |
| 125 | public: |
| 126 | Function(const Function&) = delete; |
| 127 | void operator=(const Function&) = delete; |
| 128 | ~Function(); |
| 129 | |
| 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; } |
| 134 | |
| 135 | static Function *Create(FunctionType *Ty, LinkageTypes Linkage, |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 136 | unsigned AddrSpace, const Twine &N = "", |
| 137 | Module *M = nullptr) { |
| 138 | return new Function(Ty, Linkage, AddrSpace, N, M); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 139 | } |
| 140 | |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 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); |
| 145 | } |
| 146 | |
| 147 | /// Creates a new function and attaches it to a module. |
| 148 | /// |
| 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); |
| 153 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 154 | // Provide fast operand accessors. |
| 155 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 156 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 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. |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 160 | unsigned getInstructionCount() const; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 161 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 162 | /// Returns the FunctionType for me. |
| 163 | FunctionType *getFunctionType() const { |
| 164 | return cast<FunctionType>(getValueType()); |
| 165 | } |
| 166 | |
| 167 | /// Returns the type of the ret val. |
| 168 | Type *getReturnType() const { return getFunctionType()->getReturnType(); } |
| 169 | |
| 170 | /// getContext - Return a reference to the LLVMContext associated with this |
| 171 | /// function. |
| 172 | LLVMContext &getContext() const; |
| 173 | |
| 174 | /// isVarArg - Return true if this function takes a variable number of |
| 175 | /// arguments. |
| 176 | bool isVarArg() const { return getFunctionType()->isVarArg(); } |
| 177 | |
| 178 | bool isMaterializable() const { |
| 179 | return getGlobalObjectSubClassData() & (1 << IsMaterializableBit); |
| 180 | } |
| 181 | void setIsMaterializable(bool V) { |
| 182 | unsigned Mask = 1 << IsMaterializableBit; |
| 183 | setGlobalObjectSubClassData((~Mask & getGlobalObjectSubClassData()) | |
| 184 | (V ? Mask : 0u)); |
| 185 | } |
| 186 | |
| 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; } |
| 194 | |
| 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; } |
| 199 | |
| 200 | static Intrinsic::ID lookupIntrinsicID(StringRef Name); |
| 201 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 202 | /// Recalculate the ID for this function if it is an Intrinsic defined |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 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(); |
| 208 | |
| 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); |
| 215 | } |
| 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)); |
| 220 | } |
| 221 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 222 | /// Return the attribute list for this Function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 223 | AttributeList getAttributes() const { return AttributeSets; } |
| 224 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 225 | /// Set the attribute list for this Function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 226 | void setAttributes(AttributeList Attrs) { AttributeSets = Attrs; } |
| 227 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 228 | /// Add function attributes to this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 229 | void addFnAttr(Attribute::AttrKind Kind) { |
| 230 | addAttribute(AttributeList::FunctionIndex, Kind); |
| 231 | } |
| 232 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 233 | /// Add function attributes to this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 234 | void addFnAttr(StringRef Kind, StringRef Val = StringRef()) { |
| 235 | addAttribute(AttributeList::FunctionIndex, |
| 236 | Attribute::get(getContext(), Kind, Val)); |
| 237 | } |
| 238 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 239 | /// Add function attributes to this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 240 | void addFnAttr(Attribute Attr) { |
| 241 | addAttribute(AttributeList::FunctionIndex, Attr); |
| 242 | } |
| 243 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 244 | /// Remove function attributes from this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 245 | void removeFnAttr(Attribute::AttrKind Kind) { |
| 246 | removeAttribute(AttributeList::FunctionIndex, Kind); |
| 247 | } |
| 248 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 249 | /// Remove function attribute from this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 250 | void removeFnAttr(StringRef Kind) { |
| 251 | setAttributes(getAttributes().removeAttribute( |
| 252 | getContext(), AttributeList::FunctionIndex, Kind)); |
| 253 | } |
| 254 | |
| 255 | enum ProfileCountType { PCT_Invalid, PCT_Real, PCT_Synthetic }; |
| 256 | |
| 257 | /// Class to represent profile counts. |
| 258 | /// |
| 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; |
| 265 | |
| 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; |
| 280 | } |
| 281 | static ProfileCount getInvalid() { return ProfileCount(-1, PCT_Invalid); } |
| 282 | }; |
| 283 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 284 | /// Set the entry count for this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 285 | /// |
| 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); |
| 292 | |
| 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); |
| 296 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 297 | /// Get the entry count for this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 298 | /// |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 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; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 302 | |
| 303 | /// Return true if the function is annotated with profile data. |
| 304 | /// |
| 305 | /// Presence of entry counts from a profile run implies the function has |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 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(); |
| 310 | } |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 311 | |
| 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; |
| 315 | |
| 316 | /// Set the section prefix for this function. |
| 317 | void setSectionPrefix(StringRef Prefix); |
| 318 | |
| 319 | /// Get the section prefix for this function. |
| 320 | Optional<StringRef> getSectionPrefix() const; |
| 321 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 322 | /// Return true if the function has the attribute. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 323 | bool hasFnAttribute(Attribute::AttrKind Kind) const { |
| 324 | return AttributeSets.hasFnAttribute(Kind); |
| 325 | } |
| 326 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 327 | /// Return true if the function has the attribute. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 328 | bool hasFnAttribute(StringRef Kind) const { |
| 329 | return AttributeSets.hasFnAttribute(Kind); |
| 330 | } |
| 331 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 332 | /// Return the attribute for the given attribute kind. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 333 | Attribute getFnAttribute(Attribute::AttrKind Kind) const { |
| 334 | return getAttribute(AttributeList::FunctionIndex, Kind); |
| 335 | } |
| 336 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 337 | /// Return the attribute for the given attribute kind. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 338 | Attribute getFnAttribute(StringRef Kind) const { |
| 339 | return getAttribute(AttributeList::FunctionIndex, Kind); |
| 340 | } |
| 341 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 342 | /// Return the stack alignment for the function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 343 | unsigned getFnStackAlignment() const { |
| 344 | if (!hasFnAttribute(Attribute::StackAlignment)) |
| 345 | return 0; |
| 346 | return AttributeSets.getStackAlignment(AttributeList::FunctionIndex); |
| 347 | } |
| 348 | |
| 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); |
| 353 | } |
| 354 | const std::string &getGC() const; |
| 355 | void setGC(std::string Str); |
| 356 | void clearGC(); |
| 357 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 358 | /// adds the attribute to the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 359 | void addAttribute(unsigned i, Attribute::AttrKind Kind); |
| 360 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 361 | /// adds the attribute to the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 362 | void addAttribute(unsigned i, Attribute Attr); |
| 363 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 364 | /// adds the attributes to the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 365 | void addAttributes(unsigned i, const AttrBuilder &Attrs); |
| 366 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 367 | /// adds the attribute to the list of attributes for the given arg. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 368 | void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind); |
| 369 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 370 | /// adds the attribute to the list of attributes for the given arg. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 371 | void addParamAttr(unsigned ArgNo, Attribute Attr); |
| 372 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 373 | /// adds the attributes to the list of attributes for the given arg. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 374 | void addParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs); |
| 375 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 376 | /// removes the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 377 | void removeAttribute(unsigned i, Attribute::AttrKind Kind); |
| 378 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 379 | /// removes the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 380 | void removeAttribute(unsigned i, StringRef Kind); |
| 381 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 382 | /// removes the attributes from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 383 | void removeAttributes(unsigned i, const AttrBuilder &Attrs); |
| 384 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 385 | /// removes the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 386 | void removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind); |
| 387 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 388 | /// removes the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 389 | void removeParamAttr(unsigned ArgNo, StringRef Kind); |
| 390 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 391 | /// removes the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 392 | void removeParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs); |
| 393 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 394 | /// check if an attributes is in the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 395 | bool hasAttribute(unsigned i, Attribute::AttrKind Kind) const { |
| 396 | return getAttributes().hasAttribute(i, Kind); |
| 397 | } |
| 398 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 399 | /// check if an attributes is in the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 400 | bool hasParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const { |
| 401 | return getAttributes().hasParamAttribute(ArgNo, Kind); |
| 402 | } |
| 403 | |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 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); |
| 407 | } |
| 408 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 409 | /// gets the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 410 | Attribute getAttribute(unsigned i, Attribute::AttrKind Kind) const { |
| 411 | return AttributeSets.getAttribute(i, Kind); |
| 412 | } |
| 413 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 414 | /// gets the attribute from the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 415 | Attribute getAttribute(unsigned i, StringRef Kind) const { |
| 416 | return AttributeSets.getAttribute(i, Kind); |
| 417 | } |
| 418 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 419 | /// adds the dereferenceable attribute to the list of attributes. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 420 | void addDereferenceableAttr(unsigned i, uint64_t Bytes); |
| 421 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 422 | /// adds the dereferenceable attribute to the list of attributes for |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 423 | /// the given arg. |
| 424 | void addDereferenceableParamAttr(unsigned ArgNo, uint64_t Bytes); |
| 425 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 426 | /// adds the dereferenceable_or_null attribute to the list of |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 427 | /// attributes. |
| 428 | void addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes); |
| 429 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 430 | /// adds the dereferenceable_or_null attribute to the list of |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 431 | /// attributes for the given arg. |
| 432 | void addDereferenceableOrNullParamAttr(unsigned ArgNo, uint64_t Bytes); |
| 433 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 434 | /// Extract the alignment for a call or parameter (0=unknown). |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 435 | unsigned getParamAlignment(unsigned ArgNo) const { |
| 436 | return AttributeSets.getParamAlignment(ArgNo); |
| 437 | } |
| 438 | |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 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(); |
| 443 | } |
| 444 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 445 | /// Extract the number of dereferenceable bytes for a call or |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 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); |
| 450 | } |
| 451 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 452 | /// Extract the number of dereferenceable bytes for a parameter. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 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); |
| 456 | } |
| 457 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 458 | /// Extract the number of dereferenceable_or_null bytes for a call or |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 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); |
| 463 | } |
| 464 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 465 | /// Extract the number of dereferenceable_or_null bytes for a |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 466 | /// parameter. |
| 467 | /// @param ArgNo AttributeList ArgNo, referring to an argument. |
| 468 | uint64_t getParamDereferenceableOrNullBytes(unsigned ArgNo) const { |
| 469 | return AttributeSets.getParamDereferenceableOrNullBytes(ArgNo); |
| 470 | } |
| 471 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 472 | /// Determine if the function does not access memory. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 473 | bool doesNotAccessMemory() const { |
| 474 | return hasFnAttribute(Attribute::ReadNone); |
| 475 | } |
| 476 | void setDoesNotAccessMemory() { |
| 477 | addFnAttr(Attribute::ReadNone); |
| 478 | } |
| 479 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 480 | /// Determine if the function does not access or only reads memory. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 481 | bool onlyReadsMemory() const { |
| 482 | return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly); |
| 483 | } |
| 484 | void setOnlyReadsMemory() { |
| 485 | addFnAttr(Attribute::ReadOnly); |
| 486 | } |
| 487 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 488 | /// Determine if the function does not access or only writes memory. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 489 | bool doesNotReadMemory() const { |
| 490 | return doesNotAccessMemory() || hasFnAttribute(Attribute::WriteOnly); |
| 491 | } |
| 492 | void setDoesNotReadMemory() { |
| 493 | addFnAttr(Attribute::WriteOnly); |
| 494 | } |
| 495 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 496 | /// Determine if the call can access memmory only using pointers based |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 497 | /// on its arguments. |
| 498 | bool onlyAccessesArgMemory() const { |
| 499 | return hasFnAttribute(Attribute::ArgMemOnly); |
| 500 | } |
| 501 | void setOnlyAccessesArgMemory() { addFnAttr(Attribute::ArgMemOnly); } |
| 502 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 503 | /// Determine if the function may only access memory that is |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 504 | /// inaccessible from the IR. |
| 505 | bool onlyAccessesInaccessibleMemory() const { |
| 506 | return hasFnAttribute(Attribute::InaccessibleMemOnly); |
| 507 | } |
| 508 | void setOnlyAccessesInaccessibleMemory() { |
| 509 | addFnAttr(Attribute::InaccessibleMemOnly); |
| 510 | } |
| 511 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 512 | /// Determine if the function may only access memory that is |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 513 | /// either inaccessible from the IR or pointed to by its arguments. |
| 514 | bool onlyAccessesInaccessibleMemOrArgMem() const { |
| 515 | return hasFnAttribute(Attribute::InaccessibleMemOrArgMemOnly); |
| 516 | } |
| 517 | void setOnlyAccessesInaccessibleMemOrArgMem() { |
| 518 | addFnAttr(Attribute::InaccessibleMemOrArgMemOnly); |
| 519 | } |
| 520 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 521 | /// Determine if the function cannot return. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 522 | bool doesNotReturn() const { |
| 523 | return hasFnAttribute(Attribute::NoReturn); |
| 524 | } |
| 525 | void setDoesNotReturn() { |
| 526 | addFnAttr(Attribute::NoReturn); |
| 527 | } |
| 528 | |
| 529 | /// Determine if the function should not perform indirect branch tracking. |
| 530 | bool doesNoCfCheck() const { return hasFnAttribute(Attribute::NoCfCheck); } |
| 531 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 532 | /// Determine if the function cannot unwind. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 533 | bool doesNotThrow() const { |
| 534 | return hasFnAttribute(Attribute::NoUnwind); |
| 535 | } |
| 536 | void setDoesNotThrow() { |
| 537 | addFnAttr(Attribute::NoUnwind); |
| 538 | } |
| 539 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 540 | /// Determine if the call cannot be duplicated. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 541 | bool cannotDuplicate() const { |
| 542 | return hasFnAttribute(Attribute::NoDuplicate); |
| 543 | } |
| 544 | void setCannotDuplicate() { |
| 545 | addFnAttr(Attribute::NoDuplicate); |
| 546 | } |
| 547 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 548 | /// Determine if the call is convergent. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 549 | bool isConvergent() const { |
| 550 | return hasFnAttribute(Attribute::Convergent); |
| 551 | } |
| 552 | void setConvergent() { |
| 553 | addFnAttr(Attribute::Convergent); |
| 554 | } |
| 555 | void setNotConvergent() { |
| 556 | removeFnAttr(Attribute::Convergent); |
| 557 | } |
| 558 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 559 | /// Determine if the call has sideeffects. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 560 | bool isSpeculatable() const { |
| 561 | return hasFnAttribute(Attribute::Speculatable); |
| 562 | } |
| 563 | void setSpeculatable() { |
| 564 | addFnAttr(Attribute::Speculatable); |
| 565 | } |
| 566 | |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 567 | /// Determine if the call might deallocate memory. |
| 568 | bool doesNotFreeMemory() const { |
| 569 | return onlyReadsMemory() || hasFnAttribute(Attribute::NoFree); |
| 570 | } |
| 571 | void setDoesNotFreeMemory() { |
| 572 | addFnAttr(Attribute::NoFree); |
| 573 | } |
| 574 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 575 | /// Determine if the function is known not to recurse, directly or |
| 576 | /// indirectly. |
| 577 | bool doesNotRecurse() const { |
| 578 | return hasFnAttribute(Attribute::NoRecurse); |
| 579 | } |
| 580 | void setDoesNotRecurse() { |
| 581 | addFnAttr(Attribute::NoRecurse); |
| 582 | } |
| 583 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 584 | /// True if the ABI mandates (or the user requested) that this |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 585 | /// function be in a unwind table. |
| 586 | bool hasUWTable() const { |
| 587 | return hasFnAttribute(Attribute::UWTable); |
| 588 | } |
| 589 | void setHasUWTable() { |
| 590 | addFnAttr(Attribute::UWTable); |
| 591 | } |
| 592 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 593 | /// True if this function needs an unwind table. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 594 | bool needsUnwindTableEntry() const { |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 595 | return hasUWTable() || !doesNotThrow() || hasPersonalityFn(); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 596 | } |
| 597 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 598 | /// Determine if the function returns a structure through first |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 599 | /// or second pointer argument. |
| 600 | bool hasStructRetAttr() const { |
| 601 | return AttributeSets.hasParamAttribute(0, Attribute::StructRet) || |
| 602 | AttributeSets.hasParamAttribute(1, Attribute::StructRet); |
| 603 | } |
| 604 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 605 | /// Determine if the parameter or return value is marked with NoAlias |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 606 | /// attribute. |
| 607 | bool returnDoesNotAlias() const { |
| 608 | return AttributeSets.hasAttribute(AttributeList::ReturnIndex, |
| 609 | Attribute::NoAlias); |
| 610 | } |
| 611 | void setReturnDoesNotAlias() { |
| 612 | addAttribute(AttributeList::ReturnIndex, Attribute::NoAlias); |
| 613 | } |
| 614 | |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 615 | /// Do not optimize this function (-O0). |
| 616 | bool hasOptNone() const { return hasFnAttribute(Attribute::OptimizeNone); } |
| 617 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 618 | /// Optimize this function for minimum size (-Oz). |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 619 | bool hasMinSize() const { return hasFnAttribute(Attribute::MinSize); } |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 620 | |
| 621 | /// Optimize this function for size (-Os) or minimum size (-Oz). |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame^] | 622 | bool hasOptSize() const { |
| 623 | return hasFnAttribute(Attribute::OptimizeForSize) || hasMinSize(); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 624 | } |
| 625 | |
| 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); |
| 629 | |
| 630 | /// deleteBody - This method deletes the body of the function, and converts |
| 631 | /// the linkage to external. |
| 632 | /// |
| 633 | void deleteBody() { |
| 634 | dropAllReferences(); |
| 635 | setLinkage(ExternalLinkage); |
| 636 | } |
| 637 | |
| 638 | /// removeFromParent - This method unlinks 'this' from the containing module, |
| 639 | /// but does not delete it. |
| 640 | /// |
| 641 | void removeFromParent(); |
| 642 | |
| 643 | /// eraseFromParent - This method unlinks 'this' from the containing module |
| 644 | /// and deletes it. |
| 645 | /// |
| 646 | void eraseFromParent(); |
| 647 | |
| 648 | /// Steal arguments from another function. |
| 649 | /// |
| 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); |
| 653 | |
| 654 | /// Get the underlying elements of the Function... the basic block list is |
| 655 | /// empty for external functions. |
| 656 | /// |
| 657 | const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } |
| 658 | BasicBlockListType &getBasicBlockList() { return BasicBlocks; } |
| 659 | |
| 660 | static BasicBlockListType Function::*getSublistAccess(BasicBlock*) { |
| 661 | return &Function::BasicBlocks; |
| 662 | } |
| 663 | |
| 664 | const BasicBlock &getEntryBlock() const { return front(); } |
| 665 | BasicBlock &getEntryBlock() { return front(); } |
| 666 | |
| 667 | //===--------------------------------------------------------------------===// |
| 668 | // Symbol Table Accessing functions... |
| 669 | |
| 670 | /// getSymbolTable() - Return the symbol table if any, otherwise nullptr. |
| 671 | /// |
| 672 | inline ValueSymbolTable *getValueSymbolTable() { return SymTab.get(); } |
| 673 | inline const ValueSymbolTable *getValueSymbolTable() const { |
| 674 | return SymTab.get(); |
| 675 | } |
| 676 | |
| 677 | //===--------------------------------------------------------------------===// |
| 678 | // BasicBlock iterator forwarding functions |
| 679 | // |
| 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(); } |
| 684 | |
| 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(); } |
| 691 | |
| 692 | /// @name Function Argument Iteration |
| 693 | /// @{ |
| 694 | |
| 695 | arg_iterator arg_begin() { |
| 696 | CheckLazyArguments(); |
| 697 | return Arguments; |
| 698 | } |
| 699 | const_arg_iterator arg_begin() const { |
| 700 | CheckLazyArguments(); |
| 701 | return Arguments; |
| 702 | } |
| 703 | |
| 704 | arg_iterator arg_end() { |
| 705 | CheckLazyArguments(); |
| 706 | return Arguments + NumArgs; |
| 707 | } |
| 708 | const_arg_iterator arg_end() const { |
| 709 | CheckLazyArguments(); |
| 710 | return Arguments + NumArgs; |
| 711 | } |
| 712 | |
| 713 | iterator_range<arg_iterator> args() { |
| 714 | return make_range(arg_begin(), arg_end()); |
| 715 | } |
| 716 | iterator_range<const_arg_iterator> args() const { |
| 717 | return make_range(arg_begin(), arg_end()); |
| 718 | } |
| 719 | |
| 720 | /// @} |
| 721 | |
| 722 | size_t arg_size() const { return NumArgs; } |
| 723 | bool arg_empty() const { return arg_size() == 0; } |
| 724 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 725 | /// Check whether this function has a personality function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 726 | bool hasPersonalityFn() const { |
| 727 | return getSubclassDataFromValue() & (1<<3); |
| 728 | } |
| 729 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 730 | /// Get the personality function associated with this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 731 | Constant *getPersonalityFn() const; |
| 732 | void setPersonalityFn(Constant *Fn); |
| 733 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 734 | /// Check whether this function has prefix data. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 735 | bool hasPrefixData() const { |
| 736 | return getSubclassDataFromValue() & (1<<1); |
| 737 | } |
| 738 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 739 | /// Get the prefix data associated with this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 740 | Constant *getPrefixData() const; |
| 741 | void setPrefixData(Constant *PrefixData); |
| 742 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 743 | /// Check whether this function has prologue data. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 744 | bool hasPrologueData() const { |
| 745 | return getSubclassDataFromValue() & (1<<2); |
| 746 | } |
| 747 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 748 | /// Get the prologue data associated with this function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 749 | Constant *getPrologueData() const; |
| 750 | void setPrologueData(Constant *PrologueData); |
| 751 | |
| 752 | /// Print the function to an output stream with an optional |
| 753 | /// AssemblyAnnotationWriter. |
| 754 | void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW = nullptr, |
| 755 | bool ShouldPreserveUseListOrder = false, |
| 756 | bool IsForDebug = false) const; |
| 757 | |
| 758 | /// viewCFG - This function is meant for use from the debugger. You can just |
| 759 | /// say 'call F->viewCFG()' and a ghostview window should pop up from the |
| 760 | /// program, displaying the CFG of the current function with the code for each |
| 761 | /// basic block inside. This depends on there being a 'dot' and 'gv' program |
| 762 | /// in your path. |
| 763 | /// |
| 764 | void viewCFG() const; |
| 765 | |
| 766 | /// viewCFGOnly - This function is meant for use from the debugger. It works |
| 767 | /// just like viewCFG, but it does not include the contents of basic blocks |
| 768 | /// into the nodes, just the label. If you are only interested in the CFG |
| 769 | /// this can make the graph smaller. |
| 770 | /// |
| 771 | void viewCFGOnly() const; |
| 772 | |
| 773 | /// Methods for support type inquiry through isa, cast, and dyn_cast: |
| 774 | static bool classof(const Value *V) { |
| 775 | return V->getValueID() == Value::FunctionVal; |
| 776 | } |
| 777 | |
| 778 | /// dropAllReferences() - This method causes all the subinstructions to "let |
| 779 | /// go" of all references that they are maintaining. This allows one to |
| 780 | /// 'delete' a whole module at a time, even though there may be circular |
| 781 | /// references... first all references are dropped, and all use counts go to |
| 782 | /// zero. Then everything is deleted for real. Note that no operations are |
| 783 | /// valid on an object that has "dropped all references", except operator |
| 784 | /// delete. |
| 785 | /// |
| 786 | /// Since no other object in the module can have references into the body of a |
| 787 | /// function, dropping all references deletes the entire body of the function, |
| 788 | /// including any contained basic blocks. |
| 789 | /// |
| 790 | void dropAllReferences(); |
| 791 | |
| 792 | /// hasAddressTaken - returns true if there are any uses of this function |
| 793 | /// other than direct calls or invokes to it, or blockaddress expressions. |
| 794 | /// Optionally passes back an offending user for diagnostic purposes. |
| 795 | /// |
| 796 | bool hasAddressTaken(const User** = nullptr) const; |
| 797 | |
| 798 | /// isDefTriviallyDead - Return true if it is trivially safe to remove |
| 799 | /// this function definition from the module (because it isn't externally |
| 800 | /// visible, does not have its address taken, and has no callers). To make |
| 801 | /// this more accurate, call removeDeadConstantUsers first. |
| 802 | bool isDefTriviallyDead() const; |
| 803 | |
| 804 | /// callsFunctionThatReturnsTwice - Return true if the function has a call to |
| 805 | /// setjmp or other function that gcc recognizes as "returning twice". |
| 806 | bool callsFunctionThatReturnsTwice() const; |
| 807 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 808 | /// Set the attached subprogram. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 809 | /// |
| 810 | /// Calls \a setMetadata() with \a LLVMContext::MD_dbg. |
| 811 | void setSubprogram(DISubprogram *SP); |
| 812 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 813 | /// Get the attached subprogram. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 814 | /// |
| 815 | /// Calls \a getMetadata() with \a LLVMContext::MD_dbg and casts the result |
| 816 | /// to \a DISubprogram. |
| 817 | DISubprogram *getSubprogram() const; |
| 818 | |
| 819 | /// Returns true if we should emit debug info for profiling. |
| 820 | bool isDebugInfoForProfiling() const; |
| 821 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 822 | /// Check if null pointer dereferencing is considered undefined behavior for |
| 823 | /// the function. |
| 824 | /// Return value: false => null pointer dereference is undefined. |
| 825 | /// Return value: true => null pointer dereference is not undefined. |
| 826 | bool nullPointerIsDefined() const; |
| 827 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 828 | private: |
| 829 | void allocHungoffUselist(); |
| 830 | template<int Idx> void setHungoffOperand(Constant *C); |
| 831 | |
| 832 | /// Shadow Value::setValueSubclassData with a private forwarding method so |
| 833 | /// that subclasses cannot accidentally use it. |
| 834 | void setValueSubclassData(unsigned short D) { |
| 835 | Value::setValueSubclassData(D); |
| 836 | } |
| 837 | void setValueSubclassDataBit(unsigned Bit, bool On); |
| 838 | }; |
| 839 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 840 | /// Check whether null pointer dereferencing is considered undefined behavior |
| 841 | /// for a given function or an address space. |
| 842 | /// Null pointer access in non-zero address space is not considered undefined. |
| 843 | /// Return value: false => null pointer dereference is undefined. |
| 844 | /// Return value: true => null pointer dereference is not undefined. |
| 845 | bool NullPointerIsDefined(const Function *F, unsigned AS = 0); |
| 846 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 847 | template <> |
| 848 | struct OperandTraits<Function> : public HungoffOperandTraits<3> {}; |
| 849 | |
| 850 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(Function, Value) |
| 851 | |
| 852 | } // end namespace llvm |
| 853 | |
| 854 | #endif // LLVM_IR_FUNCTION_H |