/frameworks/compile/mclinker/lib/Script/ |
EntryCmd.cpp | 34 void EntryCmd::activate(Module& pModule) 36 LinkerScript& script = pModule.getScript();
|
OutputArchCmd.cpp | 32 void OutputArchCmd::activate(Module& pModule)
|
SectionsCmd.cpp | 66 void SectionsCmd::activate(Module& pModule) 74 (*it)->activate(pModule); 80 (*it)->activate(pModule); 84 (*assign)->activate(pModule);
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
AArch64MCLinker.cpp | 25 mcld::Module& pModule, 38 return new AArch64ELFMCLinker(pConfig, pModule, pFileHandle);
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMMCLinker.cpp | 24 mcld::Module& pModule, 37 return new ARMELFMCLinker(pConfig, pModule, pFileHandle);
|
ARMLDBackend.h | 49 void initTargetSections(Module& pModule, ObjectBuilder& pBuilder); 52 void initTargetSymbols(IRBuilder& pBuilder, Module& pModule); 65 void doPostLayout(Module& pModule, IRBuilder& pBuilder); 119 bool mergeSection(Module& pModule, const Input& pInput, LDSection& pSection); 123 void setUpReachedSectionsForGC(const Module& pModule, 148 bool doRelax(Module& pModule, IRBuilder& pBuilder, bool& pFinished); 163 virtual void doCreateProgramHdrs(Module& pModule);
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonMCLinker.cpp | 23 mcld::Module& pModule, 37 return new HexagonELFMCLinker(pConfig, pModule, pFileHandle);
|
HexagonLDBackend.h | 51 bool allocateCommonSymbols(Module& pModule); 54 void doPostLayout(Module& pModule, IRBuilder& pBuilder); 97 void initTargetSections(Module& pModule, ObjectBuilder& pBuilder); 99 void initTargetSymbols(IRBuilder& pBuilder, Module& pModule); 107 bool doRelax(Module& pModule, IRBuilder& pBuilder, bool& pFinished); 130 bool mergeSection(Module& pModule, const Input& pInput, LDSection& pSection); 164 void doCreateProgramHdrs(Module& pModule);
|
HexagonRelocator.h | 84 Module& pModule, 90 Module& pModule, 130 Module& pModule, 135 Module& pModule,
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsMCLinker.cpp | 22 mcld::Module& pModule, 35 return new mcld::MipsELFMCLinker(pConfig, pModule, pFileHandle);
|
/frameworks/compile/mclinker/lib/Target/X86/ |
X86MCLinker.cpp | 24 mcld::Module& pModule, 37 return new X86ELFMCLinker(pConfig, pModule, pFileHandle);
|
X86LDBackend.h | 47 void doPostLayout(Module& pModule, IRBuilder& pBuilder); 82 virtual void initTargetSections(Module& pModule, ObjectBuilder& pBuilder) = 0; 84 void initTargetSymbols(IRBuilder& pBuilder, Module& pModule); 122 void doCreateProgramHdrs(Module& pModule); 135 void addEhFrameForPLT(Module& pModule); 168 void initTargetSections(Module& pModule, ObjectBuilder& pBuilder); 211 void initTargetSections(Module& pModule, ObjectBuilder& pBuilder);
|
X86Relocator.h | 86 Module& pModule, 105 Module& pModule, 110 Module& pModule, 161 Module& pModule, 166 Module& pModule, 221 Module& pModule, 226 Module& pModule,
|
/frameworks/compile/mclinker/include/mcld/Target/ |
GNULDBackend.h | 57 GNUArchiveReader* createArchiveReader(Module& pModule); 79 bool initStandardSymbols(IRBuilder& pBuilder, Module& pModule); 112 void sizeShstrtab(Module& pModule); 117 virtual void sizeNamePools(Module& pModule); 124 virtual void emitRegNamePools(const Module& pModule, FileOutputBuffer& pOutput); 127 virtual void emitDynNamePools(Module& pModule, FileOutputBuffer& pOutput); 148 virtual void orderSymbolTable(Module& pModule); 191 virtual bool allocateCommonSymbols(Module& pModule); 299 llvm::StringRef getEntry(const Module& pModule) const; 331 void createAndSizeEhFrameHdr(Module& pModule); [all...] |
ELFMCLinker.h | 28 mcld::Module& pModule,
|
/frameworks/compile/mclinker/include/mcld/Script/ |
EntryCmd.h | 37 void activate(Module& pModule);
|
OutputArchCmd.h | 37 void activate(Module& pModule);
|
OutputCmd.h | 38 void activate(Module& pModule);
|
RpnEvaluator.h | 24 RpnEvaluator(const Module& pModule, const TargetLDBackend& pBackend);
|
SearchDirCmd.h | 32 void activate(Module& pModule);
|
/frameworks/compile/mclinker/lib/Core/ |
Linker.cpp | 66 bool Linker::link(Module& pModule, IRBuilder& pBuilder) 68 if (!normalize(pModule, pBuilder)) 71 if (!resolve(pModule)) 78 bool Linker::normalize(Module& pModule, IRBuilder& pBuilder) 87 if (!m_pObjLinker->initialize(pModule, pBuilder)) 110 mcld::outs() << "** name\ttype\tpath\tsize (" << pModule.getInputTree().size() << ")\n"; 111 InputTree::const_dfs_iterator input, inEnd = pModule.getInputTree().dfs_end(); 112 for (input=pModule.getInputTree().dfs_begin(); input!=inEnd; ++input) { 144 else if (pModule.getLibraryList().empty()) { 166 bool Linker::resolve(Module& pModule) [all...] |
/frameworks/compile/libbcc/lib/Core/ |
Source.cpp | 55 void Source::setModule(llvm::Module *pModule) { 56 if (!mNoDelete && (mModule != pModule)) delete mModule; 57 mModule = pModule; 115 Source *Source::CreateFromModule(BCCContext &pContext, llvm::Module &pModule, 119 if (llvm::verifyModule(pModule, &ErrorStream)) { 125 Source *result = new (std::nothrow) Source(pContext, pModule, pNoDelete); 128 pModule.getModuleIdentifier().c_str()); 133 Source::Source(BCCContext &pContext, llvm::Module &pModule, bool pNoDelete) 134 : mContext(pContext), mModule(&pModule), mNoDelete(pNoDelete) {
|
/external/pdfium/core/src/fxcodec/jbig2/ |
JBig2_Define.h | 27 void _FaxG4Decode(void *pModule, FX_LPCBYTE src_buf, FX_DWORD src_size, int* pbitpos, FX_LPBYTE dest_buf, int width, int height, int pitch = 0);
|
/frameworks/compile/mclinker/lib/LD/ |
ELFObjectWriter.cpp | 54 void ELFObjectWriter::writeSection(Module& pModule, 105 emitEhFrame(pModule, *section->getEhFrame(), region); 121 std::error_code ELFObjectWriter::writeObject(Module& pModule, 133 target().orderSymbolTable(pModule); 139 target().emitDynNamePools(pModule, pOutput); 144 target().emitRegNamePools(pModule, pOutput); 155 writeSection(pModule, pOutput, *sect); 160 Module::iterator sect, sectEnd = pModule.end(); 161 for (sect = pModule.begin(); sect != sectEnd; ++sect) 162 writeSection(pModule, pOutput, *sect) [all...] |
/frameworks/compile/mclinker/include/mcld/Object/ |
ObjectLinker.h | 43 bool initialize(Module& pModule, IRBuilder& pBuilder); 71 void addSymbolsToOutput(Module& pModule); 165 void addSymbolToOutput(ResolveInfo& pInfo, Module& pModule);
|