Searched refs:name (Results 401 - 425 of 1628) sorted by last modified time

<<11121314151617181920>>

/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp113 << symInfo()->name();
118 << symInfo()->name();
127 fatal(diag::unknown_relocation) << type() << symInfo()->name();
/frameworks/compile/mclinker/lib/LD/
H A DArchive.cpp117 /// @param pName - the name of the new archive member
186 /// @param pName - symbol name
197 /// getSymbolName - get the symbol name with the given index
201 return m_SymTab[pSymIdx]->name;
226 /// getStrTable - get the extended name table
232 /// getStrTable - get the extended name table
247 /// @param pName - the name of the member file we want to get
268 error(diag::err_cannot_open_input) << member->name() << member->path();
H A DBranchIsland.cpp31 // island name
86 const std::string& BranchIsland::name() const function in class:BranchIsland
H A DELFDynObjReader.cpp103 note(diag::note_has_no_symtab) << pInput.name()
111 fatal(diag::fatal_cannot_read_strtab) << pInput.name()
H A DELFObjectReader.cpp132 // section name as group signature.
133 signatures().insert((*section)->name(), exist);
135 signatures().insert(signature->name(), exist);
159 // .gnu.linkonce + "." + type + "." + name
160 llvm::StringRef name(llvm::StringRef((*section)->name()).drop_front(14));
161 signatures().insert(name.split(".").second, exist);
163 if (name.startswith("wi")) {
170 fatal(diag::err_cannot_read_section) << (*section)->name();
179 fatal(diag::err_cannot_read_section) << (*section)->name();
[all...]
H A DELFObjectWriter.cpp90 << section->name()
138 // Write out name pool sections: .dynsym, .dynstr, .hash
143 // Write out name pool sections: .symtab, .strtab
280 << entry_symbol->name()
320 unsigned int shstridx = 0; // NULL section has empty name
335 shstridx += ld_sect->name().size() + 1;
384 strcpy((char*)(data + shstrsize), (*section)->name().data());
385 shstrsize += (*section)->name().size() + 1;
H A DELFReader.cpp142 ld_name = section->name();
667 ld_name = section->name();
H A DEhFrame.cpp237 "PR name should be a symbol address or offset");
247 cie->setPersonalityName(rel.symInfo()->outSymbol()->name());
254 "PR name should be a symbol address or offset");
H A DEhFrameReader.cpp147 debug(diag::debug_cannot_scan_eh) << pInput.name();
165 debug(diag::debug_cannot_parse_eh) << pInput.name();
H A DGNUArchiveReader.cpp111 pArchive.addArchiveMember(pArchive.getARFile().name(),
152 /// name table)
175 // parse the member name and nested offset if any
177 llvm::StringRef name_field(header->name, sizeof(header->name));
178 if ('/' != header->name[0]) {
188 // parse the name offset
198 // get the member name from the extended name table
225 // get nested file path, the nested file's member name i
258 const char* name = reinterpret_cast<const char*>(data + number); local
[all...]
H A DGarbageCollection.cpp52 /// shouldKeep - check the section name for the keep sections
199 const std::string input_name = (*obj)->name();
207 sect_map.find(input_name, section->name()).second;
209 shouldKeep(section->name()))
348 debug(diag::debug_print_gc_sections) << section->name()
349 << (*obj)->name();
H A DLDContext.cpp46 if(NULL != *sect_iter && (*sect_iter)->name() == pName)
56 if(NULL != *sect_iter && (*sect_iter)->name() == pName)
67 if (m_SectionTable[result]->name() == pName)
92 if (m_SymTab[sym]->name() == pName)
102 if (m_SymTab[sym]->name() == pName)
H A DNamePool.cpp67 // We should check if there is any symbol with the same name existed.
123 return llvm::StringRef(resolve_info->name(), resolve_info->nameSize());
H A DRelocator.cpp59 std::string sect_name(pSection.name());
62 std::string reloc_sym(pReloc.symInfo()->name());
70 // Function name is only valid for text section
84 caller_file_name = sym.resolveInfo()->name();
89 caller_func_name = sym.name();
H A DSectionSymbolSet.cpp40 llvm::StringRef sym_name = llvm::StringRef(pOutSect.name());
H A DStaticResolver.cpp101 ignore(diag::mark_dynamic_defined) << old->name();
114 ignore(diag::comm_refer_to_define) << old->name();
122 // NOTE: m_Mesg uses 'name' instead of `name' for being compatible to GNU ld.
123 ignore(diag::redefine_common) << old->name();
144 ignore(diag::indirect_refer_to_common) << old->name();
149 fatal(diag::indirect_refer_to_inexist) << pNew.name();
155 // m_Mesg = "indirect symbol `"+pNew.name()+"' to `"+pNew.link()->name()+"' is a loop.";
183 << demangleName(pNew.name())
[all...]
H A DStubFactory.cpp75 // build a name for stub symbol
76 std::string name("__");
77 name.append(pReloc.symInfo()->name())
79 .append(stub->name())
81 .append(islands.first->name());
86 name,
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp44 std::string output_name = (pair.first == NULL) ? pName : pair.first->name();
61 pInputSection.name());
69 pInputSection.name() : pair.first->name();
H A DObjectLinker.cpp124 m_pModule->getNamePool().insertSymbol(*usym, // name
245 << (*lib)->name() << (*lib)->path();
331 error(diag::err_cannot_merge_section) << (*sect)->name()
332 << (*obj)->name();
343 error(diag::err_cannot_merge_section) << (*sect)->name()
344 << (*obj)->name();
357 error(diag::err_cannot_merge_section) << (*sect)->name()
358 << (*obj)->name();
403 LDSection* target = m_pModule->getSection((*out)->name());
456 /// @return if there are some input symbols with the same name t
[all...]
H A DSectionMap.cpp96 : m_Name(pOutputDesc.name()),
211 if ((*out)->name().compare(pOutputSection) == 0)
222 if ((*out)->name().compare(pOutputSection) == 0)
235 if ((*out)->name().compare(pOutputSection) == 0)
241 if ((*in)->getSection()->name().compare(pInputSection) == 0)
268 if ((*out)->name().compare(pOutputDesc.name()) == 0 &&
302 Output* output = new Output(pSection->name());
303 output->append(new Input(pSection->name(), InputSectDesc::NoKeep));
341 llvm::StringRef name(pNam
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DBinaryOp.cpp252 if (sect->name().compare("text-segment") == 0)
254 else if (sect->name().compare("data-segment") == 0)
256 else if (sect->name().compare("bss-segment") == 0)
259 addr = addressMap.find(sect->name());
H A DGroupCmd.cpp62 mcld::outs() << input->name() << " ";
99 (token->name().size() > 0 && token->name()[0] == '/')) {
101 path.append(token->name());
104 path.assign(token->name());
108 script.directories().find(token->name(), Input::Script);
129 path = script.directories().find(token->name(), Input::Archive);
133 path = script.directories().find(token->name(), Input::DynObj);
137 path = script.directories().find(token->name(), Input::Archive);
141 fatal(diag::err_cannot_find_namespec) << token->name();
[all...]
H A DInputSectDesc.cpp44 mcld::outs() << m_Spec.file().name();
53 mcld::outs() << (*it)->name() << " ";
81 mcld::outs() << wildcard->name() << " ";
H A DOperand.cpp175 mcld::outs() << m_pOutputDesc->getSection()->name();
H A DOutputSectDesc.cpp124 mcld::outs() << ":" << (*it)->name() << " ";

Completed in 152 milliseconds

<<11121314151617181920>>