teak-llvm/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
Zachary Turner ebd3ae8371 [CodeView] Properly align symbol records on read/write.
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

llvm-svn: 304484
2017-06-01 21:52:41 +00:00

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();
}