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

1 23 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/include/mcld/LD/
ELFObjectWriter.h 21 class Module;
45 llvm::error_code writeObject(Module& pModule, MemoryArea& pOutput);
57 const Module& pModule,
61 const Module& pModule) const;
65 void emitSectionHeader(const Module& pModule,
75 const Module& pModule,
109 uint64_t getLastStartOffset(const Module& pModule) const
124 uint64_t ELFObjectWriter::getLastStartOffset<32>(const Module& pModule) const;
127 uint64_t ELFObjectWriter::getLastStartOffset<64>(const Module& pModule) const;
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader_2_7.h 31 class Module;
36 llvm::Module *ParseBitcodeFile(llvm::MemoryBuffer *Buffer,
44 llvm::Module *getLazyBitcodeModule(llvm::MemoryBuffer *Buffer,
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader_3_0.h 30 class Module;
35 llvm::Module *ParseBitcodeFile(llvm::MemoryBuffer *Buffer,
43 llvm::Module *getLazyBitcodeModule(llvm::MemoryBuffer *Buffer,
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 21 class Module;
31 OutputRelocSection(Module& pModule, LDSection& pSection);
53 Module& m_Module;
GNULDBackend.h 33 #include <mcld/Module.h>
37 class Module;
59 GNUArchiveReader* createArchiveReader(Module& pModule);
81 bool initStandardSymbols(IRBuilder& pBuilder, Module& pModule);
116 virtual void sizeNamePools(Module& pModule);
123 virtual void emitRegNamePools(const Module& pModule, MemoryArea& pOutput);
126 virtual void emitDynNamePools(Module& pModule, MemoryArea& pOutput);
129 virtual void emitELFHashTab(const Module::SymbolTable& pSymtab,
133 virtual void emitGNUHashTab(Module::SymbolTable& pSymtab,
147 virtual void orderSymbolTable(Module& pModule)
    [all...]
  /external/llvm/bindings/ocaml/transforms/ipo/
llvm_ipo.ml 16 external add_argument_promotion : [ | `Module ] Llvm.PassManager.t -> unit =
20 external add_constant_merge : [ | `Module ] Llvm.PassManager.t -> unit =
25 [ | `Module ] Llvm.PassManager.t -> unit = "llvm_add_dead_arg_elimination"
28 external add_function_attrs : [ | `Module ] Llvm.PassManager.t -> unit =
32 external add_function_inlining : [ | `Module ] Llvm.PassManager.t -> unit =
36 external add_global_dce : [ | `Module ] Llvm.PassManager.t -> unit =
40 external add_global_optimizer : [ | `Module ] Llvm.PassManager.t -> unit =
44 external add_ipc_propagation : [ | `Module ] Llvm.PassManager.t -> unit =
48 external add_prune_eh : [ | `Module ] Llvm.PassManager.t -> unit =
52 external add_ipsccp : [ | `Module ] Llvm.PassManager.t -> unit
    [all...]
llvm_ipo.mli 16 external add_argument_promotion : [ | `Module ] Llvm.PassManager.t -> unit =
20 external add_constant_merge : [ | `Module ] Llvm.PassManager.t -> unit =
25 [ | `Module ] Llvm.PassManager.t -> unit = "llvm_add_dead_arg_elimination"
28 external add_function_attrs : [ | `Module ] Llvm.PassManager.t -> unit =
32 external add_function_inlining : [ | `Module ] Llvm.PassManager.t -> unit =
36 external add_global_dce : [ | `Module ] Llvm.PassManager.t -> unit =
40 external add_global_optimizer : [ | `Module ] Llvm.PassManager.t -> unit =
44 external add_ipc_propagation : [ | `Module ] Llvm.PassManager.t -> unit =
48 external add_prune_eh : [ | `Module ] Llvm.PassManager.t -> unit =
52 external add_ipsccp : [ | `Module ] Llvm.PassManager.t -> unit
    [all...]
  /external/chromium_org/ppapi/cpp/
ppp_entrypoints.cc 7 // plugin implementors can export their derivation of Module by just
13 #include "ppapi/cpp/module.h"
16 static pp::Module* g_module_singleton = NULL;
21 // Give a default implementation of Module::Get(). See module.cc for details.
22 pp::Module* Module::Get() {
36 pp::Module* module = pp::CreateModule(); local
37 if (!module)
    [all...]
  /external/chromium_org/ppapi/tests/manual/
delete_plugin.cc 11 #include "ppapi/cpp/module.h"
30 pp::Module::Get()->core()->CallOnMainThread(100,
49 (const PPB_Instance_Trusted*)pp::Module::Get()->GetBrowserInterface(
59 class MyModule : public pp::Module {
61 MyModule() : pp::Module() {}
71 // Factory function for your specialization of the Module object.
72 Module* CreateModule() {
  /external/llvm/include/llvm/IR/
GlobalAlias.h 25 class Module;
30 friend class SymbolTableListTraits<GlobalAlias, Module>;
34 void setParent(Module *parent);
41 /// GlobalAlias ctor - If a parent module is specified, the alias is
42 /// automatically inserted into the end of the specified module's alias list.
44 Constant* Aliasee = 0, Module *Parent = 0);
49 /// removeFromParent - This method unlinks 'this' from the containing module,
54 /// eraseFromParent - This method unlinks 'this' from the containing module
  /external/llvm/include/llvm/
LinkAllIR.h 24 #include "llvm/IR/Module.h"
46 (void)new llvm::Module("", llvm::getGlobalContext());
  /external/llvm/lib/Target/Mips/
MipsOs16.h 41 virtual bool runOnModule(Module &M);
  /external/llvm/lib/Transforms/IPO/
StripDeadPrototypes.cpp 10 // This pass loops over all of the functions in the input module, looking for
20 #include "llvm/IR/Module.h"
35 virtual bool runOnModule(Module &M);
44 bool StripDeadPrototypesPass::runOnModule(Module &M) {
48 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
59 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonELFMCLinker.cpp 15 mcld::Module& pModule,
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsELFMCLinker.cpp 15 mcld::Module& pModule,
  /frameworks/compile/mclinker/lib/Target/X86/
X86ELFMCLinker.cpp 15 mcld::Module& pModule,
  /external/llvm/include/llvm/Analysis/
FindUsedTypes.h 34 /// the types used in the module.
38 /// Print the types found in the module. If the optional Module parameter is
40 /// symbol table from the module.
42 void print(raw_ostream &o, const Module *M) const;
55 /// run - This incorporates all types used by the specified module
56 bool runOnModule(Module &M);
  /external/llvm/include/llvm/MC/
MCObjectDisassembler.h 46 /// \param withCFG Also build a CFG by adding MCFunctions to the Module.
54 /// \brief Fill \p Module by creating an atom for each section.
57 void buildSectionAtoms(MCModule *Module);
59 /// \brief Enrich \p Module with a CFG consisting of MCFunctions.
60 /// \param Module An MCModule returned by buildModule, with no CFG.
64 void buildCFG(MCModule *Module);
  /external/llvm/include/llvm/Target/
TargetIntrinsicInfo.h 23 class Module;
59 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
  /frameworks/compile/slang/
slang_rs_metadata_spec.h 38 class Module;
57 RSMetadataEncoder *CreateRSMetadataEncoder(llvm::Module *M);
67 // Flush metadata in E to its associated module and Destroy it. Return 0 if
82 // struct RSMetadata *RSDecodeMetadata(llvm::Module *M);
  /external/chromium_org/native_client_sdk/src/examples/api/core/
core.cc 8 #include "ppapi/cpp/module.h"
19 /// module on the web page. The browser will ask the Module object to create
40 last_receive_time_ = pp::Module::Get()->core()->GetTimeTicks();
41 pp::Module::Get()->core()->CallOnMainThread(
52 pp::Var msg(pp::Module::Get()->core()->GetTimeTicks() - last_receive_time_);
61 class CoreModule : public pp::Module {
63 CoreModule() : pp::Module() {}
72 Module* CreateModule() { return new CoreModule(); }
  /external/chromium_org/ppapi/utility/
completion_callback_factory_thread_traits.h 9 #include "ppapi/cpp/module.h"
87 is_main_thread_ = Module::Get()->core()->IsMainThread();
93 PP_DCHECK(is_main_thread_ == Module::Get()->core()->IsMainThread());
100 PP_DCHECK(is_main_thread_ == Module::Get()->core()->IsMainThread());
108 PP_DCHECK(is_main_thread_ == Module::Get()->core()->IsMainThread());
128 is_main_thread_ = Module::Get()->core()->IsMainThread();
134 PP_DCHECK(is_main_thread_ == Module::Get()->core()->IsMainThread());
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.h 40 /// True if the file name was read from the Module.
63 /// Run pass on M and set Path to the source file path in the output module.
64 bool runOnModule(llvm::Module &M, std::string &Path);
65 bool runOnModule(llvm::Module &M);
74 bool getSourceInfo(const llvm::Module &M);
85 void createDebugInfo(llvm::Module &M,
86 llvm::OwningPtr<llvm::Module> &DisplayM);
94 void writeDebugBitcode(const llvm::Module *M, int *fd = 0);
  /external/clang/include/clang/Basic/
Module.h 1 //===--- Module.h - Describe a module ---------------------------*- C++ -*-===//
11 /// \brief Defines the clang::Module class, which describes a module in the
42 /// \brief Describes the name of a module.
45 /// \brief Describes a module or submodule.
46 class Module {
48 /// \brief The name of this module.
51 /// \brief The location of the module definition.
54 /// \brief The parent of this module. This will be NULL for the top-leve
    [all...]
  /external/llvm/lib/IR/
AsmWriter.h 30 class Module;
35 /// Create a new SlotTracker for a Module
36 SlotTracker *createSlotTracker(const Module *M);
47 /// NamedTypes - The named types that are used by the current module.
57 void incorporateTypes(const Module &M);
67 const Module *TheModule;
78 const Module *M, AssemblyAnnotationWriter *AAW);
81 AssemblyWriter(formatted_raw_ostream &o, const Module *M,
89 void printModule(const Module *M);

Completed in 563 milliseconds

1 23 4 5 6 7 8 91011>>