]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/IR/Module.cpp
Merge llvm trunk r300422 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / IR / Module.cpp
1 //===-- Module.cpp - Implement the Module class ---------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Module class for the IR library.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/IR/Module.h"
15 #include "SymbolTableListTraitsImpl.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/SmallPtrSet.h"
18 #include "llvm/ADT/SmallString.h"
19 #include "llvm/ADT/StringExtras.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/IR/DerivedTypes.h"
22 #include "llvm/IR/DebugInfoMetadata.h"
23 #include "llvm/IR/GVMaterializer.h"
24 #include "llvm/IR/InstrTypes.h"
25 #include "llvm/IR/LLVMContext.h"
26 #include "llvm/IR/TypeFinder.h"
27 #include "llvm/Support/Dwarf.h"
28 #include "llvm/Support/Error.h"
29 #include "llvm/Support/MemoryBuffer.h"
30 #include "llvm/Support/Path.h"
31 #include "llvm/Support/RandomNumberGenerator.h"
32 #include <algorithm>
33 #include <cstdarg>
34 #include <cstdlib>
35
36 using namespace llvm;
37
38 //===----------------------------------------------------------------------===//
39 // Methods to implement the globals and functions lists.
40 //
41
42 // Explicit instantiations of SymbolTableListTraits since some of the methods
43 // are not in the public header file.
44 template class llvm::SymbolTableListTraits<Function>;
45 template class llvm::SymbolTableListTraits<GlobalVariable>;
46 template class llvm::SymbolTableListTraits<GlobalAlias>;
47 template class llvm::SymbolTableListTraits<GlobalIFunc>;
48
49 //===----------------------------------------------------------------------===//
50 // Primitive Module methods.
51 //
52
53 Module::Module(StringRef MID, LLVMContext &C)
54     : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") {
55   ValSymTab = new ValueSymbolTable();
56   NamedMDSymTab = new StringMap<NamedMDNode *>();
57   Context.addModule(this);
58 }
59
60 Module::~Module() {
61   Context.removeModule(this);
62   dropAllReferences();
63   GlobalList.clear();
64   FunctionList.clear();
65   AliasList.clear();
66   IFuncList.clear();
67   NamedMDList.clear();
68   delete ValSymTab;
69   delete static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab);
70 }
71
72 RandomNumberGenerator *Module::createRNG(const Pass* P) const {
73   SmallString<32> Salt(P->getPassName());
74
75   // This RNG is guaranteed to produce the same random stream only
76   // when the Module ID and thus the input filename is the same. This
77   // might be problematic if the input filename extension changes
78   // (e.g. from .c to .bc or .ll).
79   //
80   // We could store this salt in NamedMetadata, but this would make
81   // the parameter non-const. This would unfortunately make this
82   // interface unusable by any Machine passes, since they only have a
83   // const reference to their IR Module. Alternatively we can always
84   // store salt metadata from the Module constructor.
85   Salt += sys::path::filename(getModuleIdentifier());
86
87   return new RandomNumberGenerator(Salt);
88 }
89
90 /// getNamedValue - Return the first global value in the module with
91 /// the specified name, of arbitrary type.  This method returns null
92 /// if a global with the specified name is not found.
93 GlobalValue *Module::getNamedValue(StringRef Name) const {
94   return cast_or_null<GlobalValue>(getValueSymbolTable().lookup(Name));
95 }
96
97 /// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
98 /// This ID is uniqued across modules in the current LLVMContext.
99 unsigned Module::getMDKindID(StringRef Name) const {
100   return Context.getMDKindID(Name);
101 }
102
103 /// getMDKindNames - Populate client supplied SmallVector with the name for
104 /// custom metadata IDs registered in this LLVMContext.   ID #0 is not used,
105 /// so it is filled in as an empty string.
106 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const {
107   return Context.getMDKindNames(Result);
108 }
109
110 void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const {
111   return Context.getOperandBundleTags(Result);
112 }
113
114 //===----------------------------------------------------------------------===//
115 // Methods for easy access to the functions in the module.
116 //
117
118 // getOrInsertFunction - Look up the specified function in the module symbol
119 // table.  If it does not exist, add a prototype for the function and return
120 // it.  This is nice because it allows most passes to get away with not handling
121 // the symbol table directly for this common task.
122 //
123 Constant *Module::getOrInsertFunction(StringRef Name, FunctionType *Ty,
124                                       AttributeList AttributeList) {
125   // See if we have a definition for the specified function already.
126   GlobalValue *F = getNamedValue(Name);
127   if (!F) {
128     // Nope, add it
129     Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
130     if (!New->isIntrinsic())       // Intrinsics get attrs set on construction
131       New->setAttributes(AttributeList);
132     FunctionList.push_back(New);
133     return New;                    // Return the new prototype.
134   }
135
136   // If the function exists but has the wrong type, return a bitcast to the
137   // right type.
138   if (F->getType() != PointerType::getUnqual(Ty))
139     return ConstantExpr::getBitCast(F, PointerType::getUnqual(Ty));
140
141   // Otherwise, we just found the existing function or a prototype.
142   return F;
143 }
144
145 Constant *Module::getOrInsertFunction(StringRef Name,
146                                       FunctionType *Ty) {
147   return getOrInsertFunction(Name, Ty, AttributeList());
148 }
149
150 // getFunction - Look up the specified function in the module symbol table.
151 // If it does not exist, return null.
152 //
153 Function *Module::getFunction(StringRef Name) const {
154   return dyn_cast_or_null<Function>(getNamedValue(Name));
155 }
156
157 //===----------------------------------------------------------------------===//
158 // Methods for easy access to the global variables in the module.
159 //
160
161 /// getGlobalVariable - Look up the specified global variable in the module
162 /// symbol table.  If it does not exist, return null.  The type argument
163 /// should be the underlying type of the global, i.e., it should not have
164 /// the top-level PointerType, which represents the address of the global.
165 /// If AllowLocal is set to true, this function will return types that
166 /// have an local. By default, these types are not returned.
167 ///
168 GlobalVariable *Module::getGlobalVariable(StringRef Name,
169                                           bool AllowLocal) const {
170   if (GlobalVariable *Result =
171       dyn_cast_or_null<GlobalVariable>(getNamedValue(Name)))
172     if (AllowLocal || !Result->hasLocalLinkage())
173       return Result;
174   return nullptr;
175 }
176
177 /// getOrInsertGlobal - Look up the specified global in the module symbol table.
178 ///   1. If it does not exist, add a declaration of the global and return it.
179 ///   2. Else, the global exists but has the wrong type: return the function
180 ///      with a constantexpr cast to the right type.
181 ///   3. Finally, if the existing global is the correct declaration, return the
182 ///      existing global.
183 Constant *Module::getOrInsertGlobal(StringRef Name, Type *Ty) {
184   // See if we have a definition for the specified global already.
185   GlobalVariable *GV = dyn_cast_or_null<GlobalVariable>(getNamedValue(Name));
186   if (!GV) {
187     // Nope, add it
188     GlobalVariable *New =
189       new GlobalVariable(*this, Ty, false, GlobalVariable::ExternalLinkage,
190                          nullptr, Name);
191      return New;                    // Return the new declaration.
192   }
193
194   // If the variable exists but has the wrong type, return a bitcast to the
195   // right type.
196   Type *GVTy = GV->getType();
197   PointerType *PTy = PointerType::get(Ty, GVTy->getPointerAddressSpace());
198   if (GVTy != PTy)
199     return ConstantExpr::getBitCast(GV, PTy);
200
201   // Otherwise, we just found the existing function or a prototype.
202   return GV;
203 }
204
205 //===----------------------------------------------------------------------===//
206 // Methods for easy access to the global variables in the module.
207 //
208
209 // getNamedAlias - Look up the specified global in the module symbol table.
210 // If it does not exist, return null.
211 //
212 GlobalAlias *Module::getNamedAlias(StringRef Name) const {
213   return dyn_cast_or_null<GlobalAlias>(getNamedValue(Name));
214 }
215
216 GlobalIFunc *Module::getNamedIFunc(StringRef Name) const {
217   return dyn_cast_or_null<GlobalIFunc>(getNamedValue(Name));
218 }
219
220 /// getNamedMetadata - Return the first NamedMDNode in the module with the
221 /// specified name. This method returns null if a NamedMDNode with the
222 /// specified name is not found.
223 NamedMDNode *Module::getNamedMetadata(const Twine &Name) const {
224   SmallString<256> NameData;
225   StringRef NameRef = Name.toStringRef(NameData);
226   return static_cast<StringMap<NamedMDNode*> *>(NamedMDSymTab)->lookup(NameRef);
227 }
228
229 /// getOrInsertNamedMetadata - Return the first named MDNode in the module
230 /// with the specified name. This method returns a new NamedMDNode if a
231 /// NamedMDNode with the specified name is not found.
232 NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) {
233   NamedMDNode *&NMD =
234     (*static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab))[Name];
235   if (!NMD) {
236     NMD = new NamedMDNode(Name);
237     NMD->setParent(this);
238     NamedMDList.push_back(NMD);
239   }
240   return NMD;
241 }
242
243 /// eraseNamedMetadata - Remove the given NamedMDNode from this module and
244 /// delete it.
245 void Module::eraseNamedMetadata(NamedMDNode *NMD) {
246   static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab)->erase(NMD->getName());
247   NamedMDList.erase(NMD->getIterator());
248 }
249
250 bool Module::isValidModFlagBehavior(Metadata *MD, ModFlagBehavior &MFB) {
251   if (ConstantInt *Behavior = mdconst::dyn_extract_or_null<ConstantInt>(MD)) {
252     uint64_t Val = Behavior->getLimitedValue();
253     if (Val >= ModFlagBehaviorFirstVal && Val <= ModFlagBehaviorLastVal) {
254       MFB = static_cast<ModFlagBehavior>(Val);
255       return true;
256     }
257   }
258   return false;
259 }
260
261 /// getModuleFlagsMetadata - Returns the module flags in the provided vector.
262 void Module::
263 getModuleFlagsMetadata(SmallVectorImpl<ModuleFlagEntry> &Flags) const {
264   const NamedMDNode *ModFlags = getModuleFlagsMetadata();
265   if (!ModFlags) return;
266
267   for (const MDNode *Flag : ModFlags->operands()) {
268     ModFlagBehavior MFB;
269     if (Flag->getNumOperands() >= 3 &&
270         isValidModFlagBehavior(Flag->getOperand(0), MFB) &&
271         dyn_cast_or_null<MDString>(Flag->getOperand(1))) {
272       // Check the operands of the MDNode before accessing the operands.
273       // The verifier will actually catch these failures.
274       MDString *Key = cast<MDString>(Flag->getOperand(1));
275       Metadata *Val = Flag->getOperand(2);
276       Flags.push_back(ModuleFlagEntry(MFB, Key, Val));
277     }
278   }
279 }
280
281 /// Return the corresponding value if Key appears in module flags, otherwise
282 /// return null.
283 Metadata *Module::getModuleFlag(StringRef Key) const {
284   SmallVector<Module::ModuleFlagEntry, 8> ModuleFlags;
285   getModuleFlagsMetadata(ModuleFlags);
286   for (const ModuleFlagEntry &MFE : ModuleFlags) {
287     if (Key == MFE.Key->getString())
288       return MFE.Val;
289   }
290   return nullptr;
291 }
292
293 /// getModuleFlagsMetadata - Returns the NamedMDNode in the module that
294 /// represents module-level flags. This method returns null if there are no
295 /// module-level flags.
296 NamedMDNode *Module::getModuleFlagsMetadata() const {
297   return getNamedMetadata("llvm.module.flags");
298 }
299
300 /// getOrInsertModuleFlagsMetadata - Returns the NamedMDNode in the module that
301 /// represents module-level flags. If module-level flags aren't found, it
302 /// creates the named metadata that contains them.
303 NamedMDNode *Module::getOrInsertModuleFlagsMetadata() {
304   return getOrInsertNamedMetadata("llvm.module.flags");
305 }
306
307 /// addModuleFlag - Add a module-level flag to the module-level flags
308 /// metadata. It will create the module-level flags named metadata if it doesn't
309 /// already exist.
310 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
311                            Metadata *Val) {
312   Type *Int32Ty = Type::getInt32Ty(Context);
313   Metadata *Ops[3] = {
314       ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Behavior)),
315       MDString::get(Context, Key), Val};
316   getOrInsertModuleFlagsMetadata()->addOperand(MDNode::get(Context, Ops));
317 }
318 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
319                            Constant *Val) {
320   addModuleFlag(Behavior, Key, ConstantAsMetadata::get(Val));
321 }
322 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
323                            uint32_t Val) {
324   Type *Int32Ty = Type::getInt32Ty(Context);
325   addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val));
326 }
327 void Module::addModuleFlag(MDNode *Node) {
328   assert(Node->getNumOperands() == 3 &&
329          "Invalid number of operands for module flag!");
330   assert(mdconst::hasa<ConstantInt>(Node->getOperand(0)) &&
331          isa<MDString>(Node->getOperand(1)) &&
332          "Invalid operand types for module flag!");
333   getOrInsertModuleFlagsMetadata()->addOperand(Node);
334 }
335
336 void Module::setDataLayout(StringRef Desc) {
337   DL.reset(Desc);
338 }
339
340 void Module::setDataLayout(const DataLayout &Other) { DL = Other; }
341
342 const DataLayout &Module::getDataLayout() const { return DL; }
343
344 DICompileUnit *Module::debug_compile_units_iterator::operator*() const {
345   return cast<DICompileUnit>(CUs->getOperand(Idx));
346 }
347 DICompileUnit *Module::debug_compile_units_iterator::operator->() const {
348   return cast<DICompileUnit>(CUs->getOperand(Idx));
349 }
350
351 void Module::debug_compile_units_iterator::SkipNoDebugCUs() {
352   while (CUs && (Idx < CUs->getNumOperands()) &&
353          ((*this)->getEmissionKind() == DICompileUnit::NoDebug))
354     ++Idx;
355 }
356
357 //===----------------------------------------------------------------------===//
358 // Methods to control the materialization of GlobalValues in the Module.
359 //
360 void Module::setMaterializer(GVMaterializer *GVM) {
361   assert(!Materializer &&
362          "Module already has a GVMaterializer.  Call materializeAll"
363          " to clear it out before setting another one.");
364   Materializer.reset(GVM);
365 }
366
367 Error Module::materialize(GlobalValue *GV) {
368   if (!Materializer)
369     return Error::success();
370
371   return Materializer->materialize(GV);
372 }
373
374 Error Module::materializeAll() {
375   if (!Materializer)
376     return Error::success();
377   std::unique_ptr<GVMaterializer> M = std::move(Materializer);
378   return M->materializeModule();
379 }
380
381 Error Module::materializeMetadata() {
382   if (!Materializer)
383     return Error::success();
384   return Materializer->materializeMetadata();
385 }
386
387 //===----------------------------------------------------------------------===//
388 // Other module related stuff.
389 //
390
391 std::vector<StructType *> Module::getIdentifiedStructTypes() const {
392   // If we have a materializer, it is possible that some unread function
393   // uses a type that is currently not visible to a TypeFinder, so ask
394   // the materializer which types it created.
395   if (Materializer)
396     return Materializer->getIdentifiedStructTypes();
397
398   std::vector<StructType *> Ret;
399   TypeFinder SrcStructTypes;
400   SrcStructTypes.run(*this, true);
401   Ret.assign(SrcStructTypes.begin(), SrcStructTypes.end());
402   return Ret;
403 }
404
405 // dropAllReferences() - This function causes all the subelements to "let go"
406 // of all references that they are maintaining.  This allows one to 'delete' a
407 // whole module at a time, even though there may be circular references... first
408 // all references are dropped, and all use counts go to zero.  Then everything
409 // is deleted for real.  Note that no operations are valid on an object that
410 // has "dropped all references", except operator delete.
411 //
412 void Module::dropAllReferences() {
413   for (Function &F : *this)
414     F.dropAllReferences();
415
416   for (GlobalVariable &GV : globals())
417     GV.dropAllReferences();
418
419   for (GlobalAlias &GA : aliases())
420     GA.dropAllReferences();
421
422   for (GlobalIFunc &GIF : ifuncs())
423     GIF.dropAllReferences();
424 }
425
426 unsigned Module::getNumberRegisterParameters() const {
427   auto *Val =
428       cast_or_null<ConstantAsMetadata>(getModuleFlag("NumRegisterParameters"));
429   if (!Val)
430     return 0;
431   return cast<ConstantInt>(Val->getValue())->getZExtValue();
432 }
433
434 unsigned Module::getDwarfVersion() const {
435   auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("Dwarf Version"));
436   if (!Val)
437     return 0;
438   return cast<ConstantInt>(Val->getValue())->getZExtValue();
439 }
440
441 unsigned Module::getCodeViewFlag() const {
442   auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("CodeView"));
443   if (!Val)
444     return 0;
445   return cast<ConstantInt>(Val->getValue())->getZExtValue();
446 }
447
448 Comdat *Module::getOrInsertComdat(StringRef Name) {
449   auto &Entry = *ComdatSymTab.insert(std::make_pair(Name, Comdat())).first;
450   Entry.second.Name = &Entry;
451   return &Entry.second;
452 }
453
454 PICLevel::Level Module::getPICLevel() const {
455   auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("PIC Level"));
456
457   if (!Val)
458     return PICLevel::NotPIC;
459
460   return static_cast<PICLevel::Level>(
461       cast<ConstantInt>(Val->getValue())->getZExtValue());
462 }
463
464 void Module::setPICLevel(PICLevel::Level PL) {
465   addModuleFlag(ModFlagBehavior::Error, "PIC Level", PL);
466 }
467
468 PIELevel::Level Module::getPIELevel() const {
469   auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("PIE Level"));
470
471   if (!Val)
472     return PIELevel::Default;
473
474   return static_cast<PIELevel::Level>(
475       cast<ConstantInt>(Val->getValue())->getZExtValue());
476 }
477
478 void Module::setPIELevel(PIELevel::Level PL) {
479   addModuleFlag(ModFlagBehavior::Error, "PIE Level", PL);
480 }
481
482 void Module::setProfileSummary(Metadata *M) {
483   addModuleFlag(ModFlagBehavior::Error, "ProfileSummary", M);
484 }
485
486 Metadata *Module::getProfileSummary() {
487   return getModuleFlag("ProfileSummary");
488 }
489
490 void Module::setOwnedMemoryBuffer(std::unique_ptr<MemoryBuffer> MB) {
491   OwnedMemoryBuffer = std::move(MB);
492 }
493
494 GlobalVariable *llvm::collectUsedGlobalVariables(
495     const Module &M, SmallPtrSetImpl<GlobalValue *> &Set, bool CompilerUsed) {
496   const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used";
497   GlobalVariable *GV = M.getGlobalVariable(Name);
498   if (!GV || !GV->hasInitializer())
499     return GV;
500
501   const ConstantArray *Init = cast<ConstantArray>(GV->getInitializer());
502   for (Value *Op : Init->operands()) {
503     GlobalValue *G = cast<GlobalValue>(Op->stripPointerCastsNoFollowAliases());
504     Set.insert(G);
505   }
506   return GV;
507 }