LLVM 20.0.0git
Module.h
Go to the documentation of this file.
1//===- llvm/Module.h - C++ class to represent a VM module -------*- 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/// @file
10/// Module.h This file contains the declarations for the Module class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_IR_MODULE_H
15#define LLVM_IR_MODULE_H
16
17#include "llvm-c/Types.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/StringMap.h"
20#include "llvm/ADT/StringRef.h"
22#include "llvm/IR/Attributes.h"
23#include "llvm/IR/Comdat.h"
24#include "llvm/IR/DataLayout.h"
25#include "llvm/IR/Function.h"
26#include "llvm/IR/GlobalAlias.h"
27#include "llvm/IR/GlobalIFunc.h"
29#include "llvm/IR/Metadata.h"
34#include <cstddef>
35#include <cstdint>
36#include <iterator>
37#include <memory>
38#include <optional>
39#include <string>
40#include <vector>
41
42namespace llvm {
43
44class Error;
45class FunctionType;
46class GVMaterializer;
47class LLVMContext;
48class MemoryBuffer;
49class ModuleSummaryIndex;
50class RandomNumberGenerator;
51class StructType;
52class VersionTuple;
53
54/// A Module instance is used to store all the information related to an
55/// LLVM module. Modules are the top level container of all other LLVM
56/// Intermediate Representation (IR) objects. Each module directly contains a
57/// list of globals variables, a list of functions, a list of libraries (or
58/// other modules) this module depends on, a symbol table, and various data
59/// about the target's characteristics.
60///
61/// A module maintains a GlobalList object that is used to hold all
62/// constant references to global variables in the module. When a global
63/// variable is destroyed, it should have no entries in the GlobalList.
64/// The main container class for the LLVM Intermediate Representation.
66 /// @name Types And Enumerations
67 /// @{
68public:
69 /// The type for the list of global variables.
71 /// The type for the list of functions.
73 /// The type for the list of aliases.
75 /// The type for the list of ifuncs.
77 /// The type for the list of named metadata.
79 /// The type of the comdat "symbol" table.
81 /// The type for mapping names to named metadata.
83
84 /// The Global Variable iterator.
86 /// The Global Variable constant iterator.
88
89 /// The Function iterators.
91 /// The Function constant iterator
93
94 /// The Function reverse iterator.
96 /// The Function constant reverse iterator.
98
99 /// The Global Alias iterators.
101 /// The Global Alias constant iterator
103
104 /// The Global IFunc iterators.
106 /// The Global IFunc constant iterator
108
109 /// The named metadata iterators.
111 /// The named metadata constant iterators.
113
114 /// This enumeration defines the supported behaviors of module flags.
116 /// Emits an error if two values disagree, otherwise the resulting value is
117 /// that of the operands.
118 Error = 1,
119
120 /// Emits a warning if two values disagree. The result value will be the
121 /// operand for the flag from the first module being linked.
122 Warning = 2,
123
124 /// Adds a requirement that another module flag be present and have a
125 /// specified value after linking is performed. The value must be a metadata
126 /// pair, where the first element of the pair is the ID of the module flag
127 /// to be restricted, and the second element of the pair is the value the
128 /// module flag should be restricted to. This behavior can be used to
129 /// restrict the allowable results (via triggering of an error) of linking
130 /// IDs with the **Override** behavior.
131 Require = 3,
132
133 /// Uses the specified value, regardless of the behavior or value of the
134 /// other module. If both modules specify **Override**, but the values
135 /// differ, an error will be emitted.
136 Override = 4,
137
138 /// Appends the two values, which are required to be metadata nodes.
139 Append = 5,
140
141 /// Appends the two values, which are required to be metadata
142 /// nodes. However, duplicate entries in the second list are dropped
143 /// during the append operation.
144 AppendUnique = 6,
145
146 /// Takes the max of the two values, which are required to be integers.
147 Max = 7,
148
149 /// Takes the min of the two values, which are required to be integers.
150 Min = 8,
151
152 // Markers:
153 ModFlagBehaviorFirstVal = Error,
154 ModFlagBehaviorLastVal = Min
155 };
156
157 /// Checks if Metadata represents a valid ModFlagBehavior, and stores the
158 /// converted result in MFB.
159 static bool isValidModFlagBehavior(Metadata *MD, ModFlagBehavior &MFB);
160
165
167 : Behavior(B), Key(K), Val(V) {}
168 };
169
170/// @}
171/// @name Member Variables
172/// @{
173private:
174 LLVMContext &Context; ///< The LLVMContext from which types and
175 ///< constants are allocated.
176 GlobalListType GlobalList; ///< The Global Variables in the module
177 FunctionListType FunctionList; ///< The Functions in the module
178 AliasListType AliasList; ///< The Aliases in the module
179 IFuncListType IFuncList; ///< The IFuncs in the module
180 NamedMDListType NamedMDList; ///< The named metadata in the module
181 std::string GlobalScopeAsm; ///< Inline Asm at global scope.
182 std::unique_ptr<ValueSymbolTable> ValSymTab; ///< Symbol table for values
183 ComdatSymTabType ComdatSymTab; ///< Symbol table for COMDATs
184 std::unique_ptr<MemoryBuffer>
185 OwnedMemoryBuffer; ///< Memory buffer directly owned by this
186 ///< module, for legacy clients only.
187 std::unique_ptr<GVMaterializer>
188 Materializer; ///< Used to materialize GlobalValues
189 std::string ModuleID; ///< Human readable identifier for the module
190 std::string SourceFileName; ///< Original source file name for module,
191 ///< recorded in bitcode.
192 std::string TargetTriple; ///< Platform target triple Module compiled on
193 ///< Format: (arch)(sub)-(vendor)-(sys0-(abi)
194 NamedMDSymTabType NamedMDSymTab; ///< NamedMDNode names.
195 DataLayout DL; ///< DataLayout associated with the module
197 CurrentIntrinsicIds; ///< Keep track of the current unique id count for
198 ///< the specified intrinsic basename.
200 UniquedIntrinsicNames; ///< Keep track of uniqued names of intrinsics
201 ///< based on unnamed types. The combination of
202 ///< ID and FunctionType maps to the extension that
203 ///< is used to make the intrinsic name unique.
204
205 friend class Constant;
206
207/// @}
208/// @name Constructors
209/// @{
210public:
211 /// Is this Module using intrinsics to record the position of debugging
212 /// information, or non-intrinsic records? See IsNewDbgInfoFormat in
213 /// \ref BasicBlock.
215
216 /// Used when printing this module in the new debug info format; removes all
217 /// declarations of debug intrinsics that are replaced by non-intrinsic
218 /// records in the new format.
219 void removeDebugIntrinsicDeclarations();
220
221 /// \see BasicBlock::convertToNewDbgValues.
223 for (auto &F : *this) {
224 F.convertToNewDbgValues();
225 }
226 IsNewDbgInfoFormat = true;
227 }
228
229 /// \see BasicBlock::convertFromNewDbgValues.
231 for (auto &F : *this) {
232 F.convertFromNewDbgValues();
233 }
234 IsNewDbgInfoFormat = false;
235 }
236
237 void setIsNewDbgInfoFormat(bool UseNewFormat) {
238 if (UseNewFormat && !IsNewDbgInfoFormat)
239 convertToNewDbgValues();
240 else if (!UseNewFormat && IsNewDbgInfoFormat)
241 convertFromNewDbgValues();
242 }
243 void setNewDbgInfoFormatFlag(bool NewFlag) {
244 for (auto &F : *this) {
245 F.setNewDbgInfoFormatFlag(NewFlag);
246 }
247 IsNewDbgInfoFormat = NewFlag;
248 }
249
250 /// The Module constructor. Note that there is no default constructor. You
251 /// must provide a name for the module upon construction.
252 explicit Module(StringRef ModuleID, LLVMContext& C);
253 /// The module destructor. This will dropAllReferences.
254 ~Module();
255
256/// @}
257/// @name Module Level Accessors
258/// @{
259
260 /// Get the module identifier which is, essentially, the name of the module.
261 /// @returns the module identifier as a string
262 const std::string &getModuleIdentifier() const { return ModuleID; }
263
264 /// Returns the number of non-debug IR instructions in the module.
265 /// This is equivalent to the sum of the IR instruction counts of each
266 /// function contained in the module.
267 unsigned getInstructionCount() const;
268
269 /// Get the module's original source file name. When compiling from
270 /// bitcode, this is taken from a bitcode record where it was recorded.
271 /// For other compiles it is the same as the ModuleID, which would
272 /// contain the source file name.
273 const std::string &getSourceFileName() const { return SourceFileName; }
274
275 /// Get a short "name" for the module.
276 ///
277 /// This is useful for debugging or logging. It is essentially a convenience
278 /// wrapper around getModuleIdentifier().
279 StringRef getName() const { return ModuleID; }
280
281 /// Get the data layout string for the module's target platform. This is
282 /// equivalent to getDataLayout()->getStringRepresentation().
283 const std::string &getDataLayoutStr() const {
284 return DL.getStringRepresentation();
285 }
286
287 /// Get the data layout for the module's target platform.
288 const DataLayout &getDataLayout() const { return DL; }
289
290 /// Get the target triple which is a string describing the target host.
291 /// @returns a string containing the target triple.
292 const std::string &getTargetTriple() const { return TargetTriple; }
293
294 /// Get the global data context.
295 /// @returns LLVMContext - a container for LLVM's global information
296 LLVMContext &getContext() const { return Context; }
297
298 /// Get any module-scope inline assembly blocks.
299 /// @returns a string containing the module-scope inline assembly blocks.
300 const std::string &getModuleInlineAsm() const { return GlobalScopeAsm; }
301
302 /// Get a RandomNumberGenerator salted for use with this module. The
303 /// RNG can be seeded via -rng-seed=<uint64> and is salted with the
304 /// ModuleID and the provided pass salt. The returned RNG should not
305 /// be shared across threads or passes.
306 ///
307 /// A unique RNG per pass ensures a reproducible random stream even
308 /// when other randomness consuming passes are added or removed. In
309 /// addition, the random stream will be reproducible across LLVM
310 /// versions when the pass does not change.
311 std::unique_ptr<RandomNumberGenerator> createRNG(const StringRef Name) const;
312
313 /// Return true if size-info optimization remark is enabled, false
314 /// otherwise.
316 return getContext().getDiagHandlerPtr()->isAnalysisRemarkEnabled(
317 "size-info");
318 }
319
320 /// @}
321 /// @name Module Level Mutators
322 /// @{
323
324 /// Set the module identifier.
325 void setModuleIdentifier(StringRef ID) { ModuleID = std::string(ID); }
326
327 /// Set the module's original source file name.
328 void setSourceFileName(StringRef Name) { SourceFileName = std::string(Name); }
329
330 /// Set the data layout
331 void setDataLayout(StringRef Desc);
332 void setDataLayout(const DataLayout &Other);
333
334 /// Set the target triple.
335 void setTargetTriple(StringRef T) { TargetTriple = std::string(T); }
336
337 /// Set the module-scope inline assembly blocks.
338 /// A trailing newline is added if the input doesn't have one.
340 GlobalScopeAsm = std::string(Asm);
341 if (!GlobalScopeAsm.empty() && GlobalScopeAsm.back() != '\n')
342 GlobalScopeAsm += '\n';
343 }
344
345 /// Append to the module-scope inline assembly blocks.
346 /// A trailing newline is added if the input doesn't have one.
348 GlobalScopeAsm += Asm;
349 if (!GlobalScopeAsm.empty() && GlobalScopeAsm.back() != '\n')
350 GlobalScopeAsm += '\n';
351 }
352
353/// @}
354/// @name Generic Value Accessors
355/// @{
356
357 /// Return the global value in the module with the specified name, of
358 /// arbitrary type. This method returns null if a global with the specified
359 /// name is not found.
360 GlobalValue *getNamedValue(StringRef Name) const;
361
362 /// Return the number of global values in the module.
363 unsigned getNumNamedValues() const;
364
365 /// Return a unique non-zero ID for the specified metadata kind. This ID is
366 /// uniqued across modules in the current LLVMContext.
367 unsigned getMDKindID(StringRef Name) const;
368
369 /// Populate client supplied SmallVector with the name for custom metadata IDs
370 /// registered in this LLVMContext.
371 void getMDKindNames(SmallVectorImpl<StringRef> &Result) const;
372
373 /// Populate client supplied SmallVector with the bundle tags registered in
374 /// this LLVMContext. The bundle tags are ordered by increasing bundle IDs.
375 /// \see LLVMContext::getOperandBundleTagID
376 void getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const;
377
378 std::vector<StructType *> getIdentifiedStructTypes() const;
379
380 /// Return a unique name for an intrinsic whose mangling is based on an
381 /// unnamed type. The Proto represents the function prototype.
382 std::string getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id,
383 const FunctionType *Proto);
384
385/// @}
386/// @name Function Accessors
387/// @{
388
389 /// Look up the specified function in the module symbol table. If it does not
390 /// exist, add a prototype for the function and return it. Otherwise, return
391 /// the existing function.
392 ///
393 /// In all cases, the returned value is a FunctionCallee wrapper around the
394 /// 'FunctionType *T' passed in, as well as the 'Value*' of the Function. The
395 /// function type of the function may differ from the function type stored in
396 /// FunctionCallee if it was previously created with a different type.
397 ///
398 /// Note: For library calls getOrInsertLibFunc() should be used instead.
399 FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T,
401
402 FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T);
403
404 /// Same as above, but takes a list of function arguments, which makes it
405 /// easier for clients to use.
406 template <typename... ArgsTy>
409 ArgsTy... Args) {
410 SmallVector<Type*, sizeof...(ArgsTy)> ArgTys{Args...};
411 return getOrInsertFunction(Name,
412 FunctionType::get(RetTy, ArgTys, false),
414 }
415
416 /// Same as above, but without the attributes.
417 template <typename... ArgsTy>
419 ArgsTy... Args) {
420 return getOrInsertFunction(Name, AttributeList{}, RetTy, Args...);
421 }
422
423 // Avoid an incorrect ordering that'd otherwise compile incorrectly.
424 template <typename... ArgsTy>
427 FunctionType *Invalid, ArgsTy... Args) = delete;
428
429 /// Look up the specified function in the module symbol table. If it does not
430 /// exist, return null.
432
433/// @}
434/// @name Global Variable Accessors
435/// @{
436
437 /// Look up the specified global variable in the module symbol table. If it
438 /// does not exist, return null. If AllowInternal is set to true, this
439 /// function will return types that have InternalLinkage. By default, these
440 /// types are not returned.
442 return getGlobalVariable(Name, false);
443 }
444
445 GlobalVariable *getGlobalVariable(StringRef Name, bool AllowInternal) const;
446
448 bool AllowInternal = false) {
449 return static_cast<const Module *>(this)->getGlobalVariable(Name,
450 AllowInternal);
451 }
452
453 /// Return the global variable in the module with the specified name, of
454 /// arbitrary type. This method returns null if a global with the specified
455 /// name is not found.
457 return getGlobalVariable(Name, true);
458 }
460 return const_cast<GlobalVariable *>(
461 static_cast<const Module *>(this)->getNamedGlobal(Name));
462 }
463
464 /// Look up the specified global in the module symbol table.
465 /// If it does not exist, invoke a callback to create a declaration of the
466 /// global and return it. The global is constantexpr casted to the expected
467 /// type if necessary.
468 Constant *
470 function_ref<GlobalVariable *()> CreateGlobalCallback);
471
472 /// Look up the specified global in the module symbol table. If required, this
473 /// overload constructs the global variable using its constructor's defaults.
475
476/// @}
477/// @name Global Alias Accessors
478/// @{
479
480 /// Return the global alias in the module with the specified name, of
481 /// arbitrary type. This method returns null if a global with the specified
482 /// name is not found.
483 GlobalAlias *getNamedAlias(StringRef Name) const;
484
485/// @}
486/// @name Global IFunc Accessors
487/// @{
488
489 /// Return the global ifunc in the module with the specified name, of
490 /// arbitrary type. This method returns null if a global with the specified
491 /// name is not found.
492 GlobalIFunc *getNamedIFunc(StringRef Name) const;
493
494/// @}
495/// @name Named Metadata Accessors
496/// @{
497
498 /// Return the first NamedMDNode in the module with the specified name. This
499 /// method returns null if a NamedMDNode with the specified name is not found.
500 NamedMDNode *getNamedMetadata(StringRef Name) const;
501
502 /// Return the named MDNode in the module with the specified name. This method
503 /// returns a new NamedMDNode if a NamedMDNode with the specified name is not
504 /// found.
505 NamedMDNode *getOrInsertNamedMetadata(StringRef Name);
506
507 /// Remove the given NamedMDNode from this module and delete it.
508 void eraseNamedMetadata(NamedMDNode *NMD);
509
510/// @}
511/// @name Comdat Accessors
512/// @{
513
514 /// Return the Comdat in the module with the specified name. It is created
515 /// if it didn't already exist.
516 Comdat *getOrInsertComdat(StringRef Name);
517
518/// @}
519/// @name Module Flags Accessors
520/// @{
521
522 /// Returns the module flags in the provided vector.
523 void getModuleFlagsMetadata(SmallVectorImpl<ModuleFlagEntry> &Flags) const;
524
525 /// Return the corresponding value if Key appears in module flags, otherwise
526 /// return null.
527 Metadata *getModuleFlag(StringRef Key) const;
528
529 /// Returns the NamedMDNode in the module that represents module-level flags.
530 /// This method returns null if there are no module-level flags.
531 NamedMDNode *getModuleFlagsMetadata() const;
532
533 /// Returns the NamedMDNode in the module that represents module-level flags.
534 /// If module-level flags aren't found, it creates the named metadata that
535 /// contains them.
536 NamedMDNode *getOrInsertModuleFlagsMetadata();
537
538 /// Add a module-level flag to the module-level flags metadata. It will create
539 /// the module-level flags named metadata if it doesn't already exist.
540 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
541 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val);
542 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
543 void addModuleFlag(MDNode *Node);
544 /// Like addModuleFlag but replaces the old module flag if it already exists.
545 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
546 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val);
547 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
548
549 /// @}
550 /// @name Materialization
551 /// @{
552
553 /// Sets the GVMaterializer to GVM. This module must not yet have a
554 /// Materializer. To reset the materializer for a module that already has one,
555 /// call materializeAll first. Destroying this module will destroy
556 /// its materializer without materializing any more GlobalValues. Without
557 /// destroying the Module, there is no way to detach or destroy a materializer
558 /// without materializing all the GVs it controls, to avoid leaving orphan
559 /// unmaterialized GVs.
560 void setMaterializer(GVMaterializer *GVM);
561 /// Retrieves the GVMaterializer, if any, for this Module.
562 GVMaterializer *getMaterializer() const { return Materializer.get(); }
563 bool isMaterialized() const { return !getMaterializer(); }
564
565 /// Make sure the GlobalValue is fully read.
566 llvm::Error materialize(GlobalValue *GV);
567
568 /// Make sure all GlobalValues in this Module are fully read and clear the
569 /// Materializer.
570 llvm::Error materializeAll();
571
572 llvm::Error materializeMetadata();
573
574 /// Detach global variable \p GV from the list but don't delete it.
575 void removeGlobalVariable(GlobalVariable *GV) { GlobalList.remove(GV); }
576 /// Remove global variable \p GV from the list and delete it.
577 void eraseGlobalVariable(GlobalVariable *GV) { GlobalList.erase(GV); }
578 /// Insert global variable \p GV at the end of the global variable list and
579 /// take ownership.
581 insertGlobalVariable(GlobalList.end(), GV);
582 }
583 /// Insert global variable \p GV into the global variable list before \p
584 /// Where and take ownership.
586 GlobalList.insert(Where, GV);
587 }
588 // Use global_size() to get the total number of global variables.
589 // Use globals() to get the range of all global variables.
590
591private:
592/// @}
593/// @name Direct access to the globals list, functions list, and symbol table
594/// @{
595
596 /// Get the Module's list of global variables (constant).
597 const GlobalListType &getGlobalList() const { return GlobalList; }
598 /// Get the Module's list of global variables.
599 GlobalListType &getGlobalList() { return GlobalList; }
600
601 static GlobalListType Module::*getSublistAccess(GlobalVariable*) {
602 return &Module::GlobalList;
603 }
605
606public:
607 /// Get the Module's list of functions (constant).
608 const FunctionListType &getFunctionList() const { return FunctionList; }
609 /// Get the Module's list of functions.
610 FunctionListType &getFunctionList() { return FunctionList; }
612 return &Module::FunctionList;
613 }
614
615 /// Detach \p Alias from the list but don't delete it.
616 void removeAlias(GlobalAlias *Alias) { AliasList.remove(Alias); }
617 /// Remove \p Alias from the list and delete it.
618 void eraseAlias(GlobalAlias *Alias) { AliasList.erase(Alias); }
619 /// Insert \p Alias at the end of the alias list and take ownership.
620 void insertAlias(GlobalAlias *Alias) { AliasList.insert(AliasList.end(), Alias); }
621 // Use alias_size() to get the size of AliasList.
622 // Use aliases() to get a range of all Alias objects in AliasList.
623
624 /// Detach \p IFunc from the list but don't delete it.
625 void removeIFunc(GlobalIFunc *IFunc) { IFuncList.remove(IFunc); }
626 /// Remove \p IFunc from the list and delete it.
627 void eraseIFunc(GlobalIFunc *IFunc) { IFuncList.erase(IFunc); }
628 /// Insert \p IFunc at the end of the alias list and take ownership.
629 void insertIFunc(GlobalIFunc *IFunc) { IFuncList.push_back(IFunc); }
630 // Use ifunc_size() to get the number of functions in IFuncList.
631 // Use ifuncs() to get the range of all IFuncs.
632
633 /// Detach \p MDNode from the list but don't delete it.
634 void removeNamedMDNode(NamedMDNode *MDNode) { NamedMDList.remove(MDNode); }
635 /// Remove \p MDNode from the list and delete it.
636 void eraseNamedMDNode(NamedMDNode *MDNode) { NamedMDList.erase(MDNode); }
637 /// Insert \p MDNode at the end of the alias list and take ownership.
639 NamedMDList.push_back(MDNode);
640 }
641 // Use named_metadata_size() to get the size of the named meatadata list.
642 // Use named_metadata() to get the range of all named metadata.
643
644private: // Please use functions like insertAlias(), removeAlias() etc.
645 /// Get the Module's list of aliases (constant).
646 const AliasListType &getAliasList() const { return AliasList; }
647 /// Get the Module's list of aliases.
648 AliasListType &getAliasList() { return AliasList; }
649
650 static AliasListType Module::*getSublistAccess(GlobalAlias*) {
651 return &Module::AliasList;
652 }
654
655 /// Get the Module's list of ifuncs (constant).
656 const IFuncListType &getIFuncList() const { return IFuncList; }
657 /// Get the Module's list of ifuncs.
658 IFuncListType &getIFuncList() { return IFuncList; }
659
660 static IFuncListType Module::*getSublistAccess(GlobalIFunc*) {
661 return &Module::IFuncList;
662 }
664
665 /// Get the Module's list of named metadata (constant).
666 const NamedMDListType &getNamedMDList() const { return NamedMDList; }
667 /// Get the Module's list of named metadata.
668 NamedMDListType &getNamedMDList() { return NamedMDList; }
669
670 static NamedMDListType Module::*getSublistAccess(NamedMDNode*) {
671 return &Module::NamedMDList;
672 }
673
674public:
675 /// Get the symbol table of global variable and function identifiers
676 const ValueSymbolTable &getValueSymbolTable() const { return *ValSymTab; }
677 /// Get the Module's symbol table of global variable and function identifiers.
678 ValueSymbolTable &getValueSymbolTable() { return *ValSymTab; }
679
680 /// Get the Module's symbol table for COMDATs (constant).
681 const ComdatSymTabType &getComdatSymbolTable() const { return ComdatSymTab; }
682 /// Get the Module's symbol table for COMDATs.
683 ComdatSymTabType &getComdatSymbolTable() { return ComdatSymTab; }
684
685/// @}
686/// @name Global Variable Iteration
687/// @{
688
689 global_iterator global_begin() { return GlobalList.begin(); }
690 const_global_iterator global_begin() const { return GlobalList.begin(); }
691 global_iterator global_end () { return GlobalList.end(); }
692 const_global_iterator global_end () const { return GlobalList.end(); }
693 size_t global_size () const { return GlobalList.size(); }
694 bool global_empty() const { return GlobalList.empty(); }
695
697 return make_range(global_begin(), global_end());
698 }
700 return make_range(global_begin(), global_end());
701 }
702
703/// @}
704/// @name Function Iteration
705/// @{
706
707 iterator begin() { return FunctionList.begin(); }
708 const_iterator begin() const { return FunctionList.begin(); }
709 iterator end () { return FunctionList.end(); }
710 const_iterator end () const { return FunctionList.end(); }
711 reverse_iterator rbegin() { return FunctionList.rbegin(); }
712 const_reverse_iterator rbegin() const{ return FunctionList.rbegin(); }
713 reverse_iterator rend() { return FunctionList.rend(); }
714 const_reverse_iterator rend() const { return FunctionList.rend(); }
715 size_t size() const { return FunctionList.size(); }
716 bool empty() const { return FunctionList.empty(); }
717
719 return make_range(begin(), end());
720 }
722 return make_range(begin(), end());
723 }
724
725/// @}
726/// @name Alias Iteration
727/// @{
728
729 alias_iterator alias_begin() { return AliasList.begin(); }
730 const_alias_iterator alias_begin() const { return AliasList.begin(); }
731 alias_iterator alias_end () { return AliasList.end(); }
732 const_alias_iterator alias_end () const { return AliasList.end(); }
733 size_t alias_size () const { return AliasList.size(); }
734 bool alias_empty() const { return AliasList.empty(); }
735
737 return make_range(alias_begin(), alias_end());
738 }
740 return make_range(alias_begin(), alias_end());
741 }
742
743/// @}
744/// @name IFunc Iteration
745/// @{
746
747 ifunc_iterator ifunc_begin() { return IFuncList.begin(); }
748 const_ifunc_iterator ifunc_begin() const { return IFuncList.begin(); }
749 ifunc_iterator ifunc_end () { return IFuncList.end(); }
750 const_ifunc_iterator ifunc_end () const { return IFuncList.end(); }
751 size_t ifunc_size () const { return IFuncList.size(); }
752 bool ifunc_empty() const { return IFuncList.empty(); }
753
755 return make_range(ifunc_begin(), ifunc_end());
756 }
758 return make_range(ifunc_begin(), ifunc_end());
759 }
760
761 /// @}
762 /// @name Convenience iterators
763 /// @{
764
770
773
780
783
784 /// @}
785 /// @name Named Metadata Iteration
786 /// @{
787
788 named_metadata_iterator named_metadata_begin() { return NamedMDList.begin(); }
790 return NamedMDList.begin();
791 }
792
793 named_metadata_iterator named_metadata_end() { return NamedMDList.end(); }
795 return NamedMDList.end();
796 }
797
798 size_t named_metadata_size() const { return NamedMDList.size(); }
799 bool named_metadata_empty() const { return NamedMDList.empty(); }
800
802 return make_range(named_metadata_begin(), named_metadata_end());
803 }
805 return make_range(named_metadata_begin(), named_metadata_end());
806 }
807
808 /// An iterator for DICompileUnits that skips those marked NoDebug.
810 NamedMDNode *CUs;
811 unsigned Idx;
812
813 void SkipNoDebugCUs();
814
815 public:
816 using iterator_category = std::input_iterator_tag;
818 using difference_type = std::ptrdiff_t;
821
823 : CUs(CUs), Idx(Idx) {
824 SkipNoDebugCUs();
825 }
826
828 ++Idx;
829 SkipNoDebugCUs();
830 return *this;
831 }
832
835 ++Idx;
836 return T;
837 }
838
840 return Idx == I.Idx;
841 }
842
844 return Idx != I.Idx;
845 }
846
847 DICompileUnit *operator*() const;
848 DICompileUnit *operator->() const;
849 };
850
852 auto *CUs = getNamedMetadata("llvm.dbg.cu");
853 return debug_compile_units_iterator(CUs, 0);
854 }
855
857 auto *CUs = getNamedMetadata("llvm.dbg.cu");
858 return debug_compile_units_iterator(CUs, CUs ? CUs->getNumOperands() : 0);
859 }
860
861 /// Return an iterator for all DICompileUnits listed in this Module's
862 /// llvm.dbg.cu named metadata node and aren't explicitly marked as
863 /// NoDebug.
865 auto *CUs = getNamedMetadata("llvm.dbg.cu");
866 return make_range(
868 debug_compile_units_iterator(CUs, CUs ? CUs->getNumOperands() : 0));
869 }
870/// @}
871
872 /// Destroy ConstantArrays in LLVMContext if they are not used.
873 /// ConstantArrays constructed during linking can cause quadratic memory
874 /// explosion. Releasing all unused constants can cause a 20% LTO compile-time
875 /// slowdown for a large application.
876 ///
877 /// NOTE: Constants are currently owned by LLVMContext. This can then only
878 /// be called where all uses of the LLVMContext are understood.
879 void dropTriviallyDeadConstantArrays();
880
881/// @name Utility functions for printing and dumping Module objects
882/// @{
883
884 /// Print the module to an output stream with an optional
885 /// AssemblyAnnotationWriter. If \c ShouldPreserveUseListOrder, then include
886 /// uselistorder directives so that use-lists can be recreated when reading
887 /// the assembly.
889 bool ShouldPreserveUseListOrder = false,
890 bool IsForDebug = false) const;
891
892 /// Dump the module to stderr (for debugging).
893 void dump() const;
894
895 /// This function causes all the subinstructions to "let go" of all references
896 /// that they are maintaining. This allows one to 'delete' a whole class at
897 /// a time, even though there may be circular references... first all
898 /// references are dropped, and all use counts go to zero. Then everything
899 /// is delete'd for real. Note that no operations are valid on an object
900 /// that has "dropped all references", except operator delete.
901 void dropAllReferences();
902
903/// @}
904/// @name Utility functions for querying Debug information.
905/// @{
906
907 /// Returns the Number of Register ParametersDwarf Version by checking
908 /// module flags.
909 unsigned getNumberRegisterParameters() const;
910
911 /// Returns the Dwarf Version by checking module flags.
912 unsigned getDwarfVersion() const;
913
914 /// Returns the DWARF format by checking module flags.
915 bool isDwarf64() const;
916
917 /// Returns the CodeView Version by checking module flags.
918 /// Returns zero if not present in module.
919 unsigned getCodeViewFlag() const;
920
921/// @}
922/// @name Utility functions for querying and setting PIC level
923/// @{
924
925 /// Returns the PIC level (small or large model)
926 PICLevel::Level getPICLevel() const;
927
928 /// Set the PIC level (small or large model)
929 void setPICLevel(PICLevel::Level PL);
930/// @}
931
932/// @}
933/// @name Utility functions for querying and setting PIE level
934/// @{
935
936 /// Returns the PIE level (small or large model)
937 PIELevel::Level getPIELevel() const;
938
939 /// Set the PIE level (small or large model)
940 void setPIELevel(PIELevel::Level PL);
941/// @}
942
943 /// @}
944 /// @name Utility function for querying and setting code model
945 /// @{
946
947 /// Returns the code model (tiny, small, kernel, medium or large model)
948 std::optional<CodeModel::Model> getCodeModel() const;
949
950 /// Set the code model (tiny, small, kernel, medium or large)
951 void setCodeModel(CodeModel::Model CL);
952 /// @}
953
954 /// @}
955 /// @name Utility function for querying and setting the large data threshold
956 /// @{
957
958 /// Returns the code model (tiny, small, kernel, medium or large model)
959 std::optional<uint64_t> getLargeDataThreshold() const;
960
961 /// Set the code model (tiny, small, kernel, medium or large)
962 void setLargeDataThreshold(uint64_t Threshold);
963 /// @}
964
965 /// @name Utility functions for querying and setting PGO summary
966 /// @{
967
968 /// Attach profile summary metadata to this module.
969 void setProfileSummary(Metadata *M, ProfileSummary::Kind Kind);
970
971 /// Returns profile summary metadata. When IsCS is true, use the context
972 /// sensitive profile summary.
973 Metadata *getProfileSummary(bool IsCS) const;
974 /// @}
975
976 /// Returns whether semantic interposition is to be respected.
977 bool getSemanticInterposition() const;
978
979 /// Set whether semantic interposition is to be respected.
980 void setSemanticInterposition(bool);
981
982 /// Returns true if PLT should be avoided for RTLib calls.
983 bool getRtLibUseGOT() const;
984
985 /// Set that PLT should be avoid for RTLib calls.
986 void setRtLibUseGOT();
987
988 /// Get/set whether referencing global variables can use direct access
989 /// relocations on ELF targets.
990 bool getDirectAccessExternalData() const;
991 void setDirectAccessExternalData(bool Value);
992
993 /// Get/set whether synthesized functions should get the uwtable attribute.
994 UWTableKind getUwtable() const;
995 void setUwtable(UWTableKind Kind);
996
997 /// Get/set whether synthesized functions should get the "frame-pointer"
998 /// attribute.
999 FramePointerKind getFramePointer() const;
1000 void setFramePointer(FramePointerKind Kind);
1001
1002 /// Get/set what kind of stack protector guard to use.
1003 StringRef getStackProtectorGuard() const;
1004 void setStackProtectorGuard(StringRef Kind);
1005
1006 /// Get/set which register to use as the stack protector guard register. The
1007 /// empty string is equivalent to "global". Other values may be "tls" or
1008 /// "sysreg".
1009 StringRef getStackProtectorGuardReg() const;
1010 void setStackProtectorGuardReg(StringRef Reg);
1011
1012 /// Get/set a symbol to use as the stack protector guard.
1013 StringRef getStackProtectorGuardSymbol() const;
1014 void setStackProtectorGuardSymbol(StringRef Symbol);
1015
1016 /// Get/set what offset from the stack protector to use.
1017 int getStackProtectorGuardOffset() const;
1018 void setStackProtectorGuardOffset(int Offset);
1019
1020 /// Get/set the stack alignment overridden from the default.
1021 unsigned getOverrideStackAlignment() const;
1022 void setOverrideStackAlignment(unsigned Align);
1023
1024 unsigned getMaxTLSAlignment() const;
1025
1026 /// @name Utility functions for querying and setting the build SDK version
1027 /// @{
1028
1029 /// Attach a build SDK version metadata to this module.
1030 void setSDKVersion(const VersionTuple &V);
1031
1032 /// Get the build SDK version metadata.
1033 ///
1034 /// An empty version is returned if no such metadata is attached.
1035 VersionTuple getSDKVersion() const;
1036 /// @}
1037
1038 /// Take ownership of the given memory buffer.
1039 void setOwnedMemoryBuffer(std::unique_ptr<MemoryBuffer> MB);
1040
1041 /// Set the partial sample profile ratio in the profile summary module flag,
1042 /// if applicable.
1043 void setPartialSampleProfileRatio(const ModuleSummaryIndex &Index);
1044
1045 /// Get the target variant triple which is a string describing a variant of
1046 /// the target host platform. For example, Mac Catalyst can be a variant
1047 /// target triple for a macOS target.
1048 /// @returns a string containing the target variant triple.
1049 StringRef getDarwinTargetVariantTriple() const;
1050
1051 /// Set the target variant triple which is a string describing a variant of
1052 /// the target host platform.
1053 void setDarwinTargetVariantTriple(StringRef T);
1054
1055 /// Get the target variant version build SDK version metadata.
1056 ///
1057 /// An empty version is returned if no such metadata is attached.
1058 VersionTuple getDarwinTargetVariantSDKVersion() const;
1059
1060 /// Set the target variant version build SDK version metadata.
1061 void setDarwinTargetVariantSDKVersion(VersionTuple Version);
1062};
1063
1064/// Given "llvm.used" or "llvm.compiler.used" as a global name, collect the
1065/// initializer elements of that global in a SmallVector and return the global
1066/// itself.
1067GlobalVariable *collectUsedGlobalVariables(const Module &M,
1068 SmallVectorImpl<GlobalValue *> &Vec,
1069 bool CompilerUsed);
1070
1071/// An raw_ostream inserter for modules.
1073 M.print(O, nullptr);
1074 return O;
1075}
1076
1077// Create wrappers for C Binding types (see CBindingWrapping.h).
1079
1080/* LLVMModuleProviderRef exists for historical reasons, but now just holds a
1081 * Module.
1082 */
1084 return reinterpret_cast<Module*>(MP);
1085}
1086
1087} // end namespace llvm
1088
1089#endif // LLVM_IR_MODULE_H
aarch64 promote const
This file defines the StringMap class.
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
always inline
static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val)
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
return RetTy
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
std::string Name
std::optional< std::vector< StOtherPiece > > Other
Definition: ELFYAML.cpp:1295
uint64_t Offset
Definition: ELF_riscv.cpp:478
static Function * getFunction(Constant *C)
Definition: Evaluator.cpp:236
This file contains the declaration of the GlobalIFunc class, which represents a single indirect funct...
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
Machine Check Debug Module
unsigned Reg
static Constant * getOrInsertGlobal(Module &M, StringRef Name, Type *Ty)
This file contains the declarations for metadata subclasses.
#define T
static CodeModel::Model getCodeModel(const PPCSubtarget &S, const TargetMachine &TM, const MachineOperand &MO)
This file contains some templates that are useful if you are working with the STL at all.
raw_pwrite_stream & OS
static GlobalVariable * getGlobalVariable(Module &M, Type *Ty, WebAssemblyTargetMachine &TM, const char *Name)
This is an important base class in LLVM.
Definition: Constant.h:42
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:110
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
Definition: DerivedTypes.h:168
Class to represent function types.
Definition: DerivedTypes.h:103
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
Metadata node.
Definition: Metadata.h:1069
A single uniqued string.
Definition: Metadata.h:720
Root of the metadata hierarchy.
Definition: Metadata.h:62
Class to hold module path string table and global value map, and encapsulate methods for operating on...
An iterator for DICompileUnits that skips those marked NoDebug.
Definition: Module.h:809
debug_compile_units_iterator & operator++()
Definition: Module.h:827
bool operator==(const debug_compile_units_iterator &I) const
Definition: Module.h:839
debug_compile_units_iterator operator++(int)
Definition: Module.h:833
std::input_iterator_tag iterator_category
Definition: Module.h:816
debug_compile_units_iterator(NamedMDNode *CUs, unsigned Idx)
Definition: Module.h:822
bool operator!=(const debug_compile_units_iterator &I) const
Definition: Module.h:843
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
global_iterator global_begin()
Definition: Module.h:689
void removeIFunc(GlobalIFunc *IFunc)
Detach IFunc from the list but don't delete it.
Definition: Module.h:625
const_global_iterator global_begin() const
Definition: Module.h:690
const_iterator begin() const
Definition: Module.h:708
ifunc_iterator ifunc_begin()
Definition: Module.h:747
void eraseNamedMDNode(NamedMDNode *MDNode)
Remove MDNode from the list and delete it.
Definition: Module.h:636
const std::string & getModuleInlineAsm() const
Get any module-scope inline assembly blocks.
Definition: Module.h:300
ModFlagBehavior
This enumeration defines the supported behaviors of module flags.
Definition: Module.h:115
LLVMContext & getContext() const
Get the global data context.
Definition: Module.h:296
void insertIFunc(GlobalIFunc *IFunc)
Insert IFunc at the end of the alias list and take ownership.
Definition: Module.h:629
iterator_range< const_alias_iterator > aliases() const
Definition: Module.h:739
void setModuleInlineAsm(StringRef Asm)
Set the module-scope inline assembly blocks.
Definition: Module.h:339
const ComdatSymTabType & getComdatSymbolTable() const
Get the Module's symbol table for COMDATs (constant).
Definition: Module.h:681
bool IsNewDbgInfoFormat
Is this Module using intrinsics to record the position of debugging information, or non-intrinsic rec...
Definition: Module.h:214
global_iterator global_end()
Definition: Module.h:691
GlobalVariable * getNamedGlobal(StringRef Name)
Definition: Module.h:459
NamedMDListType::iterator named_metadata_iterator
The named metadata iterators.
Definition: Module.h:110
size_t alias_size() const
Definition: Module.h:733
const_global_iterator global_end() const
Definition: Module.h:692
bool global_empty() const
Definition: Module.h:694
iterator begin()
Definition: Module.h:707
void convertToNewDbgValues()
Definition: Module.h:222
FunctionCallee getOrInsertFunction(StringRef Name, AttributeList AttributeList, Type *RetTy, ArgsTy... Args)
Same as above, but takes a list of function arguments, which makes it easier for clients to use.
Definition: Module.h:407
const_ifunc_iterator ifunc_end() const
Definition: Module.h:750
void convertFromNewDbgValues()
Definition: Module.h:230
iterator_range< ifunc_iterator > ifuncs()
Definition: Module.h:754
bool named_metadata_empty() const
Definition: Module.h:799
ValueSymbolTable & getValueSymbolTable()
Get the Module's symbol table of global variable and function identifiers.
Definition: Module.h:678
NamedMDListType::const_iterator const_named_metadata_iterator
The named metadata constant iterators.
Definition: Module.h:112
const_named_metadata_iterator named_metadata_begin() const
Definition: Module.h:789
size_t global_size() const
Definition: Module.h:693
iterator_range< debug_compile_units_iterator > debug_compile_units() const
Return an iterator for all DICompileUnits listed in this Module's llvm.dbg.cu named metadata node and...
Definition: Module.h:864
iterator_range< iterator > functions()
Definition: Module.h:718
StringRef getName() const
Get a short "name" for the module.
Definition: Module.h:279
GVMaterializer * getMaterializer() const
Retrieves the GVMaterializer, if any, for this Module.
Definition: Module.h:562
const std::string & getSourceFileName() const
Get the module's original source file name.
Definition: Module.h:273
IFuncListType::iterator ifunc_iterator
The Global IFunc iterators.
Definition: Module.h:105
const_alias_iterator alias_end() const
Definition: Module.h:732
void removeAlias(GlobalAlias *Alias)
Detach Alias from the list but don't delete it.
Definition: Module.h:616
iterator_range< named_metadata_iterator > named_metadata()
Definition: Module.h:801
named_metadata_iterator named_metadata_begin()
Definition: Module.h:788
ifunc_iterator ifunc_end()
Definition: Module.h:749
GlobalListType::const_iterator const_global_iterator
The Global Variable constant iterator.
Definition: Module.h:87
iterator_range< alias_iterator > aliases()
Definition: Module.h:736
const std::string & getTargetTriple() const
Get the target triple which is a string describing the target host.
Definition: Module.h:292
void insertGlobalVariable(GlobalListType::iterator Where, GlobalVariable *GV)
Insert global variable GV into the global variable list before Where and take ownership.
Definition: Module.h:585
alias_iterator alias_end()
Definition: Module.h:731
const_alias_iterator alias_begin() const
Definition: Module.h:730
const_reverse_iterator rbegin() const
Definition: Module.h:712
alias_iterator alias_begin()
Definition: Module.h:729
reverse_iterator rend()
Definition: Module.h:713
FunctionListType::iterator iterator
The Function iterators.
Definition: Module.h:90
GlobalVariable * getGlobalVariable(StringRef Name, bool AllowInternal=false)
Definition: Module.h:447
void eraseIFunc(GlobalIFunc *IFunc)
Remove IFunc from the list and delete it.
Definition: Module.h:627
bool shouldEmitInstrCountChangedRemark()
Return true if size-info optimization remark is enabled, false otherwise.
Definition: Module.h:315
GlobalListType::iterator global_iterator
The Global Variable iterator.
Definition: Module.h:85
size_t size() const
Definition: Module.h:715
void setNewDbgInfoFormatFlag(bool NewFlag)
Definition: Module.h:243
FunctionListType::const_reverse_iterator const_reverse_iterator
The Function constant reverse iterator.
Definition: Module.h:97
bool alias_empty() const
Definition: Module.h:734
FunctionCallee getOrInsertFunction(StringRef Name, AttributeList AttributeList, FunctionType *Invalid, ArgsTy... Args)=delete
iterator_range< global_iterator > globals()
Definition: Module.h:696
const_reverse_iterator rend() const
Definition: Module.h:714
iterator_range< const_named_metadata_iterator > named_metadata() const
Definition: Module.h:804
IFuncListType::const_iterator const_ifunc_iterator
The Global IFunc constant iterator.
Definition: Module.h:107
size_t ifunc_size() const
Definition: Module.h:751
FunctionListType & getFunctionList()
Get the Module's list of functions.
Definition: Module.h:610
void eraseAlias(GlobalAlias *Alias)
Remove Alias from the list and delete it.
Definition: Module.h:618
const std::string & getModuleIdentifier() const
Get the module identifier which is, essentially, the name of the module.
Definition: Module.h:262
void eraseGlobalVariable(GlobalVariable *GV)
Remove global variable GV from the list and delete it.
Definition: Module.h:577
reverse_iterator rbegin()
Definition: Module.h:711
FunctionCallee getOrInsertFunction(StringRef Name, Type *RetTy, ArgsTy... Args)
Same as above, but without the attributes.
Definition: Module.h:418
void insertNamedMDNode(NamedMDNode *MDNode)
Insert MDNode at the end of the alias list and take ownership.
Definition: Module.h:638
const_named_metadata_iterator named_metadata_end() const
Definition: Module.h:794
bool empty() const
Definition: Module.h:716
void removeNamedMDNode(NamedMDNode *MDNode)
Detach MDNode from the list but don't delete it.
Definition: Module.h:634
AliasListType::iterator alias_iterator
The Global Alias iterators.
Definition: Module.h:100
iterator end()
Definition: Module.h:709
GlobalVariable * getGlobalVariable(StringRef Name) const
Look up the specified global variable in the module symbol table.
Definition: Module.h:441
void insertGlobalVariable(GlobalVariable *GV)
Insert global variable GV at the end of the global variable list and take ownership.
Definition: Module.h:580
const ValueSymbolTable & getValueSymbolTable() const
Get the symbol table of global variable and function identifiers.
Definition: Module.h:676
size_t named_metadata_size() const
Definition: Module.h:798
named_metadata_iterator named_metadata_end()
Definition: Module.h:793
bool isMaterialized() const
Definition: Module.h:563
const GlobalVariable * getNamedGlobal(StringRef Name) const
Return the global variable in the module with the specified name, of arbitrary type.
Definition: Module.h:456
AliasListType::const_iterator const_alias_iterator
The Global Alias constant iterator.
Definition: Module.h:102
ComdatSymTabType & getComdatSymbolTable()
Get the Module's symbol table for COMDATs.
Definition: Module.h:683
FunctionListType::reverse_iterator reverse_iterator
The Function reverse iterator.
Definition: Module.h:95
const DataLayout & getDataLayout() const
Get the data layout for the module's target platform.
Definition: Module.h:288
iterator_range< const_iterator > functions() const
Definition: Module.h:721
void setIsNewDbgInfoFormat(bool UseNewFormat)
Definition: Module.h:237
iterator_range< const_global_iterator > globals() const
Definition: Module.h:699
void setModuleIdentifier(StringRef ID)
Set the module identifier.
Definition: Module.h:325
iterator_range< const_ifunc_iterator > ifuncs() const
Definition: Module.h:757
const_iterator end() const
Definition: Module.h:710
void setSourceFileName(StringRef Name)
Set the module's original source file name.
Definition: Module.h:328
const_ifunc_iterator ifunc_begin() const
Definition: Module.h:748
const std::string & getDataLayoutStr() const
Get the data layout string for the module's target platform.
Definition: Module.h:283
static FunctionListType Module::* getSublistAccess(Function *)
Definition: Module.h:611
void appendModuleInlineAsm(StringRef Asm)
Append to the module-scope inline assembly blocks.
Definition: Module.h:347
FunctionListType::const_iterator const_iterator
The Function constant iterator.
Definition: Module.h:92
void insertAlias(GlobalAlias *Alias)
Insert Alias at the end of the alias list and take ownership.
Definition: Module.h:620
debug_compile_units_iterator debug_compile_units_begin() const
Definition: Module.h:851
void setTargetTriple(StringRef T)
Set the target triple.
Definition: Module.h:335
bool ifunc_empty() const
Definition: Module.h:752
void removeGlobalVariable(GlobalVariable *GV)
Detach global variable GV from the list but don't delete it.
Definition: Module.h:575
debug_compile_units_iterator debug_compile_units_end() const
Definition: Module.h:856
A tuple of MDNodes.
Definition: Metadata.h:1730
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:587
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1210
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
This class provides a symbol table of name/value pairs.
LLVM Value Representation.
Definition: Value.h:74
Represents a version number in the form major[.minor[.subminor[.build]]].
Definition: VersionTuple.h:29
Iterator wrapper that concatenates sequences together.
Definition: STLExtras.h:1023
An efficient, type-erasing, non-owning reference to a callable.
base_list_type::const_reverse_iterator const_reverse_iterator
Definition: ilist.h:125
base_list_type::reverse_iterator reverse_iterator
Definition: ilist.h:123
base_list_type::const_iterator const_iterator
Definition: ilist.h:122
base_list_type::iterator iterator
Definition: ilist.h:121
An intrusive list with ownership and callbacks specified/controlled by ilist_traits,...
Definition: ilist.h:328
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
struct LLVMOpaqueModule * LLVMModuleRef
The top-level container for all other LLVM Intermediate Representation (IR) objects.
Definition: Types.h:61
struct LLVMOpaqueModuleProvider * LLVMModuleProviderRef
Interface used to provide a module to JIT or interpreter.
Definition: Types.h:124
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
This file contains the declaration of the Comdat class, which represents a single COMDAT in LLVM.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
FramePointerKind
Definition: CodeGen.h:90
APInt operator*(APInt a, uint64_t RHS)
Definition: APInt.h:2184
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
UWTableKind
Definition: CodeGen.h:120
Attribute unwrap(LLVMAttributeRef Attr)
Definition: Attributes.h:320
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:293
GlobalVariable * collectUsedGlobalVariables(const Module &M, SmallVectorImpl< GlobalValue * > &Vec, bool CompilerUsed)
Given "llvm.used" or "llvm.compiler.used" as a global name, collect the initializer elements of that ...
Definition: Module.cpp:833
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
Description of the encoding of one expression Op.
ModFlagBehavior Behavior
Definition: Module.h:162
ModuleFlagEntry(ModFlagBehavior B, MDString *K, Metadata *V)
Definition: Module.h:166