Searched defs:Symbols (Results 1 - 25 of 37) sorted by relevance

12

/external/llvm/lib/Object/
H A DRecordStreamer.h21 StringMap<State> Symbols; member in class:llvm::RecordStreamer
/external/llvm/tools/llvm-pdbdump/
H A DCompilandDumper.h23 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 }; enumerator in enum:llvm::pdb::CompilandDumper::Flags
H A Dllvm-pdbdump.cpp115 cl::opt<bool> Symbols("symbols", cl::desc("Display symbols for each compiland"),
459 if (opts::pretty::Symbols) {
556 opts::pretty::Symbols = true; member in class:opts::pretty
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCVSymbolVisitor.h75 void visitSymbolStream(const CVSymbolArray &Symbols) { argument
76 for (const auto &I : Symbols) {
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
H A DPDBFile.h140 std::unique_ptr<SymbolStream> Symbols; member in class:llvm::pdb::PDBFile
/external/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h87 std::vector<Symbol> Symbols; member in struct:llvm::COFFYAML::Object
H A DELFYAML.h173 LocalGlobalWeakSymbols Symbols; member in struct:llvm::ELFYAML::Object
294 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
/external/llvm/lib/ObjectYAML/
H A DELFYAML.cpp358 // No SHT_SYMTAB. Use the top-level `Symbols` key instead.
668 IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) {
669 IO.mapOptional("Local", Symbols.Local);
670 IO.mapOptional("Global", Symbols.Global);
671 IO.mapOptional("Weak", Symbols.Weak);
826 IO.mapOptional("Symbols", Object.Symbols);
667 mapping( IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) argument
/external/llvm/tools/dsymutil/
H A DDebugMap.h154 return make_range(Symbols.begin(), Symbols.end());
168 StringMap<SymbolMapping> Symbols; member in class:llvm::dsymutil::DebugMapObject
183 std::swap(Symbols, RHS.Symbols);
190 Symbols = std::move(RHS.Symbols);
/external/clang/lib/Format/
H A DSortJavaScriptImports.cpp88 // Symbols from `import {SymbolA, SymbolB, ...} from ...;`.
89 SmallVector<JsImportedSymbol, 1> Symbols; member in struct:clang::format::JsModuleReference
244 SmallVector<JsImportedSymbol, 1> Symbols = Reference.Symbols; local
246 Symbols.begin(), Symbols.end(),
250 if (Symbols == Reference.Symbols) {
257 SourceLocation SymbolsStart = Reference.Symbols.front().Range.getBegin();
258 SourceLocation SymbolsEnd = Reference.Symbols
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyEmittingLayer.h193 auto Symbols = llvm::make_unique<StringMap<const GlobalValue*>>(); local
199 if (auto GV = addGlobalValue(*Symbols, GO, Mang, SearchName,
204 MangledSymbols = std::move(Symbols);
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp56 std::vector<std::pair<SymbolRef, uint64_t>> Symbols = local
58 for (auto &P : Symbols)
63 if (Symbols.empty()) {
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h78 // in 'buffer', and Symbols[i-1] records the Value*.
89 SmallVector<const Value *, 4> Symbols; member in class:llvm::NVPTXAsmPrinter::AggBuffer
90 // SymbolsBeforeStripping[i] is the original form of Symbols[i] before
92 // Symbols[i] == SymbolsBeforeStripping[i]->stripPointerCasts().
95 // emit a "generic()" cast for Symbols[i] depending on the address space of
133 Symbols.push_back(GVar);
157 const Value *v = Symbols[nSym];
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp200 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols; local
269 Symbols.push_back(Sym);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp155 SmallVector<SymbolEntry, 64> Symbols; local
183 Symbols.push_back(SymbolEntry(STE->Value, Name));
189 array_pod_sort(Symbols.begin(), Symbols.end());
192 if (!Symbols.size())
198 for (unsigned i = 0, e = Symbols.size() - 1; i != e; ++i) {
199 uint64_t StartOffset = Sect->Address + Symbols[i].first;
200 uint64_t EndOffset = Symbols[i + 1].first - 1;
201 DEBUG(dbgs() << "Extracting function: " << Symbols[i].second
203 extractFunction(Symbols[
294 SmallVector<SymbolEntry, 64> Symbols; local
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
H A Dllvm-objdump.cpp178 std::vector<std::pair<uint64_t, StringRef> > Symbols; local
188 Symbols.push_back(std::make_pair(Address, Name));
193 array_pod_sort(Symbols.begin(), Symbols.end());
215 if (Symbols.empty())
216 Symbols.push_back(std::make_pair(0, name));
261 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
262 uint64_t Start = Symbols[si].first;
269 else if (Symbols[si + 1].first != Start)
270 End = Symbols[s
[all...]
H A DMachODump.cpp218 std::vector<Symbol> &Symbols,
261 Symbols.push_back(copySymbol(STE));
266 Symbols.push_back(copySymbol(STE));
326 std::vector<Symbol> Symbols; local
329 getSectionsAndSymbols(Header, MachOObj.get(), &SymtabLC, Sections, Symbols,
333 std::vector<Symbol> UnsortedSymbols(Symbols);
335 array_pod_sort(Symbols.begin(), Symbols.end());
364 std::vector<Symbol> Symbols; local
366 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols,
214 getSectionsAndSymbols(const macho::Header &Header, MachOObject *MachOObj, InMemoryStruct<macho::SymtabLoadCommand> *SymtabLC, std::vector<Section> &Sections, std::vector<Symbol> &Symbols, SmallVectorImpl<uint64_t> &FoundFns) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp57 /// Symbols - The symbols for the label.
58 TinyPtrVector<MCSymbol *> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
100 if (!Entry.Symbols.empty()) {
102 return Entry.Symbols;
111 Entry.Symbols.push_back(Context.createTempSymbol());
112 return Entry.Symbols;
137 assert(!Entry.Symbols.empty() && "Didn't have a symbol, why a callback?");
143 for (MCSymbol *Sym : Entry.Symbols) {
159 assert(!OldEntry.Symbols.empty() && "Didn't have a symbol, why a callback?");
164 if (NewEntry.Symbols
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp119 const std::vector<ELFYAML::Symbol> &Symbols);
128 void addSymbols(const std::vector<ELFYAML::Symbol> &Symbols,
270 SHeader.sh_info = Doc.Symbols.Local.size() + 1;
283 for (const auto &Sym : Doc.Symbols.Local)
285 for (const auto &Sym : Doc.Symbols.Global)
287 for (const auto &Sym : Doc.Symbols.Weak)
291 addSymbols(Doc.Symbols.Local, Syms, ELF::STB_LOCAL);
292 addSymbols(Doc.Symbols.Global, Syms, ELF::STB_GLOBAL);
293 addSymbols(Doc.Symbols.Weak, Syms, ELF::STB_WEAK);
315 void ELFState<ELFT>::addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, argument
482 buildSymbolIndex(std::size_t &StartIndex, const std::vector<ELFYAML::Symbol> &Symbols) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCContext.h62 /// Symbols - Bindings of names to symbols.
63 SymbolTable Symbols; member in class:llvm::MCContext
161 return Symbols;
/external/llvm/include/llvm/MC/
H A DMCAssembler.h105 SymbolDataListType Symbols; member in class:llvm::MCAssembler
314 symbol_iterator symbol_begin() { return Symbols.begin(); }
315 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
317 symbol_iterator symbol_end() { return Symbols.end(); }
318 const_symbol_iterator symbol_end() const { return Symbols.end(); }
325 size_t symbol_size() const { return Symbols.size(); }
H A DMCContext.h84 SymbolTable Symbols; member in class:llvm::MCContext
314 const SymbolTable &getSymbols() const { return Symbols; }
/external/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp638 bool CVSymbolDumper::dump(const CVSymbolArray &Symbols) { argument
640 Dumper.visitSymbolStream(Symbols);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineModuleInfo.cpp56 /// Symbols - The symbols for the label. This is a pointer union that is
58 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
86 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
87 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
107 if (!Entry.Symbols.isNull()) {
109 if (Entry.Symbols.is<MCSymbol*>())
110 return Entry.Symbols.get<MCSymbol*>();
111 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
121 Entry.Symbols = Result;
134 if (Entry.Symbols
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h86 typedef llvm::DenseSet<SymbolRef> Symbols; typedef in class:clang::ento::BugReport
94 SmallVector<Symbols *, 2> interestingSymbols;
138 Symbols &getInterestingSymbols();

Completed in 942 milliseconds

12