Home
last modified time | relevance | path

Searched refs:Module (Results 1 – 25 of 1487) sorted by relevance

12345678910>>...60

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DModuleMap.h95 Module *SourceModule = nullptr;
99 llvm::SmallVector<std::unique_ptr<Module>, 8> PendingSubmodules;
102 llvm::StringMap<Module *> Modules;
106 llvm::DenseMap<const IdentifierInfo *, Module *> CachedModuleLoads;
109 llvm::SmallVector<Module*, 2> ShadowModules;
121 void resolveLinkAsDependencies(Module *Mod);
125 void addLinkAsDependency(Module *Mod);
148 static ModuleHeaderRole headerKindToRole(Module::HeaderKind Kind);
151 static Module::HeaderKind headerRoleToKind(ModuleHeaderRole Role);
156 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage;
[all …]
H A DModuleLoader.h49 llvm::PointerIntPair<Module *, 2, LoadResultKind> Storage;
52 ModuleLoadResult(Module *M) : Storage(M, Normal) {} in ModuleLoadResult()
55 operator Module *() const { return Storage.getPointer(); }
119 Module::NameVisibilityKind Visibility,
133 virtual void makeModuleVisible(Module *Mod,
134 Module::NameVisibilityKind Visibility,
164 Module::NameVisibilityKind Visibility, in loadModule()
172 void makeModuleVisible(Module *Mod, Module::NameVisibilityKind Visibility, in makeModuleVisible()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DModule.cpp74 Module::Module(StringRef MID, LLVMContext &C) in Module() function in Module
81 Module::~Module() { in ~Module()
91 Module::createRNG(const StringRef Name) const { in createRNG()
113 GlobalValue *Module::getNamedValue(StringRef Name) const { in getNamedValue()
119 unsigned Module::getMDKindID(StringRef Name) const { in getMDKindID()
126 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { in getMDKindNames()
130 void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const { in getOperandBundleTags()
143 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty, in getOrInsertFunction()
167 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) { in getOrInsertFunction()
174 Function *Module::getFunction(StringRef Name) const { in getFunction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DBugDriver.h30 class Module; variable
52 std::unique_ptr<Module> Program; // The raw program, linked together
130 Module &getProgram() const { return *Program; } in getProgram()
133 std::unique_ptr<Module> swapProgramIn(std::unique_ptr<Module> M);
146 void setNewProgram(std::unique_ptr<Module> M);
150 Error compileProgram(Module &M) const;
154 Expected<std::string> executeProgram(const Module &Program,
164 executeProgramSafely(const Module &Program,
170 Error createReferenceFile(Module &M, const std::string &Filename =
177 Expected<bool> diffProgram(const Module &Program,
[all …]
H A DMiscompilation.cpp137 std::unique_ptr<Module> PrefixOutput = in doTest()
154 std::unique_ptr<Module> OriginalInput = in doTest()
188 Expected<bool> (*TestFn)(BugDriver &, std::unique_ptr<Module>,
189 std::unique_ptr<Module>);
194 std::unique_ptr<Module>, in ReduceMiscompilingFunctions() argument
195 std::unique_ptr<Module>)) in ReduceMiscompilingFunctions()
227 static Expected<std::unique_ptr<Module>> testMergedProgram(const BugDriver &BD, in testMergedProgram()
228 const Module &M1, in testMergedProgram()
229 const Module &M2, in testMergedProgram()
267 std::unique_ptr<Module> Clone = CloneModule(BD.getProgram(), VMap); in TestFuncs()
[all …]
H A DExtractFunction.cpp83 std::unique_ptr<Module>
87 std::unique_ptr<Module> Clone = CloneModule(*Program); in deleteInstructionFromProgram()
92 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn in deleteInstructionFromProgram()
94 RFI, std::distance(PF->getParent()->begin(), Module::const_iterator(PF))); in deleteInstructionFromProgram()
120 std::unique_ptr<Module> New = runPassesOn(Clone.get(), Passes); in deleteInstructionFromProgram()
128 std::unique_ptr<Module>
129 BugDriver::performFinalCleanups(std::unique_ptr<Module> M, in performFinalCleanups()
132 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) in performFinalCleanups()
143 std::unique_ptr<Module> New = runPassesOn(M.get(), CleanupPasses); in performFinalCleanups()
151 std::unique_ptr<Module> BugDriver::extractLoop(Module *M) { in extractLoop()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DModule.h96 class Module {
124 Module *Parent;
158 std::vector<Module *> SubModules;
175 mutable llvm::DenseSet<const Module*> VisibleModulesCache;
244 Module *ShadowingModule = nullptr;
327 llvm::SmallSetVector<Module *, 2> Imports;
333 using ExportDecl = llvm::PointerIntPair<Module *, 1, bool>;
357 SmallVector<Module *, 2> DirectUses;
407 Module *Other;
417 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DModule.cpp37 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, in Module() function in Module
61 Module::~Module() { in ~Module()
130 bool Module::isUnimportable(const LangOptions &LangOpts, in isUnimportable()
132 Module *&ShadowingModule) const { in isUnimportable()
136 for (const Module *Current = this; Current; Current = Current->Parent) { in isUnimportable()
153 bool Module::isAvailable(const LangOptions &LangOpts, const TargetInfo &Target, in isAvailable()
156 Module *&ShadowingModule) const { in isAvailable()
165 for (const Module *Current = this; Current; Current = Current->Parent) { in isAvailable()
175 bool Module::isSubModuleOf(const Module *Other) const { in isSubModuleOf()
183 const Module *Module::getTopLevelModule() const { in getTopLevelModule()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/transforms/ipo/
H A Dllvm_ipo.ml10 : [ `Module ] Llvm.PassManager.t -> unit
13 : [ `Module ] Llvm.PassManager.t -> unit
16 : [ `Module ] Llvm.PassManager.t -> unit
19 : [ `Module ] Llvm.PassManager.t -> unit
22 : [ `Module ] Llvm.PassManager.t -> unit
25 : [ `Module ] Llvm.PassManager.t -> unit
28 : [ `Module ] Llvm.PassManager.t -> unit
31 : [ `Module ] Llvm.PassManager.t -> unit
34 : [ `Module ] Llvm.PassManager.t -> unit
37 : [ `Module ] Llvm.PassManager.t -> unit
[all …]
H A Dllvm_ipo.mli16 : [ `Module ] Llvm.PassManager.t -> unit
21 : [ `Module ] Llvm.PassManager.t -> unit
26 : [ `Module ] Llvm.PassManager.t -> unit
31 : [ `Module ] Llvm.PassManager.t -> unit
36 : [ `Module ] Llvm.PassManager.t -> unit
41 : [ `Module ] Llvm.PassManager.t -> unit
46 : [ `Module ] Llvm.PassManager.t -> unit
51 : [ `Module ] Llvm.PassManager.t -> unit
56 : [ `Module ] Llvm.PassManager.t -> unit
61 : [ `Module ] Llvm.PassManager.t -> unit
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DModuleMap.cpp58 void ModuleMap::resolveLinkAsDependencies(Module *Mod) { in resolveLinkAsDependencies()
69 void ModuleMap::addLinkAsDependency(Module *Mod) { in addLinkAsDependency()
76 Module::HeaderKind ModuleMap::headerRoleToKind(ModuleHeaderRole Role) { in headerRoleToKind()
80 return Module::HK_Normal; in headerRoleToKind()
82 return Module::HK_Private; in headerRoleToKind()
84 return Module::HK_Textual; in headerRoleToKind()
86 return Module::HK_PrivateTextual; in headerRoleToKind()
91 ModuleMap::headerKindToRole(Module::HeaderKind Kind) { in headerKindToRole()
93 case Module::HK_Normal: in headerKindToRole()
95 case Module::HK_Private: in headerKindToRole()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DModuleUtils.h23 class Module; variable
35 void appendToGlobalCtors(Module &M, Function *F, int Priority,
39 void appendToGlobalDtors(Module &M, Function *F, int Priority,
42 FunctionCallee declareSanitizerInitFunction(Module &M, StringRef InitName,
47 Function *createSanitizerCtor(Module &M, StringRef CtorName);
54 Module &M, StringRef CtorName, StringRef InitName,
66 Module &M, StringRef CtorName, StringRef InitName,
74 Function *getOrCreateInitFunction(Module &M, StringRef Name);
78 bool nameUnamedGlobals(Module &M);
81 void appendToUsed(Module &M, ArrayRef<GlobalValue *> Values);
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/utilities/
H A Duttrack.c76 const char *Module,
83 const char *Module,
143 const char *Module, in AcpiUtAllocateAndTrack() argument
154 ACPI_WARNING ((Module, Line, in AcpiUtAllocateAndTrack()
164 ACPI_WARNING ((Module, Line, in AcpiUtAllocateAndTrack()
171 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line); in AcpiUtAllocateAndTrack()
212 const char *Module, in AcpiUtAllocateZeroedAndTrack() argument
223 ACPI_WARNING ((Module, Line, in AcpiUtAllocateZeroedAndTrack()
234 ACPI_ERROR ((Module, Line, in AcpiUtAllocateZeroedAndTrack()
240 ACPI_MEM_CALLOC, Component, Module, Line); in AcpiUtAllocateZeroedAndTrack()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaModule.cpp22 static void checkModuleImportContext(Sema &S, Module *M, in checkModuleImportContext()
60 ModuleScopes.back().Module->Kind == Module::GlobalModuleFragment) { in ActOnGlobalModuleFragmentDecl()
78 ModuleScopes.back().Module = GlobalModule; in ActOnGlobalModuleFragmentDecl()
131 ModuleScopes.back().Module->isModulePurview()) { in ActOnModuleDecl()
133 Diag(VisibleModules.getImportLoc(ModuleScopes.back().Module), in ActOnModuleDecl()
139 Module *GlobalModuleFragment = nullptr; in ActOnModuleDecl()
141 ModuleScopes.back().Module->Kind == Module::GlobalModuleFragment) in ActOnModuleDecl()
142 GlobalModuleFragment = ModuleScopes.back().Module; in ActOnModuleDecl()
180 Module *Mod; in ActOnModuleDecl()
208 Module::AllVisible, in ActOnModuleDecl()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddmodule.c26 AggregateDeclaration *Module::moduleinfo;
28 Module *Module::rootModule;
29 DsymbolTable *Module::modules;
30 Modules Module::amodules;
32 Dsymbols Module::deferred; // deferred Dsymbol's needing semantic() run on them
33 Dsymbols Module::deferred2; // deferred Dsymbol's needing semantic2() run on them
34 Dsymbols Module::deferred3; // deferred Dsymbol's needing semantic3() run on them
35 unsigned Module::dprogress;
40 void Module::_init() in _init()
45 Module::Module(const char *filename, Identifier *ident, int doDocComment, int doHdrGen) in Module() function
[all …]
H A Dmodule.h35 Module *mod; // != NULL if isPkgMod == PKGmodule
50 Module *isPackageMod();
53 class Module : public Package
56 static Module *rootModule;
96 Module *importedFrom;
116 Module(const char *arg, Identifier *ident, int doDocComment, int doHdrGen);
117 static Module* create(const char *arg, Identifier *ident, int doDocComment, int doHdrGen);
119 static Module *load(Loc loc, Identifiers *packages, Identifier *ident);
125 Module *parse(); // syntactic parse
142 int imports(Module *m);
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h20 class Module; variable
67 MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm,
71 typedef llvm::SmallPtrSet<Module *, 4> ModulePtrSet;
95 void addModule(std::unique_ptr<Module> M) { in addModule()
99 bool removeModule(Module *M) { in removeModule()
104 bool hasModuleBeenAddedButNotLoaded(Module *M) { in hasModuleBeenAddedButNotLoaded()
108 bool hasModuleBeenLoaded(Module *M) { in hasModuleBeenLoaded()
114 bool hasModuleBeenFinalized(Module *M) { in hasModuleBeenFinalized()
118 bool ownsModule(Module* M) { in ownsModule()
123 void markModuleAsLoaded(Module *M) { in markModuleAsLoaded()
[all …]
/netbsd-src/sys/external/isc/libsodium/dist/test/default/
H A Dpre.js.inc2 this['Module'] = Module;
3 Module.test;
5 this['Module'] = Module = {};
8 Module['preRun'] = Module['preRun'] || [];
9 Module['preRun'].push(function() {
15 Module['print'] = function(x) {
/netbsd-src/sys/external/isc/libsodium/dist/dist-build/
H A Demscripten.sh80 var Module;
81 if (typeof Module === 'undefined') {
82 Module = {};
84 var root = Module;
93 Module['TOTAL_MEMORY'] = root['sodium']['totalMemory'];
95 var _Module = Module;
96 Module.ready = new Promise(function (resolve, reject) {
97 var Module = _Module;
98 Module.onAbort = reject;
99 Module.onRuntimeInitialized = resolve;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h254 void promote(Module &Module, ModuleSummaryIndex &Index,
260 void emitImports(Module &Module, StringRef OutputName,
268 void crossModuleImport(Module &Module, ModuleSummaryIndex &Index,
275 Module &Module, ModuleSummaryIndex &Index,
282 void internalize(Module &Module, ModuleSummaryIndex &Index,
288 void optimize(Module &Module);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-link/
H A Dllvm-link.cpp119 static std::unique_ptr<Module> loadFile(const char *argv0, in loadFile()
126 std::unique_ptr<Module> Result; in loadFile()
146 static std::unique_ptr<Module> loadArFile(const char *Argv0, in loadArFile()
149 std::unique_ptr<Module> Result(new Module("ArchiveModule", Context)); in loadArFile()
190 std::unique_ptr<Module> M; in loadArFile()
219 StringMap<std::unique_ptr<Module>> ModuleMap;
222 std::function<std::unique_ptr<Module>(const char *argv0,
228 ModuleLazyLoaderCache(std::function<std::unique_ptr<Module>( in ModuleLazyLoaderCache()
234 Module &operator()(const char *argv0, const std::string &FileName);
236 std::unique_ptr<Module> takeModule(const std::string &FileName) { in takeModule()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp96 static void rewriteComdat(Module &M, GlobalObject *GO, in rewriteComdat()
113 ValueType *(Module::*Get)(StringRef) const>
124 bool performOnModule(Module &M) override;
134 ValueType *(Module::*Get)(StringRef) const>
135 bool ExplicitRewriteDescriptor<DT, ValueType, Get>::performOnModule(Module &M) { in performOnModule()
154 ValueType *(Module::*Get)(StringRef) const,
156 (Module::*Iterator)()>
166 bool performOnModule(Module &M) override;
176 ValueType *(Module::*Get)(StringRef) const,
178 (Module::*Iterator)()>
[all …]
/netbsd-src/sys/arch/m68k/060sp/dist/
H A Dreadme41 fpsp.sa Full FP Kernel Module - hex image
42 fpsp.s Full FP Kernel Module - source code
43 fpsp.doc Full FP Kernel Module - on-line documentation
45 pfpsp.sa Partial FP Kernel Module - hex image
46 pfpsp.s Partial FP Kernel Module - source code
48 fplsp.sa FP Library Module - hex image
49 fplsp.s FP Library Module - source code
50 fplsp.doc FP Library Module - on-line documentation
52 isp.sa Integer Unimplemented Kernel Module - hex image
53 isp.s Integer Unimplemented Kernel Module - source code
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
H A DLinker.h16 class Module; variable
34 Linker(Module &M);
46 bool linkInModule(std::unique_ptr<Module> Src, unsigned Flags = Flags::None,
47 std::function<void(Module &, const StringSet<> &)>
50 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
52 std::function<void(Module &, const StringSet<> &)>
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmodule.h36 Module *mod; // != NULL if isPkgMod == PKGmodule
49 Module *isPackageMod();
52 class Module : public Package
55 static Module *rootModule;
98 Module *importedFrom;
118 static Module* create(const char *arg, Identifier *ident, int doDocComment, int doHdrGen);
120 static Module *load(const Loc &loc, Identifiers *packages, Identifier *ident);
124 Module *parse(); // syntactic parse
134 int imports(Module *m);
158 Module *isModule() { return this; } in isModule()

12345678910>>...60