| /external/llvm/examples/HowToUseJIT/ |
| HowToUseJIT.cpp | 11 // module with two functions and execute it with the JIT. 15 // the LLVM module consisting of two functions as follow: 25 // then compile the module via JIT, then execute the `foo' 45 #include "llvm/IR/Module.h" 58 // Create some module to put our function into it. 59 Module *M = new Module("test", Context); 61 // Create the add1 function entry and insert this entry into module M. The 119 outs() << "We just constructed this LLVM module:\n\n" << *M;
|
| /external/llvm/include/llvm/IR/ |
| Intrinsics.h | 28 class Module; 70 Function *getDeclaration(Module *M, ID id, ArrayRef<Type*> Tys = None);
|
| TypeFinder.h | 23 class Module; 28 /// TypeFinder - Walk over a module, identifying all of the types that are 29 /// used by the module. 42 void run(const Module &M, bool onlyNamed);
|
| /external/llvm/include/llvm/Transforms/Utils/ |
| CodeExtractor.h | 26 class Module; 115 Function *oldFunction, Module *M);
|
| /external/llvm/lib/ExecutionEngine/Interpreter/ |
| Interpreter.cpp | 19 #include "llvm/IR/Module.h" 35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) { 36 // Tell this Module to materialize everything and release the GVMaterializer. 47 Interpreter::Interpreter(Module *M)
|
| /external/llvm/lib/Target/X86/ |
| X86AsmPrinter.h | 39 virtual void EmitStartOfAsmFile(Module &M) LLVM_OVERRIDE; 41 virtual void EmitEndOfAsmFile(Module &M) LLVM_OVERRIDE;
|
| /external/llvm/lib/Transforms/IPO/ |
| GlobalDCE.cpp | 23 #include "llvm/IR/Module.h" 38 // run - Do the GlobalDCE pass on the specified module, optionally updating 41 bool runOnModule(Module &M); 62 bool GlobalDCE::runOnModule(Module &M) { 65 // Loop over the module, adding globals which are obviously necessary. 66 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) { 74 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); 84 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); 98 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); 107 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I [all...] |
| Internalize.cpp | 10 // This pass loops over all of the functions and variables in the input module. 21 #include "llvm/IR/Module.h" 57 virtual bool runOnModule(Module &M); 112 bool InternalizePass::runOnModule(Module &M) { 142 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) 162 // Never internalize anchors used by the machine module info, else the info 174 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); 187 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
|
| /external/llvm/tools/bugpoint/ |
| OptimizerDriver.cpp | 22 #include "llvm/IR/Module.h" 55 static bool writeProgramToFileAux(tool_output_file &Out, const Module *M) { 66 const Module *M) const { 72 const Module *M) const { 84 void BugDriver::EmitProgressBitcode(const Module *M, 122 bool BugDriver::runPasses(Module *Program, 249 /// module, returning the transformed module on success, or a null pointer on 251 Module *BugDriver::runPassesOn(Module *M [all...] |
| /frameworks/compile/mclinker/lib/Core/ |
| Android.mk | 13 Module.cpp \
|
| /frameworks/compile/mclinker/lib/Target/ |
| OutputRelocSection.cpp | 13 #include <mcld/Module.h> 24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection)
|
| /frameworks/compile/mclinker/tools/mcld/include/alone/ |
| Linker.h | 17 class Module; 58 mcld::Module *mModule;
|
| /external/chromium_org/native_client_sdk/src/examples/api/gamepad/ |
| gamepad.cc | 78 pp::Module* module = pp::Module::Get(); local 79 assert(module); 81 module->GetBrowserInterface(PPB_GAMEPAD_INTERFACE)); 201 class GamepadModule : public pp::Module { 203 GamepadModule() : pp::Module() {} 212 Module* CreateModule() { return new GamepadModule(); }
|
| /external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/ |
| dlopen.cc | 14 #include <ppapi/cpp/module.h> 55 // Initialize the module, staring a worker thread to load the shared object. 58 pp::Module::Get()->get_browser_interface()); 81 pp::Module::Get()->core()->CallOnMainThread(IMMEDIATELY, cc, 0); 181 class DlOpenModule : public pp::Module { 183 DlOpenModule() : pp::Module() {} 193 Module* CreateModule() { return new DlOpenModule(); }
|
| /external/chromium_org/ppapi/examples/video_effects/ |
| video_effects.cc | 14 #include "ppapi/cpp/module.h" 39 class VEDemoModule : public pp::Module { 41 VEDemoModule() : pp::Module() {} 49 VEDemoInstance(PP_Instance instance, pp::Module* module); 67 VEDemoInstance::VEDemoInstance(PP_Instance instance, pp::Module* module) 175 // Factory function for your specialization of the Module object. 176 Module* CreateModule() {
|
| /external/llvm/lib/IR/ |
| TypeFinder.cpp | 20 #include "llvm/IR/Module.h" 23 void TypeFinder::run(const Module &M, bool onlyNamed) { 27 for (Module::const_global_iterator I = M.global_begin(), 35 for (Module::const_alias_iterator I = M.alias_begin(), 44 for (Module::const_iterator FI = M.begin(), E = M.end(); FI != E; ++FI) { 77 for (Module::const_named_metadata_iterator I = M.named_metadata_begin(),
|
| /external/chromium/chrome/browser/ |
| enumerate_modules_model_unittest_win.cc | 25 ModuleEnumerator::Module test_case; 26 ModuleEnumerator::Module expected; 59 ModuleEnumerator::Module test = kNormalizationTestCases[i].test_case; 62 ModuleEnumerator::Module expected = kNormalizationTestCases[i].expected; 78 const ModuleEnumerator::Module kStandardModule = 81 const ModuleEnumerator::Module kStandardModuleNoDescription = 84 const ModuleEnumerator::Module kStandardModuleNoSignature = 103 ModuleEnumerator::Module test_case; 198 ModuleEnumerator::Module test = kMatchineEntryList[i].test_case; 230 ModuleEnumerator::Module module local [all...] |
| /external/chromium_org/chrome/browser/ |
| enumerate_modules_model_unittest_win.cc | 28 ModuleEnumerator::Module test_case; 29 ModuleEnumerator::Module expected; 62 ModuleEnumerator::Module test = kNormalizationTestCases[i].test_case; 65 ModuleEnumerator::Module expected = kNormalizationTestCases[i].expected; 81 const ModuleEnumerator::Module kStandardModule = 84 const ModuleEnumerator::Module kStandardModuleNoDescription = 87 const ModuleEnumerator::Module kStandardModuleNoSignature = 106 ModuleEnumerator::Module test_case; 201 ModuleEnumerator::Module test = kMatchineEntryList[i].test_case; 233 ModuleEnumerator::Module module local [all...] |
| /external/llvm/include/llvm/CodeGen/ |
| MachineModuleInfo.h | 10 // Collect meta information for a module. This information should be in a 57 class Module; 79 /// to hold private target-specific information for each Module. Objects of 94 /// module. Queries can be made by different debugging and exception handling 101 /// TheModule - This is the LLVM Module being worked on. 102 const Module *TheModule; 160 /// in this module. 163 /// UsesVAFloatArgument - True if this module calls VarArg function with 183 virtual bool doInitialization(Module &); 184 virtual bool doFinalization(Module &) [all...] |
| /external/chromium_org/native_client_sdk/src/examples/api/audio/ |
| audio.cc | 11 #include "ppapi/cpp/module.h" 143 class AudioModule : public pp::Module { 145 AudioModule() : pp::Module() {} 154 Module* CreateModule() { return new AudioModule(); }
|
| /external/chromium_org/ppapi/examples/crxfs/ |
| crxfs.cc | 11 #include "ppapi/cpp/module.h" 128 class MyModule : public pp::Module { 130 MyModule() : pp::Module() {} 141 // Factory function for your specialization of the Module object. 142 Module* CreateModule() {
|
| /external/chromium_org/ppapi/examples/flash_topmost/ |
| flash_topmost.cc | 9 #include "ppapi/cpp/module.h" 46 pp::Module::Get()->core()->CallOnMainThread( 119 class MyModule : public pp::Module { 128 // Factory function for your specialization of the Module object. 129 Module* CreateModule() {
|
| /external/chromium_org/ppapi/examples/url_loader/ |
| stream_to_file.cc | 16 #include "ppapi/cpp/module.h" 153 class MyModule : public pp::Module { 155 MyModule() : pp::Module() {} 166 // Factory function for your specialization of the Module object. 167 Module* CreateModule() {
|
| streaming.cc | 13 #include "ppapi/cpp/module.h" 158 class MyModule : public pp::Module { 160 MyModule() : pp::Module() {} 171 // Factory function for your specialization of the Module object. 172 Module* CreateModule() {
|
| /external/clang/include/clang/Frontend/ |
| FrontendActions.h | 19 class Module; 101 clang::Module *Module; 140 /// \brief Dump information about the given module file, to be used for
|