HomeSort by: relevance | last modified time | path
    Searched refs:getModule (Results 1 - 25 of 244) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
Trace.cpp 31 Module *Trace::getModule() const {
41 (*i)->printAsOperand(O, true, getModule());
MemoryLocation.cpp 40 const auto &DL = LI->getModule()->getDataLayout();
50 const auto &DL = SI->getModule()->getDataLayout();
69 const auto &DL = CXI->getModule()->getDataLayout();
80 const auto &DL = RMWI->getModule()->getDataLayout();
156 const DataLayout &DL = II->getModule()->getDataLayout();
CallGraphSCCPass.cpp 127 Module &M = CG.getModule();
473 uint64_t RefHash = StructuralHash(CG.getModule());
483 if (!LocalChanged && (RefHash != StructuralHash(CG.getModule()))) {
564 Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule());
579 Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule());
699 SCC.getCallGraph().getModule().print(OS, nullptr);
720 SCC.getCallGraph().getModule().print(OS, nullptr);
754 SCC.getCallGraph().getModule().getContext().getOptPassGate();
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
ExternalPreprocessorSource.h 42 virtual Module *getModule(unsigned ModuleID) = 0;
ModuleMap.h 170 Module *getModule() const { return Storage.getPointer(); }
177 return getModule()->isAvailable();
183 (M && M->getTopLevelModule() == getModule()->getTopLevelModule());
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUMachineModuleInfo.cpp 21 LLVMContext &CTX = MMI.getModule()->getContext();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeNVPTX.cpp 38 &CGF.CGM.getModule(), llvm::Intrinsic::nvvm_read_ptx_sreg_warpsize),
46 &CGF.CGM.getModule(), llvm::Intrinsic::nvvm_read_ptx_sreg_tid_x);
54 &CGF.CGM.getModule(), llvm::Intrinsic::nvvm_read_ptx_sreg_ntid_x);
CGOpenMPRuntimeAMDGCN.cpp 51 llvm::Module *M = &CGF.CGM.getModule();
57 llvm::GlobalVariable::ExternalLinkage, LocSize, &CGF.CGM.getModule());
SanitizerMetadata.cpp 60 CGM.getModule().getOrInsertNamedMetadata("llvm.asan.globals");
88 I->setMetadata(CGM.getModule().getMDKindID("nosanitize"),
CodeGenModule.cpp 186 !getModule().getSourceFileName().empty()) {
187 std::string Path = getModule().getSourceFileName();
503 getModule().setProfileSummary(
514 CodeGenPGO(*this).setValueProfilingFlag(getModule());
548 auto *NMD = getModule().getOrInsertNamedMetadata("llvm.dependent-libraries");
555 getModule().addModuleFlag(llvm::Module::Error, "NumRegisterParameters",
559 getModule().addModuleFlag(llvm::Module::Max, "Dwarf Version",
564 getModule().addModuleFlag(llvm::Module::Max, "DWARF64", 1);
568 getModule().setSemanticInterposition(1);
572 getModule().addModuleFlag(llvm::Module::Warning, "CodeView", 1)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
EHContGuardCatchret.cpp 66 if (!MF.getMMI().getModule()->getModuleFlag("ehcontguard"))
CFGuardLongjmp.cpp 64 if (!MF.getMMI().getModule()->getModuleFlag("cfguard"))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSlotTracker.h 60 const Module *getModule() const { return M; }
MatrixBuilder.h 35 Module *getModule() { return B.GetInsertBlock()->getParent()->getParent(); }
80 getModule(), Intrinsic::matrix_column_major_load, OverloadedTypes);
103 getModule(), Intrinsic::matrix_column_major_store, OverloadedTypes);
123 getModule(), Intrinsic::matrix_transpose, OverloadedTypes);
144 getModule(), Intrinsic::matrix_multiply, OverloadedTypes);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
AddressSanitizerCommon.h 37 const DataLayout &DL = I->getModule()->getDataLayout();
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
LTOModule.h 115 const Module &getModule() const { return *Mod; }
116 Module &getModule() { return *Mod; }
122 return getModule().getTargetTriple();
127 getModule().setTargetTriple(Triple);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
IRMover.h 78 Module &getModule() { return Composite; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AIXException.cpp 48 const DataLayout &DL = MMI->getModule()->getDataLayout();
WinCFGuard.cpp 87 const Module *M = Asm->MMI->getModule();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/CFGuard/
CFGuard.cpp 160 assert(Triple(CB->getModule()->getTargetTriple()).isOSWindows() &&
184 assert(Triple(CB->getModule()->getTargetTriple()).isOSWindows() &&
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
InjectTLIMappings.cpp 45 Module *M = CI.getModule();
89 Module *M = CI.getModule();
AMDGPUEmitPrintf.cpp 64 auto M = Builder.GetInsertBlock()->getModule();
75 auto M = Builder.GetInsertBlock()->getModule();
97 Module *M = Prev->getModule();
167 auto M = Builder.GetInsertBlock()->getModule();
AssumeBundleBuilder.cpp 253 unsigned DerefSize = MemInst->getModule()
288 AssumeBuilderState Builder(I->getModule());
297 AssumeBuilderState Builder(I->getModule(), I, AC, DT);
310 AssumeBuilderState Builder(CtxI->getModule(), CtxI, AC, DT);
320 AssumeBuilderState Builder(Assume->getModule(), Assume, AC, DT);
321 RK = canonicalizedKnowledge(RK, Assume->getModule()->getDataLayout());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
Trace.h 52 /// getModule - Return this Module that contains this trace's parent
54 Module *getModule () const;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
IndirectThunks.h 48 Module &M = const_cast<Module &>(*MMI.getModule());

Completed in 43 milliseconds

1 2 3 4 5 6 7 8 910