Home
last modified time | relevance | path

Searched refs:AugmentationStringSize (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp185 uint32_t AugmentationStringSize = sizeof(AugmentationString); member
395 assert(AugmentationStringSize % 4 == 0); in emit()
396 Asm->emitInt32(AugmentationStringSize); in emit()
398 Asm->OutStreamer->emitBytes({AugmentationString, AugmentationStringSize}); in emit()
/src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp464 AugmentationStringSize = alignTo(AS.getU32(C), 4); in extract()
469 if (!AS.isValidOffsetForDataOfSize(C.tell(), AugmentationStringSize)) in extract()
472 AugmentationString.resize(AugmentationStringSize); in extract()
474 AugmentationStringSize); in extract()
/src/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp2920 hdr.AugmentationStringSize = 0; in computeHdrAndAbbrevTable()
2936 hdr.AugmentationStringSize = nd.hdr.AugmentationStringSize; in computeHdrAndAbbrevTable()
2941 hdr.AugmentationStringSize = 0; in computeHdrAndAbbrevTable()
3157 uint32_t hdrSize = getDebugNamesHeaderSize(hdr.AugmentationStringSize); in init()
3249 hdr.AugmentationStringSize); in writeTo()
3251 buf += hdr.AugmentationStringSize; in writeTo()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h400 uint32_t AugmentationStringSize; member