mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-18 11:26:29 +00:00

Object files have symbol records not aligned to any particular boundary (e.g. 1-byte aligned), while PDB files have symbol records padded to 4-byte aligned boundaries. Since they share the same reading / writing code, we have to provide an option to specify the alignment and propagate it up to the producer or consumer who knows what the alignment is supposed to be for the given container type. Added a test for this by modifying the existing PDB -> YAML -> PDB round-tripping code to round trip symbol records as well as types. Differential Revision: https://reviews.llvm.org/D33785 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304484 91177308-0d34-0410-b5e6-96231b3b80d8
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
//===- SymbolSerializer.cpp -------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/DebugInfo/CodeView/SymbolSerializer.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::codeview;
|
|
|
|
SymbolSerializer::SymbolSerializer(BumpPtrAllocator &Allocator,
|
|
CodeViewContainer Container)
|
|
: Storage(Allocator), RecordBuffer(MaxRecordLength),
|
|
Stream(RecordBuffer, llvm::support::little), Writer(Stream),
|
|
Mapping(Writer, Container) {}
|
|
|
|
Error SymbolSerializer::visitSymbolBegin(CVSymbol &Record) {
|
|
assert(!CurrentSymbol.hasValue() && "Already in a symbol mapping!");
|
|
|
|
Writer.setOffset(0);
|
|
|
|
if (auto EC = writeRecordPrefix(Record.kind()))
|
|
return EC;
|
|
|
|
CurrentSymbol = Record.kind();
|
|
if (auto EC = Mapping.visitSymbolBegin(Record))
|
|
return EC;
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
Error SymbolSerializer::visitSymbolEnd(CVSymbol &Record) {
|
|
assert(CurrentSymbol.hasValue() && "Not in a symbol mapping!");
|
|
|
|
if (auto EC = Mapping.visitSymbolEnd(Record))
|
|
return EC;
|
|
|
|
uint32_t RecordEnd = Writer.getOffset();
|
|
uint16_t Length = RecordEnd - 2;
|
|
Writer.setOffset(0);
|
|
if (auto EC = Writer.writeInteger(Length))
|
|
return EC;
|
|
|
|
uint8_t *StableStorage = Storage.Allocate<uint8_t>(RecordEnd);
|
|
::memcpy(StableStorage, &RecordBuffer[0], RecordEnd);
|
|
Record.RecordData = ArrayRef<uint8_t>(StableStorage, RecordEnd);
|
|
CurrentSymbol.reset();
|
|
|
|
return Error::success();
|
|
}
|