Home | History | Annotate | Download | only in LTO

Lines Matching refs:TheModule

34   void findInModule(const Module &TheModule) {
35 initializeLibCalls(TheModule);
36 for (const Function &F : TheModule)
38 for (const GlobalVariable &GV : TheModule.globals())
40 for (const GlobalAlias &GA : TheModule.aliases())
59 void initializeLibCalls(const Module &TheModule) {
74 for (const Function &F : TheModule) {
115 void llvm::updateCompilerUsed(Module &TheModule, const TargetMachine &TM,
119 .findInModule(TheModule);
124 llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(TheModule.getContext());
132 GlobalVariable *LLVMUsed = TheModule.getGlobalVariable("llvm.compiler.used");
142 TheModule, ATy, false, llvm::GlobalValue::AppendingLinkage,