mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
AsmPrinter: Refactor DwarfStringPool::getEntry(), NFC
Move `DwarfStringPool`'s `getEntry()` to the header (and make it a member function) in preparation for calculating symbol offsets on-the-fly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238112 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
556ca517ab
commit
8d2d4e2637
@ -12,10 +12,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static std::pair<MCSymbol *, unsigned> &
|
||||
getEntry(AsmPrinter &Asm,
|
||||
StringMap<std::pair<MCSymbol *, unsigned>, BumpPtrAllocator &> &Pool,
|
||||
StringRef Prefix, StringRef Str) {
|
||||
std::pair<MCSymbol *, unsigned> &DwarfStringPool::getEntry(AsmPrinter &Asm,
|
||||
StringRef Str) {
|
||||
std::pair<MCSymbol *, unsigned> &Entry = Pool[Str];
|
||||
if (!Entry.first) {
|
||||
Entry.second = Pool.size() - 1;
|
||||
@ -24,14 +22,6 @@ getEntry(AsmPrinter &Asm,
|
||||
return Entry;
|
||||
}
|
||||
|
||||
MCSymbol *DwarfStringPool::getSymbol(AsmPrinter &Asm, StringRef Str) {
|
||||
return getEntry(Asm, Pool, Prefix, Str).first;
|
||||
}
|
||||
|
||||
unsigned DwarfStringPool::getIndex(AsmPrinter &Asm, StringRef Str) {
|
||||
return getEntry(Asm, Pool, Prefix, Str).second;
|
||||
}
|
||||
|
||||
void DwarfStringPool::emit(AsmPrinter &Asm, MCSection *StrSection,
|
||||
MCSection *OffsetSection) {
|
||||
if (Pool.empty())
|
||||
|
@ -37,13 +37,20 @@ public:
|
||||
|
||||
/// \brief Returns an entry into the string pool with the given
|
||||
/// string text.
|
||||
MCSymbol *getSymbol(AsmPrinter &Asm, StringRef Str);
|
||||
MCSymbol *getSymbol(AsmPrinter &Asm, StringRef Str) {
|
||||
return getEntry(Asm, Str).first;
|
||||
}
|
||||
|
||||
/// \brief Returns the index into the string pool with the given
|
||||
/// string text.
|
||||
unsigned getIndex(AsmPrinter &Asm, StringRef Str);
|
||||
unsigned getIndex(AsmPrinter &Asm, StringRef Str) {
|
||||
return getEntry(Asm, Str).second;
|
||||
}
|
||||
|
||||
bool empty() const { return Pool.empty(); }
|
||||
|
||||
private:
|
||||
std::pair<MCSymbol *, unsigned> &getEntry(AsmPrinter &Asm, StringRef Str);
|
||||
};
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user