[llvm-nm] - Move MachO specific logic out from the dumpSymbolNamesFromObject(). NFC.
authorGeorgii Rymar <grimar@accesssoftek.com>
Thu, 14 Jan 2021 10:45:44 +0000 (13:45 +0300)
committerGeorgii Rymar <grimar@accesssoftek.com>
Fri, 15 Jan 2021 09:18:37 +0000 (12:18 +0300)
commitbfb8f45ef3f46102d290f11039faa82456c920ae
tree4fdb569a0a9868465c261b13d290842bc5b707b0
parent104a9f99ccab9d6dbc07a70f569246c23feaf4c1
[llvm-nm] - Move MachO specific logic out from the dumpSymbolNamesFromObject(). NFC.

`dumpSymbolNamesFromObject` is the method that dumps symbol names.

It has 563 lines, mostly because of huge piece of MachO specific code.
In this patch I move it to separate helper method.

The new size of `dumpSymbolNamesFromObject` is 93 lines. With it it becomes
much easier to maintain it.

I had to change the type of 2 name fields to `std::string`, because MachO logic
uses temporarily buffer strings (e.g `ExportsNameBuffer`, `BindsNameBuffer` etc):

```
  std::string ExportsNameBuffer;
  raw_string_ostream EOS(ExportsNameBuffer);
```

these buffers were moved to `dumpSymbolsFromDLInfoMachO` by this patch and
invalidated after return. Technically, before this patch we had a situation
when local pointers (symbol names) were assigned to members of global static `SymbolList`,
what is dirty by itself.

Differential revision: https://reviews.llvm.org/D94667
llvm/tools/llvm-nm/llvm-nm.cpp