mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
018e1309ce
Stop creating symbols we don't need in `DwarfStringPool`. The consumers only call `DwarfStringPoolEntryRef::getSymbol()` when DWARF is relocatable, so this just stops creating the unused symbols when it's not. This drops memory usage from 851 MB to 845 MB, around 0.7%. (I'm looking at `llc` memory usage on `verify-uselistorder.lto.opt.bc`; see r236629 for details.) llvm-svn: 238122
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
//===- llvm/CodeGen/DwarfStringPoolEntry.h - String pool entry --*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CODEGEN_DWARFSTRINGPOOLENTRY_H
|
|
#define LLVM_CODEGEN_DWARFSTRINGPOOLENTRY_H
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
namespace llvm {
|
|
|
|
class MCSymbol;
|
|
|
|
/// Data for a string pool entry.
|
|
struct DwarfStringPoolEntry {
|
|
MCSymbol *Symbol;
|
|
unsigned Offset;
|
|
unsigned Index;
|
|
};
|
|
|
|
/// String pool entry reference.
|
|
struct DwarfStringPoolEntryRef {
|
|
const StringMapEntry<DwarfStringPoolEntry> *I = nullptr;
|
|
|
|
public:
|
|
DwarfStringPoolEntryRef() = default;
|
|
explicit DwarfStringPoolEntryRef(
|
|
const StringMapEntry<DwarfStringPoolEntry> &I)
|
|
: I(&I) {}
|
|
|
|
explicit operator bool() const { return I; }
|
|
MCSymbol *getSymbol() const {
|
|
assert(I->second.Symbol && "No symbol available!");
|
|
return I->second.Symbol;
|
|
}
|
|
unsigned getOffset() const { return I->second.Offset; }
|
|
unsigned getIndex() const { return I->second.Index; }
|
|
StringRef getString() const { return I->first(); }
|
|
|
|
bool operator==(const DwarfStringPoolEntryRef &X) const { return I == X.I; }
|
|
bool operator!=(const DwarfStringPoolEntryRef &X) const { return I != X.I; }
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|