Home
last modified time | relevance | path

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

/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DDebugData.h216 class DebugAddrWriter; variable
226 static void setAddressWriter(DebugAddrWriter *AddrW) { AddrWriter = AddrW; } in setAddressWriter()
254 static DebugAddrWriter *AddrWriter;
303 class DebugAddrWriter {
305 DebugAddrWriter() = delete;
306 DebugAddrWriter(BinaryContext *BC_);
307 virtual ~DebugAddrWriter(){}; in ~DebugAddrWriter()
388 class DebugAddrWriterDwarf5 : public DebugAddrWriter {
391 DebugAddrWriterDwarf5(BinaryContext *BC) : DebugAddrWriter(BC) {} in DebugAddrWriterDwarf5()
561 static void setAddressWriter(DebugAddrWriter *AddrW) { AddrWriter = AddrW; } in setAddressWriter()
[all …]
/llvm-project-15.0.7/bolt/lib/Core/
H A DDebugData.cpp170 DebugAddrWriter *DebugRangeListsSectionWriter::AddrWriter = nullptr;
310 DebugAddrWriter::DebugAddrWriter(BinaryContext *Bc) { BC = Bc; } in DebugAddrWriter() function in llvm::bolt::DebugAddrWriter
312 void DebugAddrWriter::AddressForDWOCU::dump() { in dump()
320 uint32_t DebugAddrWriter::getIndexFromAddress(uint64_t Address, DWARFUnit &CU) { in getIndexFromAddress()
339 void DebugAddrWriter::addIndexAddress(uint64_t Address, uint32_t Index, in addIndexAddress()
354 AddressSectionBuffer DebugAddrWriter::finalize() { in finalize()
482 uint64_t DebugAddrWriter::getOffset(DWARFUnit &Unit) { in getOffset()
562 DebugAddrWriter &AddrWriter, in writeLegacyLocList()
596 DebugAddrWriter &AddrWriter, DebugBufferVector &LocBodyBuffer, in writeDWARF5LocList()
694 DebugAddrWriter *DebugLoclistWriter::AddrWriter = nullptr;
/llvm-project-15.0.7/bolt/include/bolt/Rewrite/
H A DDWARFRewriter.h53 std::unique_ptr<DebugAddrWriter> AddrWriter;
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DDWARFRewriter.cpp186 AddrWriter = std::make_unique<DebugAddrWriter>(&BC); in updateDebugInfo()