diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 20:26:41 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 20:26:41 +0000 | 
| commit | ff0cc061ecf297f1556e906d229826fd709f37d6 (patch) | |
| tree | bd13a22d9db57ccf3eddbc07b32c18109521d050 /contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h | |
| parent | e14ba20ace4c6ab45aca5130defd992ab7d6bf5f (diff) | |
| parent | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (diff) | |
Notes
Diffstat (limited to 'contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h')
| -rw-r--r-- | contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h | 26 | 
1 files changed, 13 insertions, 13 deletions
diff --git a/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h b/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h index 63e34123d858..93a168485a54 100644 --- a/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h +++ b/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h @@ -11,12 +11,13 @@  #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFSTRINGPOOL_H  #include "llvm/ADT/StringMap.h" -#include "llvm/CodeGen/AsmPrinter.h" +#include "llvm/CodeGen/DwarfStringPoolEntry.h"  #include "llvm/Support/Allocator.h"  #include <utility>  namespace llvm { +class AsmPrinter;  class MCSymbol;  class MCSection;  class StringRef; @@ -25,25 +26,24 @@ class StringRef;  // A String->Symbol mapping of strings used by indirect  // references.  class DwarfStringPool { -  StringMap<std::pair<MCSymbol *, unsigned>, BumpPtrAllocator &> Pool; +  typedef DwarfStringPoolEntry EntryTy; +  StringMap<EntryTy, BumpPtrAllocator &> Pool;    StringRef Prefix; +  unsigned NumBytes = 0; +  bool ShouldCreateSymbols;  public: -  DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix) -      : Pool(A), Prefix(Prefix) {} +  typedef DwarfStringPoolEntryRef EntryRef; -  void emit(AsmPrinter &Asm, const MCSection *StrSection, -            const MCSection *OffsetSection = nullptr); +  DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix); -  /// \brief Returns an entry into the string pool with the given -  /// string text. -  MCSymbol *getSymbol(AsmPrinter &Asm, StringRef Str); - -  /// \brief Returns the index into the string pool with the given -  /// string text. -  unsigned getIndex(AsmPrinter &Asm, StringRef Str); +  void emit(AsmPrinter &Asm, MCSection *StrSection, +            MCSection *OffsetSection = nullptr);    bool empty() const { return Pool.empty(); } + +  /// Get a reference to an entry in the string pool. +  EntryRef getEntry(AsmPrinter &Asm, StringRef Str);  };  }  #endif  | 
