Searched refs:getModule (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DTrace.cpp29 Module *Trace::getModule() const { function in class:Trace
40 WriteAsOperand(O, *i, true, getModule());
/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/
H A DGCMetadataPrinter.h58 const Module &getModule() const { return S->getModule(); } function in class:llvm::GCMetadataPrinter
H A DGCStrategy.h87 /// getModule - The module within which the GC strategy is operating.
89 const Module &getModule() const { return *M; } function in class:llvm::GCStrategy
H A DMachineModuleInfo.h194 const Module *getModule() const { return TheModule; } function in class:llvm::MachineModuleInfo
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp71 EmitCamlGlobal(getModule(), AP, "code_begin");
74 EmitCamlGlobal(getModule(), AP, "data_begin");
97 EmitCamlGlobal(getModule(), AP, "code_end");
100 EmitCamlGlobal(getModule(), AP, "data_end");
106 EmitCamlGlobal(getModule(), AP, "frametable");
H A DAsmPrinterInlineAsm.cpp92 LLVMContext &LLVMCtx = MMI->getModule()->getContext();
229 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
401 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
/freebsd-10.1-release/contrib/llvm/include/llvm/
H A DLinker.h36 Module *getModule() const { return Composite; } function in class:llvm::Linker
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestProbeData.java64 buf.append(d.getModule());
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DModuleMap.h93 Module *getModule() const { return Storage.getPointer(); } function in class:clang::ModuleMap::KnownHeader
100 return getRole() != ExcludedHeader && getModule()->isAvailable();
/freebsd-10.1-release/contrib/llvm/include/llvm/Analysis/
H A DTrace.h55 /// getModule - Return this Module that contains this trace's parent
58 Module *getModule () const;
H A DCallGraph.h110 /// getModule - Return the module the call graph corresponds to.
112 Module &getModule() const { return *Mod; } function in class:llvm::CallGraph
/freebsd-10.1-release/contrib/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp186 WriteBitcodeToFile(Linker.getModule(), Out.os());
273 std::string TripleStr = Linker.getModule()->getTargetTriple();
383 Module *mergedModule = Linker.getModule();
450 Module *mergedModule = Linker.getModule();
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp259 getModule().addModuleFlag(llvm::Module::Warning, "Dwarf Version",
267 getModule().addModuleFlag(llvm::Module::Error, "Debug Info Version",
535 return getModule().getNamedValue(Name);
853 new llvm::GlobalVariable(getModule(), ATy, false,
982 getModule().addModuleFlag(llvm::Module::AppendUnique, "Linker Options",
1040 llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(),
1053 llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), s->getType(),
1122 if (llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name))
1129 getModule(), Init->getType(),
1424 MangledName, &getModule());
[all...]
H A DCGObjCMac.cpp2654 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
2677 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
3136 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
3204 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
3211 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
3233 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
3241 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
3251 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
3257 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
3418 &CGM.getModule());
[all...]
H A DCGRTTI.cpp66 VMContext(CGM.getModule().getContext()) { }
144 llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(Name);
148 GV = new llvm::GlobalVariable(CGM.getModule(), CGM.Int8PtrTy,
498 CGM.getModule().getOrInsertGlobal(VTableName, CGM.Int8PtrTy);
522 llvm::GlobalVariable *OldGV = CGM.getModule().getNamedGlobal(Name);
635 new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
H A DMicrosoftVBTables.cpp178 assert(!CGM.getModule().getNamedGlobal(Name) &&
H A DCGDeclCXX.cpp235 Name, &CGM.getModule());
324 getModule(), Int8Ty, false, llvm::GlobalVariable::InternalLinkage,
H A DCGCXX.cpp178 new llvm::GlobalAlias(AliasType, Linkage, "", Aliasee, &getModule());
H A DCGDecl.cpp204 new llvm::GlobalVariable(CGM.getModule(), LTy,
257 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
1134 new llvm::GlobalVariable(CGM.getModule(), constant->getType(), true,
1571 LifetimeStartFn = llvm::Intrinsic::getDeclaration(&getModule(),
1579 LifetimeEndFn = llvm::Intrinsic::getDeclaration(&getModule(),
H A DItaniumCXXABI.cpp1356 guard = new llvm::GlobalVariable(CGM.getModule(), guardTy,
1555 &CGM.getModule());
1586 InitFnName.str(), InitFunc, &CGM.getModule());
1595 &CGM.getModule());
1602 llvm::LLVMContext &Context = CGM.getModule().getContext();
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJIT.h46 Module *getModule() const { return M; } function in class:llvm::JITState
/freebsd-10.1-release/contrib/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp483 Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule());
498 Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule());
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPDirectives.cpp546 return ModMap.findModuleForHeader(EntryOfIncl).getModule();
596 if (RequestingModule == RequestedModule.getModule())
605 RequestedModule.getModule()))
612 violatesUseDeclarations(RequestingModule, RequestedModule.getModule()))
1554 for (Module *Mod = SuggestedModule.getModule(); Mod; Mod = Mod->Parent)
1612 assert((Imported == 0 || Imported == SuggestedModule.getModule()) &&
H A DModuleMap.cpp182 !I->getModule()->isAvailable())
187 if (I->getModule() == RequestingModule)
195 I->getModule()) == RequestingModule->DirectUses.end())
678 llvm::errs() << I->getModule()->getFullModuleName();
747 if (Module *Mod = findModuleForHeader(ExpansionFile).getModule())
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExternalASTSource.h141 virtual Module *getModule(unsigned ID) { return 0; } function in class:clang::ExternalASTSource

Completed in 233 milliseconds

123