HomeSort by relevance Sort by last modified time
    Searched refs:Mod (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 26 Module* Mod = new Module("test-mem", getGlobalContext());
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/
ModuleMap.h 158 /// \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, bool Complain)
    [all...]
ModuleLoader.h 100 virtual void makeModuleVisible(Module *Mod,
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Mod.java 19 * $Id: Mod.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'mod' operation expression executer.
30 public class Mod extends Operation
  /external/clang/include/clang/Serialization/
ASTDeserializationListener.h 54 virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod) { }
ASTReader.h 426 ModuleFile *Mod;
430 ReplacedDeclInfo() : Mod(nullptr), Offset(0), RawLoc(0) {}
431 ReplacedDeclInfo(ModuleFile *Mod, uint64_t Offset, unsigned RawLoc)
432 : Mod(Mod), Offset(Offset), RawLoc(RawLoc) {}
441 ModuleFile *Mod;
444 FileDeclsInfo() : Mod(nullptr) {}
445 FileDeclsInfo(ModuleFile *Mod, ArrayRef<serialization::LocalDeclID> Decls)
446 : Mod(Mod), Decls(Decls) {
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 32 Module *Mod;
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->getOrInsertFunction
    [all...]
SITypeRewriter.cpp 36 Module *Mod;
57 Mod = &M;
137 Function *NewF = Mod->getFunction(Name);
139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
R600TextureIntrinsicsReplacer.cpp 30 Module *Mod;
148 Function *F = Mod->getFunction(Name);
150 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod);
214 Mod = &M;
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 53 void setLinkModule(llvm::Module *Mod) { LinkModule = Mod; }
  /external/clang/examples/clang-interpreter/
main.cpp 45 static int Execute(llvm::Module *Mod, char * const *envp) {
50 llvm::ExecutionEngine::create(Mod, /*ForceInterpreter*/ false, &Error));
56 llvm::Function *EntryFn = Mod->getFunction("main");
64 Args.push_back(Mod->getModuleIdentifier());
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 32 import org.apache.xpath.operations.Mod;
106 (pred instanceof Mod) ||
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 42 static cl::opt<bool> PrintMod("print-mod", cl::ReallyHidden);
51 unsigned NoModRef, Mod, Ref, ModRef;
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())
    [all...]
AliasAnalysis.cpp 125 if ((Mask & Mod) && pointsToConstantMemory(Loc))
126 Mask = ModRefResult(Mask & ~Mod);
158 // If CS2 only access memory through arguments, accumulate the mod/ref
175 if (ArgMask == Mod)
178 ArgMask = Mod;
341 return Mod;
539 if (getModRefInfo(I, Loc) & Mod)
Loads.cpp 196 (AA->getModRefInfo(SI, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
209 (AA->getModRefInfo(Inst, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
  /external/clang/lib/Lex/
ModuleMap.cpp 39 ModuleMap::resolveExport(Module *Mod,
49 Module *Context = resolveModuleId(Unresolved.Id, Mod, Complain);
56 Module *ModuleMap::resolveModuleId(const ModuleId &Id, Module *Mod,
59 Module *Context = lookupModuleUnqualified(Id[0].first, Mod);
63 << Id[0].first << Mod->getFullModuleName();
588 static void inferFrameworkLink(Module *Mod, const DirectoryEntry *FrameworkDir,
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->LinkLibraries.push_back(Module::LinkLibrary(Mod->Name
    [all...]
PPLexerChange.cpp 447 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/
Module.cpp 213 Module *Mod = *I;
214 if (!Mod->IsExplicit)
215 Exported.push_back(Mod);
223 Module *Mod = Exports[I].getPointer();
226 Exported.push_back(Mod);
251 Module *Mod = Imports[I];
257 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) {
267 Exported.push_back(Mod);
  /external/clang/include/clang/Basic/
Module.h 324 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
325 if (Mod->IsFramework)
  /external/llvm/lib/Target/
TargetMachineC.cpp 186 Module* Mod = unwrap(M);
199 Mod->setDataLayout(td);
200 pass.add(new DataLayoutPass(Mod));
217 pass.run(*Mod);
  /frameworks/compile/slang/
slang_rs.h 119 virtual void makeModuleVisible(clang::Module *Mod,
  /external/llvm/tools/lli/
lli.cpp 401 Module *Mod = ParseIRFile(InputFile, Err, Context);
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->getFunction(EntryFunc)
    [all...]
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 33 const Module *Mod;
37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) {
71 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL);
131 void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod,
133 OS << "@import " << Mod->getFullModuleName() << ";"
399 if (Change->Mod) {
400 WriteImplicitModuleImport(Change->Mod, EOL);
  /external/llvm/include/llvm/ADT/
StringExtras.h 65 unsigned char Mod = static_cast<unsigned char>(X) & 15;
66 *--BufPtr = hexdigit(Mod);
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 1 //===- GlobalsModRef.cpp - Simple Mod/Ref Analysis for Globals ------------===//
10 // This simple pass provides alias and mod/ref information for global values
50 /// GlobalInfo - Maintain mod/ref info for all of the globals without
135 else if ((FR->FunctionEffect & Mod) == 0)
152 else if ((FR->FunctionEffect & Mod) == 0)
195 "globalsmodref-aa", "Simple mod/ref analysis for globals",
199 "globalsmodref-aa", "Simple mod/ref analysis for globals",
224 // Remember that we are tracking this global, and the mod/ref fns
232 FunctionInfo[Writers[i]].GlobalInfo[I] |= Mod;
315 // TODO: Could try some IP mod/ref of the loaded pointer
    [all...]

Completed in 445 milliseconds

1 2 3 4 5