/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/llvm/lib/Transforms/Instrumentation/ |
ProfilingUtils.h | 33 void InsertProfilingShutdownCall(Function *Callee, Module *Mod);
|
ProfilingUtils.cpp | 132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) { 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/include/clang/Lex/ |
ModuleMap.h | 145 /// \param Mod The module in which we're resolving the export declaration. 155 resolveExport(Module *Mod, const Module::UnresolvedExportDecl &Unresolved, 162 /// \param Mod The module in which we're resolving the module-id. 169 Module *resolveModuleId(const ModuleId &Id, Module *Mod, bool Complain) const; 294 /// \param Mod The module whose exports should be resolved. 300 bool resolveExports(Module *Mod, bool Complain); 304 /// \param Mod The module whose conflicts should be resolved. 310 bool resolveConflicts(Module *Mod, bool Complain); 324 void setUmbrellaHeader(Module *Mod, const FileEntry *UmbrellaHeader); 328 void setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir) [all...] |
ModuleLoader.h | 86 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 | 55 virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod) { }
|
ASTReader.h | 369 ModuleFile *Mod; 373 ReplacedDeclInfo() : Mod(0), Offset(0), RawLoc(0) {} 374 ReplacedDeclInfo(ModuleFile *Mod, uint64_t Offset, unsigned RawLoc) 375 : Mod(Mod), Offset(Offset), RawLoc(RawLoc) {} 384 ModuleFile *Mod; 387 FileDeclsInfo() : Mod(0) {} 388 FileDeclsInfo(ModuleFile *Mod, ArrayRef<serialization::LocalDeclID> Decls) 389 : Mod(Mod), Decls(Decls) { [all...] |
/external/clang/include/clang/CodeGen/ |
CodeGenAction.h | 53 void setLinkModule(llvm::Module *Mod) { LinkModule = Mod; }
|
/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(); 426 static void inferFrameworkLink(Module *Mod, const DirectoryEntry *FrameworkDir, 428 assert(Mod->IsFramework && "Can only infer linking for framework modules"); 429 assert(!Mod->isSubFramework() && 434 llvm::sys::path::append(LibName, Mod->Name); 436 Mod->LinkLibraries.push_back(Module::LinkLibrary(Mod->Name [all...] |
PPLexerChange.cpp | 388 if (Module *Mod = getCurrentModule()) { 389 if (Mod->getUmbrellaHeader()) { 399 const DirectoryEntry *Dir = Mod->getUmbrellaDir(); 419 << Mod->getFullModuleName() << RelativePath; 449 << File->getName() << Mod->getFullModuleName();
|
/external/clang/examples/clang-interpreter/ |
main.cpp | 45 static int Execute(llvm::Module *Mod, char * const *envp) { 50 llvm::ExecutionEngine::createJIT(Mod, &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/include/llvm/ADT/ |
StringExtras.h | 59 unsigned char Mod = static_cast<unsigned char>(X) & 15; 60 *--BufPtr = hexdigit(Mod);
|
/external/llvm/lib/Analysis/ |
AliasAnalysisEvaluator.cpp | 43 static cl::opt<bool> PrintMod("print-mod", cl::ReallyHidden); 52 unsigned NoModRef, Mod, Ref, ModRef; 67 NoModRef = Mod = Ref = ModRef = 0; 272 // Mod/ref alias analysis: compare all pairs of calls and values 287 case AliasAnalysis::Mod: 288 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent()); 289 ++Mod; break; 300 // Mod/ref alias analysis: compare all pairs of calls 310 case AliasAnalysis::Mod: 311 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent()) [all...] |
Loads.cpp | 196 (AA->getModRefInfo(SI, Ptr, AccessSize) & AliasAnalysis::Mod) == 0) 209 (AA->getModRefInfo(Inst, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
|
/external/clang/include/clang/Basic/ |
Module.h | 282 for (const Module *Mod = this; Mod; Mod = Mod->Parent) 283 if (Mod->IsFramework)
|
/external/llvm/lib/Target/R600/ |
R600TextureIntrinsicsReplacer.cpp | 30 Module *Mod; 149 Function *F = Mod->getFunction(Name); 151 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod); 215 Mod = &M;
|
/external/llvm/tools/lli/ |
lli.cpp | 313 Module *Mod = ParseIRFile(InputFile, Err, Context); 314 if (!Mod) { 322 if (Mod->MaterializeAllPermanently(&ErrorMsg)) { 337 DebugIRPass->runOnModule(*Mod); 340 EngineBuilder builder(Mod); 353 Mod->setTargetTriple(Triple::normalize(TargetTriple)); 442 Function *EntryFn = Mod->getFunction(EntryFunc); 450 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context), 471 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) [all...] |
/external/clang/lib/Rewrite/Frontend/ |
InclusionRewriter.cpp | 33 const Module *Mod; 37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) { 76 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL); 132 void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod, 134 OS << "@import " << Mod->getFullModuleName() << ";" 388 if (Change->Mod) { 389 WriteImplicitModuleImport(Change->Mod, EOL);
|
/external/clang/lib/Basic/ |
Module.cpp | 197 Module *Mod = Exports[I].getPointer(); 200 Exported.push_back(Mod); 225 Module *Mod = Imports[I]; 231 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) { 241 Exported.push_back(Mod);
|
/frameworks/compile/slang/ |
slang_rs.h | 151 virtual void makeModuleVisible(clang::Module *Mod,
|
/external/llvm/lib/Analysis/IPA/ |
CallGraph.cpp | 178 Mod = &M; 225 Mod->getFunctionList().remove(F); 251 assert((!F || F->getParent() == Mod) && "Function not in current module!");
|
GlobalsModRef.cpp | 1 //===- GlobalsModRef.cpp - Simple Mod/Ref Analysis for Globals ------------===// 10 // This simple pass provides alias and mod/ref information for global values 49 /// GlobalInfo - Maintain mod/ref info for all of the globals without 130 else if ((FR->FunctionEffect & Mod) == 0) 147 else if ((FR->FunctionEffect & Mod) == 0) 190 "globalsmodref-aa", "Simple mod/ref analysis for globals", 194 "globalsmodref-aa", "Simple mod/ref analysis for globals", 219 // Remember that we are tracking this global, and the mod/ref fns 227 FunctionInfo[Writers[i]].GlobalInfo[I] |= Mod; 320 // TODO: Could try some IP mod/ref of the loaded pointer [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 42 Module *Mod; 97 Module *Mod = const_cast<Function*>(Fun)->getParent(); 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels"); 449 Mod = &M;
|