Home
last modified time | relevance | path

Searched refs:Augmentation (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h572 SmallString<8> Augmentation, uint8_t AddressSize, in CIE() argument
580 Version(Version), Augmentation(std::move(Augmentation)), in CIE()
592 StringRef getAugmentationString() const { return Augmentation; } in getAugmentationString()
613 const SmallString<8> Augmentation; variable
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1609 SmallString<8> Augmentation; in EmitCIE() local
1610 Augmentation += "z"; in EmitCIE()
1612 Augmentation += "P"; in EmitCIE()
1614 Augmentation += "L"; in EmitCIE()
1615 Augmentation += "R"; in EmitCIE()
1617 Augmentation += "S"; in EmitCIE()
1619 Augmentation += "B"; in EmitCIE()
1621 Augmentation += "G"; in EmitCIE()
1622 Streamer.emitBytes(Augmentation); in EmitCIE()
/src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp969 << " Augmentation: \"" << Augmentation << "\"\n"; in dump()
1085 const char *Augmentation = Data.getCStr(&Offset); in parse() local
1086 StringRef AugmentationString(Augmentation ? Augmentation : ""); in parse()