Searched defs:Mod (Results 1 - 25 of 95) sorted by relevance

1234

/external/swiftshader/third_party/subzero/src/
H A DIceConverter.h34 Converter(llvm::Module *Mod, GlobalContext *Ctx) argument
35 : Translator(Ctx), Mod(Mod),
44 llvm::Module *getModule() const { return Mod; }
51 llvm::Module *Mod; member in class:Ice::Converter
60 void nameUnnamedGlobalVariables(llvm::Module *Mod);
64 void nameUnnamedFunctions(llvm::Module *Mod);
70 void convertGlobals(llvm::Module *Mod);
73 void installGlobalDeclarations(llvm::Module *Mod);
H A DIceCompiler.cpp133 std::unique_ptr<llvm::Module> Mod = local
139 std::unique_ptr<llvm::Module> Mod = parseIRFile(IRFilename, Err, Context); local
141 if (!Mod) {
148 std::unique_ptr<Converter> Converter(new class Converter(Mod.get(), &Ctx));
/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/include/llvm/DebugInfo/PDB/Raw/
H A DModStream.h43 const ModInfo &Mod; member in class:llvm::pdb::ModStream
/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
173 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping); local
297 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping); local
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DTargetSelect.cpp29 TargetMachine *EngineBuilder::selectTarget(Module *Mod, argument
36 Triple TheTriple(Mod->getTargetTriple());
/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/swiftshader/third_party/LLVM/tools/lli/
H A Dlli.cpp179 Module *Mod = ParseIRFile(InputFile, Err, Context); local
180 if (!Mod) {
188 if (Mod->MaterializeAllPermanently(&ErrorMsg)) {
195 EngineBuilder builder(Mod);
208 Mod->setTargetTriple(Triple::normalize(TargetTriple));
259 Function *EntryFn = Mod->getFunction(EntryFunc);
267 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
278 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DMod.java7 public abstract class Mod class
/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/include/clang/Serialization/
H A DASTDeserializationListener.h54 virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod) {} argument
/external/clang/lib/Frontend/
H A DTestModuleFileExtension.cpp106 ASTReader &Reader, serialization::ModuleFile &Mod,
112 Reader.getDiags().Report(Mod.ImportLoc,
104 createExtensionReader( const ModuleFileExtensionMetadata &Metadata, ASTReader &Reader, serialization::ModuleFile &Mod, const llvm::BitstreamCursor &Stream) argument
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringExtras.h53 unsigned char Mod = static_cast<unsigned char>(X) & 15; local
54 *--BufPtr = hexdigit(Mod);
/external/llvm/include/llvm/ADT/
H A DStringExtras.h54 unsigned char Mod = static_cast<unsigned char>(X) & 15; local
55 *--BufPtr = hexdigit(Mod, LowerCase);
/external/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h256 void init(Module *Mod) { argument
257 M = Mod;
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcCBindings.cpp68 LLVMOrcAddEagerlyCompiledIR(LLVMOrcJITStackRef JITStack, LLVMModuleRef Mod, argument
72 Module *M(unwrap(Mod));
77 LLVMOrcAddLazilyCompiledIR(LLVMOrcJITStackRef JITStack, LLVMModuleRef Mod, argument
81 Module *M(unwrap(Mod));
/external/llvm/lib/Target/AMDGPU/
H A DSITypeRewriter.cpp37 Module *Mod; member in class:__anon14243::SITypeRewriter
58 Mod = &M;
133 Function *NewF = Mod->getFunction(Name);
135 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp48 static void writeModuleToBuffer(std::unique_ptr<Module> Mod, argument
51 WriteBitcodeToFile(Mod.get(), OS);
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVMDBuilder.h116 explicit SPIRVMDBuilder(Module &Mod):M(Mod), C(Mod.getContext()){} argument
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) { argument
136 Type::getInt32Ty(Mod->getContext()),
137 FunctionType::get(Type::getVoidTy(Mod->getContext()), false)->getPointerTo()
140 StructType::get(Mod->getContext(), GlobalDtorElems, false);
144 ConstantInt::get(Type::getInt32Ty(Mod->getContext()), 65535),
151 if (GlobalVariable *GlobalDtors = Mod->getNamedGlobal("llvm.global_dtors")) {
163 *Mod, ArrayType::get(GlobalDtorElemTy, 1), false,
/external/clang/lib/Basic/
H A DModule.cpp246 Module *Mod = *I; local
247 if (!Mod->IsExplicit)
248 Exported.push_back(Mod);
256 Module *Mod = Exports[I].getPointer(); local
259 Exported.push_back(Mod);
284 Module *Mod = Imports[I]; local
290 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) {
300 Exported.push_back(Mod);
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DModInfo.cpp47 ulittle32_t Mod; // Currently opened module. This field is a member in struct:ModInfo::FileLayout
62 // implementation, but as with `Mod`, we ignore it
/external/llvm/lib/Object/
H A DIRObjectFile.cpp38 IRObjectFile::IRObjectFile(MemoryBufferRef Object, std::unique_ptr<Module> Mod) argument
39 : SymbolicFile(Binary::ID_IR, Object), M(std::move(Mod)) {
/external/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp201 Module *Mod = BB->getParent()->getParent(); local
202 Value *ExtF = Intrinsic::getDeclaration(Mod, IntId);
/external/llvm/lib/Target/
H A DTargetMachineC.cpp182 Module* Mod = unwrap(M); local
188 Mod->setDataLayout(TM->createDataLayout());
205 pass.run(*Mod);

Completed in 815 milliseconds

1234