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

<<11121314151617181920>>

  /frameworks/compile/slang/
llvm-rs-as.cpp 22 #include "llvm/IR/Module.h"
71 static void WriteOutputFile(const Module *M) {
129 OwningPtr<Module> M(ParseAssemblyFile(InputFilename, Err, Context));
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 18 #include <mcld/Module.h>
144 GNULDBackend::createArchiveReader(Module& pModule)
205 Module& pModule)
213 Module::iterator iter, iterEnd = pModule.end();
724 void GNULDBackend::sizeNamePools(Module& pModule)
745 Module::SymbolTable& symbols = pModule.getSymbolTable();
746 Module::const_sym_iterator symbol, symEnd;
807 Module::const_lib_iterator lib, libEnd = pModule.lib_end();
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 13 #include "llvm/IR/Module.h"
682 virtual void notifyObjectCompiled(const Module *M, const MemoryBuffer *Obj) {
701 // MCJIT will call this function before compiling any module
704 virtual MemoryBuffer* getObject(const Module* M) {
744 Module *getModuleForNewFunction();
747 ExecutionEngine *compileModule(Module *M);
749 void addModule(Module *M);
753 typedef std::vector<Module*> ModuleVector;
756 Module *OpenModule;
758 std::map<Module *, ExecutionEngine *> EngineMap
    [all...]
  /art/compiler/dex/
compiler_ir.h 21 #include <llvm/IR/Module.h>
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
input_event.cc 17 #include "ppapi/cpp/module.h"
295 pp::Module::Get()->core()->CallOnMainThread(
327 class InputEventModule : public pp::Module {
329 InputEventModule() : pp::Module() {}
338 Module* CreateModule() { return new InputEventModule(); }
  /external/chromium_org/ppapi/cpp/dev/
find_dev.cc 9 #include "ppapi/cpp/module.h"
54 Module::Get()->AddPluginInterface(kPPPFindInterface, &ppp_find);
resource_array_dev.cc 11 #include "ppapi/cpp/module.h"
84 Module::Get()->core()->AddRefResource(output_buf[index]);
video_decoder_client_dev.cc 11 #include "ppapi/cpp/module.h"
76 Module::Get()->AddPluginInterface(kPPPVideoDecoderInterface,
  /external/chromium_org/ppapi/examples/mouse_lock/
mouse_lock.cc 16 #include "ppapi/cpp/module.h"
41 pp::Module::Get()->GetBrowserInterface(PPB_CONSOLE_INTERFACE));
261 class MyModule : public pp::Module {
263 MyModule() : pp::Module() {}
274 // Factory function for your specialization of the Module object.
275 Module* CreateModule() {
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
local_temp_file.cc 84 pp::Module::Get()->GetBrowserInterface(PPB_FILEIOTRUSTED_INTERFACE));
156 pp::Core* core = pp::Module::Get()->core();
187 pp::Core* core = pp::Module::Get()->core();
216 pp::Core* core = pp::Module::Get()->core();
  /external/chromium_org/ppapi/tests/
test_console.cc 7 #include "ppapi/cpp/module.h"
22 pp::Module::Get()->GetBrowserInterface(PPB_CONSOLE_INTERFACE));
test_scrollbar.cc 41 pp::Core* core = pp::Module::Get()->core();
test_talk_private.cc 15 #include "ppapi/cpp/module.h"
33 pp::Module::Get()->GetBrowserInterface(PPB_TALK_PRIVATE_INTERFACE_1_0));
test_trace_event.cc 7 #include "ppapi/cpp/module.h"
19 pp::Module::Get()->GetBrowserInterface(PPB_TRACE_EVENT_DEV_INTERFACE));
test_uma.cc 8 #include "ppapi/cpp/module.h"
15 pp::Module::Get()->GetBrowserInterface(PPB_UMA_PRIVATE_INTERFACE));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.cpp 19 #include "llvm/Module.h"
85 AMDGPUIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID,
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 27 #include "llvm/IR/Module.h"
33 static Function* createAdd1(Module *M) {
34 // Create the add1 function entry and insert this entry into module M. The
65 static Function *CreateFibFunction(Module *M) {
66 // Create the fib function and insert it into module M. This function is said
242 // Create some module to put our function into it.
243 Module *M = new Module("test", Context);
251 //~ std::cout << "We just constructed this LLVM module:\n\n" << *M;
  /external/llvm/include/llvm/Analysis/
BranchProbabilityInfo.h 49 void print(raw_ostream &OS, const Module *M = 0) const;
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 156 /// module. If your pass overrides this, it must make sure to explicitly
158 bool doInitialization(Module &M);
162 bool doFinalization(Module &M);
251 virtual void EmitStartOfAsmFile(Module &) {}
255 virtual void EmitEndOfAsmFile(Module &) {}
MachinePostDominators.h 83 virtual void print(llvm::raw_ostream &OS, const Module *M = 0) const;
  /external/llvm/include/llvm/IR/
GlobalValue.h 27 class Module;
73 Module *Parent; // The containing module.
254 /// BitcodeReader to load the Module.
257 /// isMaterializable - If this function's Module is being lazily streamed in
263 /// GVMaterializer that's still attached to its Module and that knows how to
267 /// Materialize - make sure this GlobalValue is fully read. If the module is
286 /// removeFromParent - This method unlinks 'this' from the containing module,
290 /// eraseFromParent - This method unlinks 'this' from the containing module
294 /// getParent - Get the module that this global value is contained insid
    [all...]
  /external/llvm/lib/Analysis/
InstCount.cpp 63 virtual void print(raw_ostream &O, const Module *M) const {}
PathProfileVerifier.cpp 19 #include "llvm/IR/Module.h"
31 bool runOnModule(Module &M);
77 bool PathProfileVerifier::runOnModule (Module &M) {
84 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
108 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
  /external/llvm/lib/CodeGen/
LiveStackAnalysis.cpp 74 void LiveStacks::print(raw_ostream &OS, const Module*) const {
  /external/llvm/lib/IR/
Globals.cpp 21 #include "llvm/IR/Module.h"
104 GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
130 void GlobalVariable::setParent(Module *parent) {
197 Module *ParentModule)
209 void GlobalAlias::setParent(Module *parent) {

Completed in 1335 milliseconds

<<11121314151617181920>>