[lld][ELF] Rename SymbolTable::symbols() to SymbolTable::getSymbols(). NFC
authorSam Clegg <sbc@chromium.org>
Fri, 29 Jul 2022 17:16:57 +0000 (10:16 -0700)
committerSam Clegg <sbc@chromium.org>
Fri, 19 Aug 2022 21:56:08 +0000 (14:56 -0700)
commit2cd4cd9a326fd918374ce9330fc3a4e2c642e1b0
tree04a3bc0d2948523b09c91d2d2f2c327274e7f471
parent57c9780d60b15baf0eba4393857affce47f60aa7
[lld][ELF] Rename SymbolTable::symbols() to SymbolTable::getSymbols(). NFC

This change renames this method match its original name and the name
used in the wasm linker.

Back in d8f8abbd4a2823f223bd7bc56445541fb221b512 the ELF SymbolTable
method `getSymbols()` was replaced with `forEachSymbol`.

Then in a2fc96441788fba1e4709d63677f34ed8e321dae `forEachSymbol` was
replaced with a `llvm::iterator_range`.

Then in e9262edf0d11a907763098d8e101219ccd9c43e9 we came full circle
and the `llvm::iterator_range` was replaced with a `symbols()` accessor
that was identical the original `getSymbols()`.

`getSymbols` also matches the name used elsewhere in the ELF linker as
well as in both COFF and wasm backend (e.g. `InputFiles.h` and
`SyntheticSections.h`)

Differential Revision: https://reviews.llvm.org/D130787
lld/ELF/Driver.cpp
lld/ELF/ICF.cpp
lld/ELF/LTO.cpp
lld/ELF/MarkLive.cpp
lld/ELF/Relocations.cpp
lld/ELF/SymbolTable.h
lld/ELF/Writer.cpp