Home | History | Annotate | Download | only in llvm-objdump

Lines Matching refs:Symbols

222     // Make a list of all the symbols in this section.
223 std::vector<std::pair<uint64_t, StringRef> > Symbols;
235 Symbols.push_back(std::make_pair(Address, Name));
239 // Sort the symbols by address, just in case they didn't come in that way.
240 array_pod_sort(Symbols.begin(), Symbols.end());
269 // If the section has no symbols just insert a dummy one and disassemble
271 if (Symbols.empty())
272 Symbols.push_back(std::make_pair(0, name));
329 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
330 uint64_t Start = Symbols[si].first;
337 else if (Symbols[si + 1].first != Start)
338 End = Symbols[si + 1].first - 1;
343 outs() << '\n' << Symbols[si].second << ":\n";