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

1234

/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp26 Module* Mod = new Module("test-mem", getGlobalContext()); local
29 FunctionType::get(Type::getVoidTy(Mod->getContext()), false);
31 "func", Mod);
33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func);
34 new UnreachableInst(Mod->getContext(), Entry);
36 BasicBlock* BB = BasicBlock::Create(Mod->getContext(), "bb", Func);
37 new UnreachableInst(Mod->getContext(), BB);
39 PointerType* Int8Ptr = Type::getInt8PtrTy(Mod->getContext());
40 new GlobalVariable(*Mod, Int8Ptr, /*isConstant=*/true,
44 return Mod;
[all...]
/external/clang/include/clang/Lex/
H A DModuleMap.h158 /// \param Mod The module in which we're resolving the export declaration.
168 resolveExport(Module *Mod, const Module::UnresolvedExportDecl &Unresolved,
175 /// \param Mod The module in which we're resolving the module-id.
182 Module *resolveModuleId(const ModuleId &Id, Module *Mod, bool Complain) const;
356 /// \param Mod The module whose exports should be resolved.
362 bool resolveExports(Module *Mod, bool Complain);
366 /// \param Mod The module whose uses should be resolved.
372 bool resolveUses(Module *Mod, bool Complain);
376 /// \param Mod The module whose conflicts should be resolved.
382 bool resolveConflicts(Module *Mod, boo
[all...]
H A DModuleLoader.h100 virtual void makeModuleVisible(Module *Mod,
/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/Target/R600/
H A DAMDGPUPromoteAlloca.cpp32 Module *Mod; member in class:__anon26101::AMDGPUPromoteAlloca
52 Mod = &M;
79 for (Module::global_iterator I = Mod->global_begin(),
80 E = Mod->global_end(); I != E; ++I) {
92 Mod->getDataLayout()->getTypeAllocSize(GVTy->getElementType());
270 Mod->getDataLayout()->getTypeAllocSize(AllocaTy);
281 *Mod, ArrayType::get(I.getAllocatedType(), 256), false,
286 Type::getInt32Ty(Mod->getContext()), false);
288 AttrSet.addAttribute(Mod->getContext(), 0, Attribute::ReadNone);
290 Value *ReadLocalSizeY = Mod
[all...]
H A DSITypeRewriter.cpp36 Module *Mod; member in class:__anon26130::SITypeRewriter
57 Mod = &M;
137 Function *NewF = Mod->getFunction(Name);
139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
H A DR600TextureIntrinsicsReplacer.cpp30 Module *Mod; member in class:__anon26119::R600TextureIntrinsicsReplacer
148 Function *F = Mod->getFunction(Name);
150 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod);
214 Mod = &M;
/external/clang/examples/clang-interpreter/
H A Dmain.cpp45 static int Execute(llvm::Module *Mod, char * const *envp) { argument
50 llvm::ExecutionEngine::create(Mod, /*ForceInterpreter*/ false, &Error));
56 llvm::Function *EntryFn = Mod->getFunction("main");
64 Args.push_back(Mod->getModuleIdentifier());
/external/clang/include/clang/Serialization/
H A DASTDeserializationListener.h54 virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod) { } argument
H A DASTReader.h426 ModuleFile *Mod; member in struct:clang::ASTReader::ReplacedDeclInfo
430 ReplacedDeclInfo() : Mod(nullptr), Offset(0), RawLoc(0) {}
431 ReplacedDeclInfo(ModuleFile *Mod, uint64_t Offset, unsigned RawLoc) argument
432 : Mod(Mod), Offset(Offset), RawLoc(RawLoc) {}
441 ModuleFile *Mod; member in struct:clang::ASTReader::FileDeclsInfo
444 FileDeclsInfo() : Mod(nullptr) {}
445 FileDeclsInfo(ModuleFile *Mod, ArrayRef<serialization::LocalDeclID> Decls) argument
446 : Mod(Mod), Decl
591 Module *Mod; member in struct:clang::ASTReader::UnresolvedModuleRef
1095 ModuleFile *Mod; member in struct:clang::ASTReader::ImportedModule
1099 ImportedModule(ModuleFile *Mod, ModuleFile *ImportedBy, SourceLocation ImportLoc) argument
1188 ModuleFile *Mod; member in class:clang::ASTReader::ModuleDeclIterator
1198 ModuleDeclIterator(ASTReader *Reader, ModuleFile *Mod, const serialization::LocalDeclID *Pos) argument
[all...]
/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.h53 void setLinkModule(llvm::Module *Mod) { LinkModule = Mod; } argument
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp51 unsigned NoModRef, Mod, Ref, ModRef; member in class:__anon25663::AAEval
66 NoModRef = Mod = Ref = ModRef = 0;
271 // Mod/ref alias analysis: compare all pairs of calls and values
286 case AliasAnalysis::Mod:
287 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent());
288 ++Mod; break;
299 // Mod/ref alias analysis: compare all pairs of calls
309 case AliasAnalysis::Mod:
310 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent());
311 ++Mod; brea
[all...]
H A DAliasAnalysis.cpp125 if ((Mask & Mod) && pointsToConstantMemory(Loc))
126 Mask = ModRefResult(Mask & ~Mod);
175 if (ArgMask == Mod)
178 ArgMask = Mod;
341 return Mod;
539 if (getModRefInfo(I, Loc) & Mod)
H A DLoads.cpp196 (AA->getModRefInfo(SI, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
209 (AA->getModRefInfo(Inst, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
/external/clang/lib/Lex/
H A DModuleMap.cpp39 ModuleMap::resolveExport(Module *Mod, argument
49 Module *Context = resolveModuleId(Unresolved.Id, Mod, Complain);
56 Module *ModuleMap::resolveModuleId(const ModuleId &Id, Module *Mod, argument
59 Module *Context = lookupModuleUnqualified(Id[0].first, Mod);
63 << Id[0].first << Mod->getFullModuleName();
588 static void inferFrameworkLink(Module *Mod, const DirectoryEntry *FrameworkDir, argument
590 assert(Mod->IsFramework && "Can only infer linking for framework modules");
591 assert(!Mod->isSubFramework() &&
596 llvm::sys::path::append(LibName, Mod->Name);
598 Mod
761 setUmbrellaHeader(Module *Mod, const FileEntry *UmbrellaHeader) argument
767 setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir) argument
772 addHeader(Module *Mod, const FileEntry *Header, ModuleHeaderRole Role) argument
818 resolveExports(Module *Mod, bool Complain) argument
832 resolveUses(Module *Mod, bool Complain) argument
846 resolveConflicts(Module *Mod, bool Complain) argument
1603 appendSubframeworkPaths(Module *Mod, SmallVectorImpl<char> &Path) argument
[all...]
H A DPPLexerChange.cpp447 if (Module *Mod = getCurrentModule()) {
448 if (Mod->getUmbrellaHeader()) {
455 const DirectoryEntry *Dir = Mod->getUmbrellaDir();
477 << Mod->getFullModuleName() << RelativePath;
506 << File->getName() << Mod->getFullModuleName();
/external/clang/lib/Basic/
H A DModule.cpp213 Module *Mod = *I; local
214 if (!Mod->IsExplicit)
215 Exported.push_back(Mod);
223 Module *Mod = Exports[I].getPointer(); local
226 Exported.push_back(Mod);
251 Module *Mod = Imports[I]; local
257 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) {
267 Exported.push_back(Mod);
/external/clang/include/clang/Basic/
H A DModule.h324 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
325 if (Mod->IsFramework)
/external/llvm/lib/Target/
H A DTargetMachineC.cpp186 Module* Mod = unwrap(M); local
199 Mod->setDataLayout(td);
200 pass.add(new DataLayoutPass(Mod));
217 pass.run(*Mod);
/external/llvm/tools/lli/
H A Dlli.cpp401 Module *Mod = ParseIRFile(InputFile, Err, Context); local
402 if (!Mod) {
411 Mod->setModuleIdentifier(CacheName);
418 if (std::error_code EC = Mod->materializeAllPermanently()) {
433 DebugIRPass->runOnModule(*Mod);
437 EngineBuilder builder(Mod);
450 Mod->setTargetTriple(Triple::normalize(TargetTriple));
558 if (RemoteMCJIT && Triple(Mod->getTargetTriple()).isOSCygMing()) {
559 addCygMingExtraModule(EE, Context, Mod->getTargetTriple());
594 Function *EntryFn = Mod
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp33 const Module *Mod; member in struct:__anon17971::InclusionRewriter::FileChange
37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) { argument
71 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL);
131 void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod, argument
133 OS << "@import " << Mod->getFullModuleName() << ";"
399 if (Change->Mod) {
400 WriteImplicitModuleImport(Change->Mod, EOL);
/external/llvm/include/llvm/ADT/
H A DStringExtras.h65 unsigned char Mod = static_cast<unsigned char>(X) & 15; local
66 *--BufPtr = hexdigit(Mod);
/external/llvm/lib/Analysis/IPA/
H A DGlobalsModRef.cpp1 //===- GlobalsModRef.cpp - Simple Mod/Ref Analysis for Globals ------------===//
135 else if ((FR->FunctionEffect & Mod) == 0)
152 else if ((FR->FunctionEffect & Mod) == 0)
232 FunctionInfo[Writers[i]].GlobalInfo[I] |= Mod;
447 FunctionEffect |= Mod;
449 FunctionEffect |= Mod;
462 if ((FunctionEffect & Mod) == 0)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp42 Module *Mod; member in class:__anon13915::R600KernelParameters
97 Module *Mod = const_cast<Function*>(Fun)->getParent(); local
98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels");
449 Mod = &M;

Completed in 1729 milliseconds

1234