Searched refs:Mod (Results 1 - 25 of 124) sorted by relevance

12345

/external/llvm/unittests/AsmParser/
H A DAsmParserTest.cpp27 auto Mod = parseAssemblyString(Source, Error, Ctx); local
29 EXPECT_TRUE(Mod != nullptr);
40 std::unique_ptr<Module> Mod; local
41 EXPECT_DEATH(Mod = parseAssemblyString(Source.substr(0, Source.size() - 2),
54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping); local
56 EXPECT_TRUE(Mod != nullptr);
72 auto Mod = parseAssemblyString(Source, Error, Ctx); local
73 ASSERT_TRUE(Mod != nullptr);
74 auto &M = *Mod;
137 auto Mod local
[all...]
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp127 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 KiB
130 addMainFunction(Mod.get());
133 if (verifyModule(*Mod)) {
143 Module &M = *Mod;
144 ExecutionEngine *ee = EngineBuilder(std::move(Mod)).create();
149 WriteBitcodeToFile(Mod.get(), *out);
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DMod.java19 * $Id: Mod.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Mod extends Operation class in inherits:Operation
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcCBindings.cpp66 LLVMOrcAddEagerlyCompiledIR(LLVMOrcJITStackRef JITStack, LLVMModuleRef Mod, argument
70 Module *M(unwrap(Mod));
75 LLVMOrcAddLazilyCompiledIR(LLVMOrcJITStackRef JITStack, LLVMModuleRef Mod, argument
79 Module *M(unwrap(Mod));
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp33 Module *Mod; member in class:__anon12042::AMDGPUPromoteAlloca
51 Mod = &M;
78 for (Module::global_iterator I = Mod->global_begin(),
79 E = Mod->global_end(); I != E; ++I) {
91 Mod->getDataLayout().getTypeAllocSize(GVTy->getElementType());
299 WorkGroupSize * Mod->getDataLayout().getTypeAllocSize(AllocaTy);
318 *Mod, GVTy, false, GlobalValue::ExternalLinkage, 0, I.getName(), 0,
322 Type::getInt32Ty(Mod->getContext()), false);
324 AttrSet.addAttribute(Mod->getContext(), 0, Attribute::ReadNone);
326 Value *ReadLocalSizeY = Mod
[all...]
H A DSITypeRewriter.cpp37 Module *Mod; member in class:__anon12080::SITypeRewriter
58 Mod = &M;
130 Function *NewF = Mod->getFunction(Name);
132 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
H A DR600TextureIntrinsicsReplacer.cpp30 Module *Mod; member in class:__anon12063::R600TextureIntrinsicsReplacer
148 Function *F = Mod->getFunction(Name);
150 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod);
214 Mod = &M;
/external/clang/include/clang/Lex/
H A DModuleMap.h210 /// \param Mod The module in which we're resolving the export declaration.
220 resolveExport(Module *Mod, const Module::UnresolvedExportDecl &Unresolved,
227 /// \param Mod The module in which we're resolving the module-id.
234 Module *resolveModuleId(const ModuleId &Id, Module *Mod, bool Complain) const;
430 /// \param Mod The module whose exports should be resolved.
436 bool resolveExports(Module *Mod, bool Complain);
440 /// \param Mod The module whose uses should be resolved.
446 bool resolveUses(Module *Mod, bool Complain);
450 /// \param Mod The module whose conflicts should be resolved.
456 bool resolveConflicts(Module *Mod, boo
[all...]
H A DModuleLoader.h100 virtual void makeModuleVisible(Module *Mod,
/external/llvm/include/llvm-c/
H A DOrcBindings.h91 LLVMOrcAddEagerlyCompiledIR(LLVMOrcJITStackRef JITStack, LLVMModuleRef Mod,
99 LLVMOrcAddLazilyCompiledIR(LLVMOrcJITStackRef JITStack, LLVMModuleRef Mod,
/external/clang/include/clang/Serialization/
H A DASTDeserializationListener.h54 virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod) {} argument
H A DModuleFileExtension.h99 ASTReader &Reader, serialization::ModuleFile &Mod,
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java32 import org.apache.xpath.operations.Mod;
106 (pred instanceof Mod) ||
/external/clang/include/clang/CodeGen/
H A DCodeGenAction.h55 void addLinkModule(llvm::Module *Mod, unsigned LinkFlags) { argument
56 LinkModules.push_back(std::make_pair(LinkFlags, Mod));
/external/clang/lib/Lex/
H A DModuleMap.cpp40 ModuleMap::resolveExport(Module *Mod, argument
50 Module *Context = resolveModuleId(Unresolved.Id, Mod, Complain);
57 Module *ModuleMap::resolveModuleId(const ModuleId &Id, Module *Mod, argument
60 Module *Context = lookupModuleUnqualified(Id[0].first, Mod);
64 << Id[0].first << Mod->getFullModuleName();
575 static void inferFrameworkLink(Module *Mod, const DirectoryEntry *FrameworkDir, argument
577 assert(Mod->IsFramework && "Can only infer linking for framework modules");
578 assert(!Mod->isSubFramework() &&
583 llvm::sys::path::append(LibName, Mod->Name);
592 Mod
771 setUmbrellaHeader(Module *Mod, const FileEntry *UmbrellaHeader, Twine NameAsWritten) argument
779 setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir, Twine NameAsWritten) argument
800 addHeader(Module *Mod, Module::Header Header, ModuleHeaderRole Role, bool Imported) argument
824 excludeHeader(Module *Mod, Module::Header Header) argument
878 resolveExports(Module *Mod, bool Complain) argument
891 resolveUses(Module *Mod, bool Complain) argument
904 resolveConflicts(Module *Mod, bool Complain) argument
1698 appendSubframeworkPaths(Module *Mod, SmallVectorImpl<char> &Path) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP224R1FieldElement.java6 import org.bouncycastle.math.raw.Mod;
99 Mod.invert(SecP224R1Field.P, ((SecP224R1FieldElement)b).x, z);
122 Mod.invert(SecP224R1Field.P, x, z);
141 int[] r = Mod.random(SecP224R1Field.P);
265 Mod.invert(SecP224R1Field.P, e0, t);
H A DSecP192R1FieldElement.java6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP192R1Field.P, ((SecP192R1FieldElement)b).x, z);
121 Mod.invert(SecP192R1Field.P, x, z);
H A DSecP256R1FieldElement.java6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP256R1Field.P, ((SecP256R1FieldElement)b).x, z);
121 Mod.invert(SecP256R1Field.P, x, z);
H A DSecP521R1FieldElement.java6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP521R1Field.P, ((SecP521R1FieldElement)b).x, z);
121 Mod.invert(SecP521R1Field.P, x, z);
/external/clang/include/clang/Basic/
H A DModule.h345 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
346 if (Mod->IsFramework)
/external/clang/examples/clang-interpreter/
H A Dmain.cpp53 static int Execute(std::unique_ptr<llvm::Module> Mod, char *const *envp) { argument
57 llvm::Module &M = *Mod;
60 createExecutionEngine(std::move(Mod), &Error));
/external/clang/lib/Frontend/
H A DTestModuleFileExtension.cpp108 ASTReader &Reader, serialization::ModuleFile &Mod,
114 Reader.getDiags().Report(Mod.ImportLoc,
106 createExtensionReader( const ModuleFileExtensionMetadata &Metadata, ASTReader &Reader, serialization::ModuleFile &Mod, const llvm::BitstreamCursor &Stream) argument
H A DTestModuleFileExtension.h66 ASTReader &Reader, serialization::ModuleFile &Mod,
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp182 std::unique_ptr<Module> Mod(unwrap(M));
184 if (Mod)
187 for (auto &F : *Mod) {
196 EngineBuilder builder(std::move(Mod));
258 Module *Mod = unwrap(M); local
259 unwrap(EE)->removeModule(Mod);
260 *OutMod = wrap(Mod);
/external/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp105 bool LTOCodeGenerator::addModule(LTOModule *Mod) { argument
106 assert(&Mod->getModule().getContext() == &Context &&
109 bool ret = TheLinker->linkInModule(Mod->takeModule());
111 const std::vector<const char *> &undefs = Mod->getAsmUndefinedRefs();
118 void LTOCodeGenerator::setModule(std::unique_ptr<LTOModule> Mod) { argument
119 assert(&Mod->getModule().getContext() == &Context &&
124 MergedModule = Mod->takeModule();
127 const std::vector<const char*> &Undefs = Mod->getAsmUndefinedRefs();
367 const Module &Mod,
380 for (const Function &F : Mod) {
365 accumulateAndSortLibcalls(std::vector<StringRef> &Libcalls, const TargetLibraryInfo& TLI, const Module &Mod, const TargetMachine &TM) argument
[all...]

Completed in 579 milliseconds

12345