LLVM 20.0.0git
Public Member Functions | List of all members
llvm::StringToOffsetTable Class Reference

StringToOffsetTable - This class uniques a bunch of nul-terminated strings and keeps track of their offset in a massive contiguous string allocation. More...

#include "llvm/TableGen/StringToOffsetTable.h"

Public Member Functions

bool empty () const
 
size_t size () const
 
unsigned GetOrAddStringOffset (StringRef Str, bool appendZero=true)
 
std::optional< unsignedGetStringOffset (StringRef Str) const
 
void EmitStringLiteralDef (raw_ostream &OS, const Twine &Decl, const Twine &Indent=" ") const
 
void EmitString (raw_ostream &O) const
 
void EmitCharArray (raw_ostream &O)
 Emit the string using character literals.
 

Detailed Description

StringToOffsetTable - This class uniques a bunch of nul-terminated strings and keeps track of their offset in a massive contiguous string allocation.

It can then output this string blob and use indexes into the string to reference each piece.

Definition at line 25 of file StringToOffsetTable.h.

Member Function Documentation

◆ EmitCharArray()

void llvm::StringToOffsetTable::EmitCharArray ( raw_ostream O)
inline

Emit the string using character literals.

MSVC has a limitation that string literals cannot be longer than 64K.

Definition at line 112 of file StringToOffsetTable.h.

◆ EmitString()

void llvm::StringToOffsetTable::EmitString ( raw_ostream O) const
inline

Definition at line 75 of file StringToOffsetTable.h.

◆ EmitStringLiteralDef()

void llvm::StringToOffsetTable::EmitStringLiteralDef ( raw_ostream OS,
const Twine Decl,
const Twine Indent = "  " 
) const
inline

Definition at line 56 of file StringToOffsetTable.h.

References llvm::formatv(), and OS.

◆ empty()

bool llvm::StringToOffsetTable::empty ( ) const
inline

Definition at line 30 of file StringToOffsetTable.h.

References llvm::StringMapImpl::empty().

◆ GetOrAddStringOffset()

unsigned llvm::StringToOffsetTable::GetOrAddStringOffset ( StringRef  Str,
bool  appendZero = true 
)
inline

◆ GetStringOffset()

std::optional< unsigned > llvm::StringToOffsetTable::GetStringOffset ( StringRef  Str) const
inline

◆ size()

size_t llvm::StringToOffsetTable::size ( ) const
inline

Definition at line 31 of file StringToOffsetTable.h.

Referenced by GetOrAddStringOffset().


The documentation for this class was generated from the following file: