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

1 2 3 4 5 67 8 91011>>

  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 43 void print(raw_ostream &O, const Module *M) const;
  /external/llvm/include/llvm/IR/
GlobalVariable.h 30 class Module;
36 friend class SymbolTableListTraits<GlobalVariable, Module>;
41 void setParent(Module *parent);
66 /// GlobalVariable ctor - If a parent module is specified, the global is
74 GlobalVariable(Module &M, Type *Ty, bool isConstant,
181 /// removeFromParent - This method unlinks 'this' from the containing module,
186 /// eraseFromParent - This method unlinks 'this' from the containing module
  /external/llvm/lib/Analysis/IPA/
FindUsedTypes.cpp 1 //===- FindUsedTypes.cpp - Find all Types used by a module ----------------===//
20 #include "llvm/IR/Module.h"
57 // run - This incorporates all types used by the specified module
59 bool FindUsedTypes::runOnModule(Module &m) {
63 for (Module::const_global_iterator I = m.global_begin(), E = m.global_end();
70 for (Module::iterator MI = m.begin(), ME = m.end(); MI != ME; ++MI) {
91 // Print the types found in the module. If the optional Module parameter is
93 // symbol table from the module.
95 void FindUsedTypes::print(raw_ostream &OS, const Module *M) const
    [all...]
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.h 41 Function *getDeclaration(Module *M, unsigned int ID,
  /external/llvm/lib/Transforms/Instrumentation/
EdgeProfiling.cpp 24 #include "llvm/IR/Module.h"
35 bool runOnModule(Module &M);
54 bool EdgeProfiler::runOnModule(Module &M) {
57 errs() << "WARNING: cannot insert edge profiling into a module"
64 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
85 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 19 #include "llvm/IR/Module.h"
24 Module &M, Function *F, int Priority) {
59 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority) {
63 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority) {
68 llvm::collectUsedGlobalVariables(Module &M, SmallPtrSet<GlobalValue *, 8> &Set,
  /external/llvm/tools/opt/
PrintSCC.cpp 17 // analyze -print-cfg-sccs to print the SCCs in each CFG of a module.
30 #include "llvm/IR/Module.h"
42 void print(raw_ostream &O, const Module* = 0) const { }
53 // run - Print out SCCs in the call graph for the specified module.
54 bool runOnModule(Module &M);
56 void print(raw_ostream &O, const Module* = 0) const { }
93 // run - Print out SCCs in the call graph for the specified module.
94 bool CallGraphSCC::runOnModule(Module &M) {
AnalysisWrappers.cpp 21 #include "llvm/IR/Module.h"
35 virtual bool runOnModule(Module &M) {
36 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
85 virtual bool runOnModule(Module &M) {
  /external/llvm/unittests/IR/
ValueTest.cpp 13 #include "llvm/IR/Module.h"
37 Module *M = ParseAssemblyString(ModuleString, NULL, Err, C);
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 40 Function *getDeclaration(Module *M, unsigned int ID,
  /frameworks/compile/mclinker/include/mcld/LD/
ELFBinaryReader.h 19 class Module;
Relocator.h 23 class Module;
66 Module& pModule,
96 Module& pModule,
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.h 97 Module& pModule,
102 Module& pModule,
139 Module& pModule,
144 Module& pModule,
  /frameworks/compile/slang/BitWriter_2_9/
ReaderWriter_2_9.h 20 class Module;
34 llvm::Module *getLazyBitcodeModule(llvm::MemoryBuffer *Buffer,
47 /// ParseBitcodeFile - Read the specified bitcode file, returning the module.
50 llvm::Module *ParseBitcodeFile(llvm::MemoryBuffer *Buffer, llvm::LLVMContext& Context,
53 /// WriteBitcodeToFile - Write the specified module to the specified
56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
58 /// createBitcodeWriterPass - Create and return a pass that writes the module
  /frameworks/compile/slang/BitWriter_2_9_func/
ReaderWriter_2_9_func.h 20 class Module;
34 llvm::Module *getLazyBitcodeModule(llvm::MemoryBuffer *Buffer,
47 /// ParseBitcodeFile - Read the specified bitcode file, returning the module.
50 llvm::Module *ParseBitcodeFile(llvm::MemoryBuffer *Buffer, llvm::LLVMContext& Context,
53 /// WriteBitcodeToFile - Write the specified module to the specified
56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
58 /// createBitcodeWriterPass - Create and return a pass that writes the module
  /frameworks/compile/slang/BitWriter_3_2/
ReaderWriter_3_2.h 20 class Module;
34 llvm::Module *getLazyBitcodeModule(llvm::MemoryBuffer *Buffer,
47 /// ParseBitcodeFile - Read the specified bitcode file, returning the module.
50 llvm::Module *ParseBitcodeFile(llvm::MemoryBuffer *Buffer, llvm::LLVMContext& Context,
53 /// WriteBitcodeToFile - Write the specified module to the specified
56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
58 /// createBitcodeWriterPass - Create and return a pass that writes the module
  /art/compiler/dex/
frontend.h 29 class Module;
92 ::llvm::Module* GetLLVMModule() {
106 ::llvm::Module* llvm_module_; // Managed by context_.
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader.cc 5 // This example demonstrates how to load content of the page into NaCl module.
10 #include "ppapi/cpp/module.h"
66 class URLLoaderModule : public pp::Module {
68 URLLoaderModule() : pp::Module() {}
78 Module* CreateModule() { return new URLLoaderModule(); }
  /external/chromium_org/ppapi/cpp/private/
instance_private.cc 21 Module* module_singleton = Module::Get();
40 Module::Get()->AddPluginInterface(PPP_INSTANCE_PRIVATE_INTERFACE,
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
irt_manifest_file_test.cc 21 #include "ppapi/cpp/module.h"
102 class TestModule : public pp::Module {
104 TestModule() : pp::Module() {}
113 Module* CreateModule() {
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 62 const Module *M;
87 /// getModule - The module within which the GC strategy is operating.
89 const Module &getModule() const { return *M; }
146 virtual bool initializeCustomLowering(Module &F);
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.h 28 class Module;
82 void EmitStartOfAsmFile(Module &M);
83 void EmitEndOfAsmFile(Module &M);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCExpand.cpp 44 class Module;
54 virtual bool doInitialization(Module &M);
80 bool ObjCARCExpand::doInitialization(Module &M) {
89 // If nothing in the Module uses ARC, don't do anything.
  /external/llvm/tools/llvm-diff/
DifferenceEngine.h 1 //===-- DifferenceEngine.h - Module comparator ------------------*- C++ -*-===//
11 // which structurally compares functions within a module.
29 class Module;
64 void diff(Module *L, Module *R);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 26 #include "llvm/IR/Module.h"
43 Module *createEmptyModule(StringRef Name = StringRef()) {
44 Module * M = new Module(Name, Context);
50 Function *startFunction(Module *M, StringRef Name) {
68 Function *insertSimpleCallFunction(Module *M, Function *Callee) {
85 Function *insertMainFunction(Module *M, uint32_t returnCode) {
96 // in the current module and returns a pointer to it.
97 Function *insertAddFunction(Module *M, StringRef Name = "add") {
111 Function *insertExternalReferenceToFunction(Module *M, StringRef Name
    [all...]

Completed in 1998 milliseconds

1 2 3 4 5 67 8 91011>>