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

<<11121314151617181920>>

  /external/llvm/examples/Fibonacci/
fibonacci.cpp 10 // This small program provides an example of how to build quickly a small module
13 // The goal of this snippet is to create in the memory the LLVM module
21 // Once we have this, we compile the module via JIT, then execute the `fib'
34 #include "llvm/IR/Module.h"
39 static Function *CreateFibFunction(Module *M, LLVMContext &Context) {
40 // Create the fib function and insert it into module M. This function is said
98 // Create some module to put our function into it.
99 OwningPtr<Module> M(new Module("test", Context));
125 errs() << "We just constructed this LLVM module:\n\n---------\n" << *M
    [all...]
  /external/llvm/tools/lto/
LTOModule.h 20 #include "llvm/IR/Module.h"
50 llvm::OwningPtr<llvm::Module> _module;
63 LTOModule(llvm::Module *m, llvm::TargetMachine *t);
91 /// getTargetTriple - Return the Module's target triple.
96 /// setTargetTriple - Set the Module's target triple.
121 /// getLLVVMModule - Return the Module.
122 llvm::Module *getLLVVMModule() { return _module.get(); }
134 /// parseSymbols - Parse the symbols from the module and model-level ASM and
151 /// addAsmGlobalSymbols - Add global symbols from module-level ASM to the
155 /// addAsmGlobalSymbol - Add a global symbol from module-level ASM to th
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSEmbedInfo.cpp 27 #include <llvm/IR/Module.h>
52 llvm::Module *M;
63 virtual bool runOnModule(llvm::Module &M) {
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 10 // A Module transform pass that emits a succinct version of the IR and replaces
28 #include "llvm/IR/Module.h"
62 /// Prints Module to a null buffer in order to build the map of Value pointers
64 ValueToLineMap(const Module *M) {
96 static void process(Module &M) {
111 static void process(Module &M, bool RemoveNamedInfo = true) {
124 void run(Module *M) {
137 /// Updates debug metadata in a Module:
151 /// Map of Value* (in original Module) to Value* (in optional cloned Module)
    [all...]
  /art/compiler/llvm/
compiler_llvm.h 46 class Module;
  /development/tools/idegen/src/com/android/idegen/
Module.java 33 public abstract class Module {
35 private static final Logger logger = Logger.getLogger(Module.class.getName());
37 private static final String IML_TEMPLATE_FILE_NAME = "module-template.iml";
110 moduleDependencies.append(" <orderEntry type=\"module\" module-name=\"")
137 Module child = moduleCache.getAndCache(dependency);
171 // Not sure how to handle android facet for multi-module since there could be more than
204 return Objects.toStringHelper(Module.class)
  /external/chromium_org/ppapi/cpp/dev/
zoom_dev.cc 10 #include "ppapi/cpp/module.h"
39 Module::Get()->AddPluginInterface(kPPPZoomInterface, &ppp_zoom);
  /external/chromium_org/ppapi/cpp/
mouse_lock.cc 12 #include "ppapi/cpp/module.h"
41 Module::Get()->AddPluginInterface(kPPPMouseLockInterface, &ppp_mouse_lock);
  /external/chromium_org/ppapi/examples/gamepad/
gamepad.cc 17 #include "ppapi/cpp/module.h"
48 pp::Module::Get()->GetBrowserInterface(PPB_GAMEPAD_INTERFACE));
130 class MyModule : public pp::Module {
132 MyModule() : pp::Module() {}
143 // Factory function for your specialization of the Module object.
144 Module* CreateModule() {
  /external/chromium_org/ppapi/tests/
test_tcp_socket_private_disallowed.cc 7 #include "ppapi/cpp/module.h"
27 pp::Module::Get()->GetBrowserInterface(PPB_TCPSOCKET_PRIVATE_INTERFACE));
test_udp_socket_private_disallowed.cc 7 #include "ppapi/cpp/module.h"
21 pp::Module::Get()->GetBrowserInterface(PPB_UDPSOCKET_PRIVATE_INTERFACE));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
llvm_wrapper.cpp 13 llvm::OwningPtr<llvm::Module> M;
  /external/clang/examples/clang-interpreter/
main.cpp 23 #include "llvm/IR/Module.h"
45 static int Execute(llvm::Module *Mod, char * const *envp) {
58 llvm::errs() << "'main' function not found in module.\n";
142 // Create and execute the frontend to generate an LLVM bitcode module.
148 if (llvm::Module *Module = Act->takeModule())
149 Res = Execute(Module, envp);
  /external/clang/lib/CodeGen/
ModuleBuilder.cpp 27 #include "llvm/IR/Module.h"
37 OwningPtr<llvm::Module> M;
43 M(new llvm::Module(ModuleName, C)) {}
47 virtual llvm::Module* GetModule() {
51 virtual llvm::Module* ReleaseModule() {
  /external/llvm/include/llvm/Analysis/
IntervalPartition.h 65 virtual void print(raw_ostream &O, const Module* = 0) const;
ProfileInfoLoader.h 25 class Module;
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 52 void BlockFrequencyInfo::print(raw_ostream &O, const Module *) const {
  /external/llvm/lib/CodeGen/
MachineDominators.cpp 57 void MachineDominatorTree::print(raw_ostream &OS, const Module*) const {
MachineFunctionAnalysis.cpp 37 bool MachineFunctionAnalysis::doInitialization(Module &M) {
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.h 49 void EmitEndOfAsmFile(Module &M);
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.cpp 19 #include "llvm/IR/Module.h"
77 AMDGPUIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID,
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 22 #include "llvm/IR/Module.h"
48 bool runOnModule(Module &M);
89 Module *M = GV->getParent();
131 bool XCoreLowerThreadLocal::runOnModule(Module &M) {
135 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
  /external/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 29 #include "llvm/IR/Module.h"
43 // For this pass, process all of the globals in the module, eliminating
45 bool runOnModule(Module &M);
101 bool ConstantMerge::runOnModule(Module &M) {
126 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
168 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
221 // Delete the global value from the module.
  /external/llvm/tools/bugpoint/
BugDriver.cpp 18 #include "llvm/IR/Module.h"
48 /// to update bugdriver with it. This deletes the old module and sets the
50 void BugDriver::setNewProgram(Module *M) {
85 Module *llvm::ParseInputFile(const std::string &Filename,
88 Module *Result = ParseIRFile(Filename, Err, Ctxt);
125 OwningPtr<Module> M(ParseInputFile(Filenames[i], Context));
  /external/mesa3d/src/gallium/drivers/r600/
llvm_wrapper.cpp 13 llvm::OwningPtr<llvm::Module> M;

Completed in 1602 milliseconds

<<11121314151617181920>>