Home
last modified time | relevance | path

Searched refs:getModule (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/openbsd/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DReduceIRReferences.cpp41 for (const Function &F : WorkItem.getModule()) { in stripIRFromInstructions()
48 for (const Function &F : WorkItem.getModule()) { in stripIRFromBlocks()
59 for (const Function &F : WorkItem.getModule()) { in stripIRFromFunctions()
H A DReduceFunctionBodies.cpp27 for (auto &F : WorkItem.getModule()) { in extractFunctionBodiesFromModule()
41 for (Function &F : WorkItem.getModule()) { in reduceFunctionData()
H A DReduceMemoryOperations.cpp40 for (Function &F : WorkItem.getModule()) in removeVolatileInModule()
71 for (Function &F : WorkItem.getModule()) in reduceAtomicSyncScopesInModule()
104 for (Function &F : WorkItem.getModule()) in reduceAtomicOrderingInModule()
H A DReduceUsingSimplifyCFG.cpp23 Module &Program = WorkItem.getModule(); in reduceUsingSimplifyCFG()
39 Module &M = WorkItem.getModule(); in reduceConditionals()
H A DReduceMetadata.cpp46 Module &M = WorkItem.getModule(); in reduceNamedMetadataOperands()
73 Module &Program = WorkItem.getModule(); in extractMetadataFromModule()
H A DStripDebugInfo.cpp19 Module &Program = WorkItem.getModule(); in stripDebugInfoImpl()
H A DReduceGlobalVarInitializers.cpp23 for (auto &GV : WorkItem.getModule().globals()) in extractGVsFromModule()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DVectorBuilder.cpp30 Module &VectorBuilder::getModule() const { in getModule() function in llvm::VectorBuilder
31 return *Builder.GetInsertBlock()->getModule(); in getModule()
98 auto *VPDecl = VPIntrinsic::getDeclarationForParams(&getModule(), VPID, in createVectorInstruction()
/openbsd/gnu/llvm/llvm/include/llvm/LTO/legacy/
H A DLTOModule.h115 const Module &getModule() const { return *Mod; } in getModule() function
116 Module &getModule() { return *Mod; } in getModule() function
122 return getModule().getTargetTriple(); in getTargetTriple()
127 getModule().setTargetTriple(Triple); in setTargetTriple()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenModule.cpp553 getModule().setProfileSummary( in Release()
590 getModule(), FT->getPointerTo(), in Release()
828 getModule().addModuleFlag( in Release()
895 getModule().setCodeModel(codeModel); in Release()
900 getModule().setRtLibUseGOT(); in Release()
936 getModule().setStackProtectorGuardReg( in Release()
1629 return getModule().getNamedValue(Name); in GetGlobalValue()
2376 llvm::Module &M = getModule(); in finalizeKCFITypes()
3161 getModule(), Init->getType(), in GetAddrOfMSGuidDecl()
3227 getModule(), Init->getType(), in GetAddrOfTemplateParamObject()
[all …]
H A DMicrosoftCXXABI.cpp386 CGM.getModule(), VDispMapTy, /*isConstant=*/true, Linkage, in getAddrOfVirtualDisplacementMap()
1855 CGM.getModule().getNamedGlobal(VFTableName)) { in getAddrOfVTable()
1876 VTable = new llvm::GlobalVariable(CGM.getModule(), VTableType, in getAddrOfVTable()
1886 C = CGM.getModule().getOrInsertComdat(VFTableName.str()); in getAddrOfVTable()
1907 &CGM.getModule()); in getAddrOfVTable()
2059 ThunkName.str(), &CGM.getModule()); in EmitVirtualMemPtrThunk()
2134 assert(!CGM.getModule().getNamedGlobal(Name) && in getAddrOfVBTable()
2516 if (auto *GV = CGM.getModule().getNamedGlobal(VarName)) in getInitThreadEpochPtr()
2519 CGM.getModule(), CGM.IntTy, in getInitThreadEpochPtr()
3595 if (auto VTable = CGM.getModule().getNamedGlobal(MangledName)) in getTypeInfoVTable()
[all …]
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DTrace.cpp31 Module *Trace::getModule() const { in getModule() function in Trace
41 (*i)->printAsOperand(O, true, getModule()); in print()
H A DCallGraphSCCPass.cpp126 Module &M = CG.getModule(); in RunPassOnSCC()
464 uint64_t RefHash = P->structuralHash(CG.getModule()); in RunAllPassesOnSCC()
474 if (!LocalChanged && (RefHash != P->structuralHash(CG.getModule()))) { in RunAllPassesOnSCC()
555 Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule()); in doInitialization()
570 Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule()); in doFinalization()
690 SCC.getCallGraph().getModule().print(OS, nullptr); in runOnSCC()
711 SCC.getCallGraph().getModule().print(OS, nullptr); in runOnSCC()
745 SCC.getCallGraph().getModule().getContext().getOptPassGate(); in skipSCC()
H A DMemoryLocation.cpp37 const auto &DL = LI->getModule()->getDataLayout(); in get()
46 const auto &DL = SI->getModule()->getDataLayout(); in get()
60 const auto &DL = CXI->getModule()->getDataLayout(); in get()
69 const auto &DL = RMWI->getModule()->getDataLayout(); in get()
168 const DataLayout &DL = II->getModule()->getDataLayout(); in getForArgument()
H A DLoopUnrollAnalyzer.cpp87 const DataLayout &DL = I.getModule()->getDataLayout(); in visitBinaryOperator()
160 const DataLayout &DL = I.getModule()->getDataLayout(); in visitCastInst()
197 const DataLayout &DL = I.getModule()->getDataLayout(); in visitCmpInst()
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DMatrixBuilder.h35 Module *getModule() { return B.GetInsertBlock()->getParent()->getParent(); } in getModule() function
76 getModule(), Intrinsic::matrix_column_major_load, OverloadedTypes);
99 getModule(), Intrinsic::matrix_column_major_store, OverloadedTypes);
119 getModule(), Intrinsic::matrix_transpose, OverloadedTypes);
140 getModule(), Intrinsic::matrix_multiply, OverloadedTypes);
/openbsd/gnu/llvm/llvm/tools/llvm-reduce/
H A DReducerWorkItem.h41 Module &getModule() { return *M; } in getModule() function
42 const Module &getModule() const { return *M; } in getModule() function
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/
H A DAMDGPUEmitPrintf.cpp51 auto M = Builder.GetInsertBlock()->getModule(); in callPrintfBegin()
62 auto M = Builder.GetInsertBlock()->getModule(); in callAppendArgs()
84 Module *M = Prev->getModule(); in getStrlenWithNull()
154 auto M = Builder.GetInsertBlock()->getModule(); in callAppendStringN()
H A DAssumeBundleBuilder.cpp254 unsigned DerefSize = MemInst->getModule() in addAccessedPtr()
288 AssumeBuilderState Builder(I->getModule()); in buildAssumeFromInst()
297 AssumeBuilderState Builder(I->getModule(), I, AC, DT); in salvageKnowledge()
310 AssumeBuilderState Builder(CtxI->getModule(), CtxI, AC, DT); in buildAssumeFromKnowledge()
320 AssumeBuilderState Builder(Assume->getModule(), Assume, AC, DT); in simplifyRetainedKnowledge()
321 RK = canonicalizedKnowledge(RK, Assume->getModule()->getDataLayout()); in simplifyRetainedKnowledge()
H A DInjectTLIMappings.cpp44 Module *M = CI.getModule(); in addVariantDeclaration()
88 Module *M = CI.getModule(); in addMappingsFromTLI()
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExternalASTSourceCallbacks.cpp75 if (clang::Module *module = getModule(id)) in getSourceDescriptor()
80 clang::Module *ClangExternalASTSourceCallbacks::getModule(unsigned id) { in getModule() function in ClangExternalASTSourceCallbacks
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp316 MMI->getModule()->getContext().emitError(LocCookie, Msg.str()); in EmitInlineAsmStr()
402 MMI->getModule()->getContext().diagnose(DiagnosticInfoInlineAsm( in emitInlineAsm()
404 MMI->getModule()->getContext().diagnose( in emitInlineAsm()
410 MMI->getModule()->getContext().diagnose(DiagnosticInfoInlineAsm( in emitInlineAsm()
/openbsd/gnu/llvm/llvm/lib/Linker/
H A DLinkModules.cpp82 Module &DstM = Mover.getModule(); in getLinkedToGlobal()
156 Module &DstM = Mover.getModule(); in computeResultingSelectionKind()
222 Module &DstM = Mover.getModule(); in getComdatResult()
463 Module &DstM = Mover.getModule(); in run()
548 if (Var->getParent() != &Mover.getModule()) in run()
/openbsd/gnu/llvm/llvm/lib/Transforms/CFGuard/
H A DCFGuard.cpp160 assert(Triple(CB->getModule()->getTargetTriple()).isOSWindows() && in insertCFGuardCheck()
190 assert(Triple(CB->getModule()->getTargetTriple()).isOSWindows() && in insertCFGuardDispatch()
/openbsd/gnu/llvm/clang/include/clang/Lex/
H A DExternalPreprocessorSource.h42 virtual Module *getModule(unsigned ModuleID) = 0;

12345678910>>...12