HomeSort by relevance Sort by last modified time
    Searched refs:Module (Results 301 - 325 of 826) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Analysis/
ProfileInfoLoaderPass.cpp 22 #include "llvm/IR/Module.h"
78 virtual bool runOnModule(Module &M);
91 /// profiling information for the module from the specified filename, making it
154 bool LoaderPass::runOnModule(Module &M) {
161 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
182 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
231 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
251 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
AliasDebugger.cpp 24 #include "llvm/IR/Module.h"
46 bool runOnModule(Module &M) {
49 for(Module::global_iterator I = M.global_begin(),
57 for(Module::iterator I = M.begin(),
  /external/llvm/lib/IR/
IRBuilder.cpp 28 Module &M = *BB->getParent()->getParent();
69 Module *M = BB->getParent()->getParent();
89 Module *M = BB->getParent()->getParent();
113 Module *M = BB->getParent()->getParent();
135 Module *M = BB->getParent()->getParent();
150 Module *M = BB->getParent()->getParent();
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 213 void emitGlobals(const Module &M);
214 void emitHeader(Module &M, raw_ostream &O);
227 bool doInitialization(Module &M);
228 bool doFinalization(Module &M);
245 // Build the map between type name and ID based on module's type
254 void recordAndEmitFilenames(Module &);
267 void emitDeclarations(const Module &, raw_ostream &O);
  /external/llvm/unittests/Transforms/Utils/
SpecialCaseList.cpp 12 #include "llvm/IR/Module.h"
23 Function *makeFunction(StringRef Name, Module &M) {
30 GlobalVariable *makeGlobal(StringRef Name, StringRef StructName, Module &M) {
46 Module M("hello", Ctx);
69 Module M("hello", Ctx);
95 Module M("hello", Ctx);
143 Module M("othello", Ctx);
  /external/clang/lib/Lex/
HeaderSearch.cpp 112 std::string HeaderSearch::getModuleFileName(Module *Module) {
113 // If we don't have a module cache path, we can't do anything.
119 llvm::sys::path::append(Result, Module->getTopLevelModule()->Name + ".pcm");
124 // If we don't have a module cache path, we can't do anything.
134 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) {
135 // Look in the module map to determine if there is a module by this name.
136 Module *Module = ModMap.findModule(ModuleName)
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 1 //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
10 // This file implements the LLVM module linker.
20 #include "llvm/IR/Module.h"
47 /// source module that are mapped to an opaque struct in the destination
48 /// module.
52 /// destination modules who are getting a body from the source module.
60 /// module is conceptually equivalent to the specified type in the source
61 /// module.
65 /// module from a type definition in the source module
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 58 class Module;
112 /// \brief The module we're currently writing, if any.
113 Module *WritingModule;
412 llvm::DenseMap<Module *, unsigned> SubmoduleIDs;
414 /// \brief Retrieve or create a submodule ID for this module.
415 unsigned getSubmoduleID(Module *Mod);
435 void WriteSubmodules(Module *WritingModule);
480 Module *WritingModule);
493 /// \param WritingModule The module that we are writing. If null, we are
500 Module *WritingModule, StringRef isysroot
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
LoginContext.java 83 private Module[] modules;
168 modules = new Module[entries.length];
170 modules[i] = new Module(entries[i]);
266 for (Module module : modules) {
268 // if a module fails during Class.forName(), then it breaks overall
270 module.create(subject, callbackHandler, sharedState);
272 if (module.module.login()) {
273 ++total[module.getFlag()]
492 LoginModule module; field in class:LoginContext.Module
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 43 class Module;
105 /// along with the module map
106 llvm::DenseMap<const IdentifierInfo *, Module *> KnownModules;
108 /// \brief The location of the module-import keyword for the last module
112 /// \brief The result of the last module import.
116 /// \brief Whether we should (re)build the global module index once we
196 /// \brief Indicates whether we should (re)build the global module index.
200 /// module index.
426 /// @name Module Managemen
    [all...]
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 31 // Stub out module loading.
35 Module::NameVisibilityKind Visibility,
40 virtual void makeModuleVisible(Module *Mod,
41 Module::NameVisibilityKind Visibility,
57 const Module *Imported) {
77 const Module* Imported;
PPConditionalDirectiveRecordTest.cpp 58 Module::NameVisibilityKind Visibility,
63 virtual void makeModuleVisible(Module *Mod,
64 Module::NameVisibilityKind Visibility,
  /external/llvm/include/llvm/Analysis/
CallGraph.h 1 //===- CallGraph.h - Build a Module's call graph ----------------*- C++ -*-===//
13 // Every function in a module is represented as a node in the call graph. The
19 // represented (or analyzable) in the module. In particular, this analysis
21 // 1. All functions in the module without internal linkage will have edges
23 // functions outside of the module.
29 // There is a second external node added for calls that leave this module.
66 class Module;
74 Module *Mod; // The module this call graph represents
87 /// getModule - Return the module the call graph corresponds to
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 1 //===- CallGraph.cpp - Build a Module's call graph ------------------------===//
18 #include "llvm/IR/Module.h"
50 // runOnModule - Compute the call graph for the specified module.
51 virtual bool runOnModule(Module &M) {
59 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
72 virtual void print(raw_ostream &OS, const Module *) const {
177 void CallGraph::initialize(Module &M) {
198 void CallGraph::print(raw_ostream &OS, Module*) const {
212 // removeFunctionFromModule - Unlink the function from this module, returning
213 // it. Because this removes the function from the module, the call graph nod
    [all...]
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 36 class Module;
68 IRBuilder(Module& pModule, const LinkerConfig& pConfig);
74 const Module& getModule() const { return m_Module; }
75 Module& getModule() { return m_Module; }
379 /// mcld::Module has another symbol with the same name, then this function
380 /// resolves these two symbols and keeps one in mcld::Module by their
414 /// AddSymbol - To add a symbol in mcld::Module
415 /// This function create a new symbol and insert it into mcld::Module.
420 /// - Define a symbol only if mcld::Module contains a symbol with
421 /// identical name. If mcld::Module does not have any symbol wit
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc 12 #include "ppapi/cpp/module.h"
177 class VarArrayBufferModule : public pp::Module {
179 VarArrayBufferModule() : pp::Module() {}
188 Module* CreateModule() { return new VarArrayBufferModule(); }
  /external/chromium_org/ppapi/examples/scaling/
scaling.cc 13 #include "ppapi/cpp/module.h"
214 class MyModule : public pp::Module {
216 MyModule() : pp::Module() {}
227 // Factory function for your specialization of the Module object.
228 Module* CreateModule() {
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
pm_pre_init_manifest_file_test.cc 30 // TODO(bsy): move weak_ref module to the shared directory
34 #include "ppapi/cpp/module.h"
234 class MyModule : public pp::Module {
236 MyModule() : pp::Module() {}
255 // Factory function for your specialization of the Module object.
256 Module* CreateModule() {
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/postmessage_redir/
pm_redir_test.cc 25 #include "ppapi/cpp/module.h"
173 class MyModule : public pp::Module {
175 MyModule() : pp::Module() {}
190 // Factory function for your specialization of the Module object.
191 Module* CreateModule() {
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 29 class Module;
89 ValueEnumerator(const Module *M);
166 void EnumerateNamedMetadata(const Module *M);
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 40 bool doFinalization(Module &M);
46 "Create Garbage Collector Module Metadata", false, false)
68 GCStrategy *GCModuleInfo::getOrCreateStrategy(const Module *M,
173 bool Printer::doFinalization(Module &M) {
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 20 #include "llvm/IR/Module.h"
37 bool runOnModule(Module& M);
150 bool PartialInliner::runOnModule(Module& M) {
153 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI)
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 29 class Module;
93 ValueEnumerator(const llvm::Module *M);
170 void EnumerateNamedMetadata(const llvm::Module *M);
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 29 class Module;
93 ValueEnumerator(const llvm::Module *M);
170 void EnumerateNamedMetadata(const llvm::Module *M);
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 29 class Module;
93 ValueEnumerator(const llvm::Module *M);
170 void EnumerateNamedMetadata(const llvm::Module *M);

Completed in 1621 milliseconds

<<11121314151617181920>>