Searched refs:symtab (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/linkloader/android/
H A Dlibrsloader.cpp108 ELFSectionSymTab<32> *symtab = local
109 static_cast<ELFSectionSymTab<32> *>(object->getSectionByName(".symtab"));
111 if (!symtab) {
115 ELFSymbol<32> *symbol = symtab->getByName(name);
130 ELFSectionSymTab<32> *symtab = local
131 static_cast<ELFSectionSymTab<32> *>(object->getSectionByName(".symtab"));
133 if (!symtab) {
137 ELFSymbol<32> *symbol = symtab->getByName(name);
148 ELFSectionSymTab<32> *symtab = static_cast<ELFSectionSymTab<32> *>( local
149 unwrap(object)->getSectionByName(".symtab"));
161 ELFSectionSymTab<32> *symtab = static_cast<ELFSectionSymTab<32> *>( local
[all...]
/frameworks/compile/linkloader/include/impl/
H A DELFObject.hxx64 ELFSectionSymTabTy *symtab = local
65 static_cast<ELFSectionSymTabTy *>(object->getSectionByName(".symtab"));
66 rsl_assert(symtab && "Symtab is required.");
67 symtab->buildNameMap();
131 ELFSectionSymTabTy *symtab = local
132 static_cast<ELFSectionSymTabTy *>(getSectionByName(".symtab"));
133 rsl_assert(symtab && "Symtab is required.");
138 ELFSymbolTy *sym = (*symtab)[rel->getSymTabIndex()];
360 ELFSectionSymTabTy *symtab = local
361 static_cast<ELFSectionSymTabTy *>(getSectionByName(".symtab"));
414 ELFSectionSymTabTy *symtab = local
462 ELFSectionSymTabTy *symtab = local
624 ELFSectionSymTabTy *symtab = local
[all...]
/frameworks/compile/linkloader/
H A Dmain.cpp154 ELFSectionSymTab<Bitwidth> *symtab = local
156 object->getSectionByName(".symtab"));
164 void *main_addr = symtab->getByName("main")->getAddress(machine);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp693 /// In ELF executable files, regular name pools are .symtab, .strtab,
702 size_t symtab = 1; local
710 // compute size of .symtab, .dynsym and .strtab
719 ++symtab;
771 file_format->getSymTab().setSize(symtab*sizeof(llvm::ELF::Elf32_Sym));
773 file_format->getSymTab().setSize(symtab*sizeof(llvm::ELF::Elf64_Sym));
782 // .dynstr, .symtab, .strtab and .hash, we can not reserve non-DT_NEEDED
789 /// emitRegNamePools - emit regular name pools - .symtab, .strtab
857 // compute size of .symtab, .dynsym and .strtab
1195 // @ref Google gold linker: symtab
[all...]

Completed in 427 milliseconds