Searched refs:Symbols (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-9.3-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp154 std::vector<SymbolRef> &Symbols,
160 Symbols.push_back(*SI);
256 std::vector<SymbolRef> Symbols; local
260 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
264 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
347 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
349 Symbols[SymIdx].getName(SymName);
352 Symbols[SymIdx].getType(ST);
358 Sections[SectIdx].containsSymbol(Symbols[SymId
151 getSectionsAndSymbols(const MachO::mach_header Header, MachOObjectFile *MachOObj, std::vector<SectionRef> &Sections, std::vector<SymbolRef> &Symbols, SmallVectorImpl<uint64_t> &FoundFns, uint64_t &BaseSegmentAddress) argument
[all...]
H A Dllvm-objdump.cpp398 std::vector<std::pair<uint64_t, StringRef> > Symbols; local
411 Symbols.push_back(std::make_pair(Address, Name));
416 array_pod_sort(Symbols.begin(), Symbols.end());
447 if (Symbols.empty())
448 Symbols.push_back(std::make_pair(0, name));
465 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
466 uint64_t Start = Symbols[si].first;
473 else if (Symbols[si + 1].first != Start)
474 End = Symbols[s
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp55 /// Symbols - The symbols for the label. This is a pointer union that is
57 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
85 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
86 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
106 if (!Entry.Symbols.isNull()) {
108 if (Entry.Symbols.is<MCSymbol*>())
109 return Entry.Symbols.get<MCSymbol*>();
110 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
120 Entry.Symbols = Result;
133 if (Entry.Symbols
[all...]
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h37 extern llvm::cl::opt<bool> Symbols;
H A Dllvm-readobj.cpp96 cl::opt<bool> Symbols("symbols",
100 cl::aliasopt(Symbols));
217 if (opts::Symbols)
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DELFYAML.h83 LocalGlobalWeakSymbols Symbols; member in struct:llvm::ELFYAML::Object
147 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
H A DCOFFYAML.h65 std::vector<Symbol> Symbols; member in struct:llvm::COFFYAML::Object
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h94 const SymbolTableMap &Symbols,
H A DRuntimeDyldMachO.cpp328 const SymbolTableMap &Symbols,
364 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
365 if (lsi != Symbols.end()) {
324 processRelocationRef(unsigned SectionID, RelocationRef RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
H A DRuntimeDyldELF.h140 const SymbolTableMap &Symbols,
H A DRuntimeDyldImpl.h180 // Relocations to external symbols that are not yet resolved. Symbols are
303 const SymbolTableMap &Symbols,
H A DRuntimeDyldELF.cpp854 const SymbolTableMap &Symbols,
872 SymbolTableMap::const_iterator lsi = Symbols.end();
875 lsi = Symbols.find(TargetName.data());
878 if (lsi != Symbols.end()) {
850 processRelocationRef(unsigned SectionID, RelocationRef RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h85 // in 'buffer', and Symbols[i-1] records the Value*.
94 SmallVector<const Value *, 4> Symbols; member in class:llvm::NVPTXAsmPrinter::AggBuffer
133 Symbols.push_back(GVar);
156 const Value *v = Symbols[nSym];
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DELFYAML.cpp245 // No SHT_SYMTAB. Use the top-level `Symbols` key instead.
314 IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) {
315 IO.mapOptional("Local", Symbols.Local);
316 IO.mapOptional("Global", Symbols.Global);
317 IO.mapOptional("Weak", Symbols.Weak);
334 IO.mapOptional("Symbols", Object.Symbols);
313 mapping( IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) argument
H A DCOFFYAML.cpp277 IO.mapRequired("symbols", Obj.Symbols);
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp133 symbols Symbols; member in class:__anon2271::WinCOFFObjectWriter
314 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
321 return createCOFFEntity<COFFSymbol>(Name, Symbols);
329 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
723 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
747 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
907 for (symbols::iterator i = Symbols
[all...]
H A DMCContext.cpp43 Allocator(), Symbols(Allocator), UsedNames(Allocator),
85 Symbols.clear();
122 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
200 return Symbols.lookup(Name);
/freebsd-9.3-release/contrib/llvm/include/llvm/MC/
H A DMCAssembler.h847 iplist<MCSymbolData> Symbols; member in class:llvm::MCAssembler
1051 const SymbolDataListType &getSymbolList() const { return Symbols; }
1052 SymbolDataListType &getSymbolList() { return Symbols; }
1054 symbol_iterator symbol_begin() { return Symbols.begin(); }
1055 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
1057 symbol_iterator symbol_end() { return Symbols.end(); }
1058 const_symbol_iterator symbol_end() const { return Symbols.end(); }
1060 size_t symbol_size() const { return Symbols.size(); }
H A DMCContext.h70 /// Symbols - Bindings of names to symbols.
71 SymbolTable Symbols; member in class:llvm::MCContext
129 /// Symbols created for the start and end of this section.
228 return Symbols;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h85 typedef llvm::DenseSet<SymbolRef> Symbols; typedef in class:clang::ento::BugReport
93 SmallVector<Symbols *, 2> interestingSymbols;
137 Symbols &getInterestingSymbols();
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Drcssyn.c195 struct assoc * Symbols; variable in typeref:struct:assoc
277 LastSymbol = &Symbols;
H A Drcsedit.c1765 for (next = Symbols; next; next = next->nextassoc)
1781 next->nextassoc = Symbols;
1782 Symbols = next;
H A Drcsgen.c498 curassoc = Symbols;
/freebsd-9.3-release/contrib/llvm/lib/LTO/
H A DLTOModule.cpp529 StringMap<State> Symbols; member in class:__anon2246::RecordStreamer
532 State &S = Symbols[Symbol.getName()];
546 State &S = Symbols[Symbol.getName()];
561 State &S = Symbols[Symbol.getName()];
606 return Symbols.begin();
610 return Symbols.end();
/freebsd-9.3-release/contrib/binutils/ld/scripttempl/
H A Dmep.sc411 Symbols in the DWARF debugging sections are relative to the beginning

Completed in 373 milliseconds

12