mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-12 13:06:09 +00:00

This was reverted because it was breaking some builds, and because of incorrect error code usage. Since the CL was large and contained many different things, I'm resubmitting it in pieces. This portion is NFC, and consists of: 1) Renaming classes to follow a consistent naming convention. 2) Fixing the const-ness of the interface methods. 3) Adding detailed doxygen comments. 4) Fixing a few instances of passing `const BinaryStream& X`. These are now passed as `BinaryStreamRef X`. llvm-svn: 296394
251 lines
7.4 KiB
C++
251 lines
7.4 KiB
C++
//===- CodeViewRecordIO.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/CodeViewRecordIO.h"
|
|
#include "llvm/DebugInfo/CodeView/CodeView.h"
|
|
#include "llvm/DebugInfo/CodeView/RecordSerialization.h"
|
|
#include "llvm/DebugInfo/MSF/BinaryStreamReader.h"
|
|
#include "llvm/DebugInfo/MSF/BinaryStreamWriter.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::codeview;
|
|
|
|
Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) {
|
|
RecordLimit Limit;
|
|
Limit.MaxLength = MaxLength;
|
|
Limit.BeginOffset = getCurrentOffset();
|
|
Limits.push_back(Limit);
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::endRecord() {
|
|
assert(!Limits.empty() && "Not in a record!");
|
|
Limits.pop_back();
|
|
return Error::success();
|
|
}
|
|
|
|
uint32_t CodeViewRecordIO::maxFieldLength() const {
|
|
assert(!Limits.empty() && "Not in a record!");
|
|
|
|
// The max length of the next field is the minimum of all lengths that would
|
|
// be allowed by any of the sub-records we're in. In practice, we can only
|
|
// ever be at most 1 sub-record deep (in a FieldList), but this works for
|
|
// the general case.
|
|
uint32_t Offset = getCurrentOffset();
|
|
Optional<uint32_t> Min = Limits.front().bytesRemaining(Offset);
|
|
for (auto X : makeArrayRef(Limits).drop_front()) {
|
|
Optional<uint32_t> ThisMin = X.bytesRemaining(Offset);
|
|
if (ThisMin.hasValue())
|
|
Min = (Min.hasValue()) ? std::min(*Min, *ThisMin) : *ThisMin;
|
|
}
|
|
assert(Min.hasValue() && "Every field must have a maximum length!");
|
|
|
|
return *Min;
|
|
}
|
|
|
|
Error CodeViewRecordIO::skipPadding() {
|
|
assert(!isWriting() && "Cannot skip padding while writing!");
|
|
|
|
if (Reader->bytesRemaining() == 0)
|
|
return Error::success();
|
|
|
|
uint8_t Leaf = Reader->peek();
|
|
if (Leaf < LF_PAD0)
|
|
return Error::success();
|
|
// Leaf is greater than 0xf0. We should advance by the number of bytes in
|
|
// the low 4 bits.
|
|
unsigned BytesToAdvance = Leaf & 0x0F;
|
|
return Reader->skip(BytesToAdvance);
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapByteVectorTail(ArrayRef<uint8_t> &Bytes) {
|
|
if (isWriting()) {
|
|
if (auto EC = Writer->writeBytes(Bytes))
|
|
return EC;
|
|
} else {
|
|
if (auto EC = Reader->readBytes(Bytes, Reader->bytesRemaining()))
|
|
return EC;
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapByteVectorTail(std::vector<uint8_t> &Bytes) {
|
|
ArrayRef<uint8_t> BytesRef(Bytes);
|
|
if (auto EC = mapByteVectorTail(BytesRef))
|
|
return EC;
|
|
if (!isWriting())
|
|
Bytes.assign(BytesRef.begin(), BytesRef.end());
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapInteger(TypeIndex &TypeInd) {
|
|
if (isWriting()) {
|
|
if (auto EC =
|
|
Writer->writeInteger(TypeInd.getIndex(), llvm::support::little))
|
|
return EC;
|
|
return Error::success();
|
|
}
|
|
|
|
uint32_t I;
|
|
if (auto EC = Reader->readInteger(I, llvm::support::little))
|
|
return EC;
|
|
TypeInd.setIndex(I);
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapEncodedInteger(int64_t &Value) {
|
|
if (isWriting()) {
|
|
if (Value >= 0) {
|
|
if (auto EC = writeEncodedUnsignedInteger(static_cast<uint64_t>(Value)))
|
|
return EC;
|
|
} else {
|
|
if (auto EC = writeEncodedSignedInteger(Value))
|
|
return EC;
|
|
}
|
|
} else {
|
|
APSInt N;
|
|
if (auto EC = consume(*Reader, N))
|
|
return EC;
|
|
Value = N.getExtValue();
|
|
}
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapEncodedInteger(uint64_t &Value) {
|
|
if (isWriting()) {
|
|
if (auto EC = writeEncodedUnsignedInteger(Value))
|
|
return EC;
|
|
} else {
|
|
APSInt N;
|
|
if (auto EC = consume(*Reader, N))
|
|
return EC;
|
|
Value = N.getZExtValue();
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapEncodedInteger(APSInt &Value) {
|
|
if (isWriting()) {
|
|
if (Value.isSigned())
|
|
return writeEncodedSignedInteger(Value.getSExtValue());
|
|
return writeEncodedUnsignedInteger(Value.getZExtValue());
|
|
}
|
|
|
|
return consume(*Reader, Value);
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapStringZ(StringRef &Value) {
|
|
if (isWriting()) {
|
|
// Truncate if we attempt to write too much.
|
|
StringRef S = Value.take_front(maxFieldLength() - 1);
|
|
if (auto EC = Writer->writeCString(S))
|
|
return EC;
|
|
} else {
|
|
if (auto EC = Reader->readCString(Value))
|
|
return EC;
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapGuid(StringRef &Guid) {
|
|
constexpr uint32_t GuidSize = 16;
|
|
if (maxFieldLength() < GuidSize)
|
|
return make_error<CodeViewError>(cv_error_code::insufficient_buffer);
|
|
|
|
if (isWriting()) {
|
|
assert(Guid.size() == 16 && "Invalid Guid Size!");
|
|
if (auto EC = Writer->writeFixedString(Guid))
|
|
return EC;
|
|
} else {
|
|
if (auto EC = Reader->readFixedString(Guid, 16))
|
|
return EC;
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::mapStringZVectorZ(std::vector<StringRef> &Value) {
|
|
if (isWriting()) {
|
|
for (auto V : Value) {
|
|
if (auto EC = mapStringZ(V))
|
|
return EC;
|
|
}
|
|
if (auto EC = Writer->writeInteger<uint8_t>(0, llvm::support::little))
|
|
return EC;
|
|
} else {
|
|
StringRef S;
|
|
if (auto EC = mapStringZ(S))
|
|
return EC;
|
|
while (!S.empty()) {
|
|
Value.push_back(S);
|
|
if (auto EC = mapStringZ(S))
|
|
return EC;
|
|
};
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::writeEncodedSignedInteger(const int64_t &Value) {
|
|
assert(Value < 0 && "Encoded integer is not signed!");
|
|
if (Value >= std::numeric_limits<int8_t>::min()) {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_CHAR, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger<int8_t>(Value, llvm::support::little))
|
|
return EC;
|
|
} else if (Value >= std::numeric_limits<int16_t>::min()) {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_SHORT, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger<int16_t>(Value, llvm::support::little))
|
|
return EC;
|
|
} else if (Value >= std::numeric_limits<int32_t>::min()) {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_LONG, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger<int32_t>(Value, llvm::support::little))
|
|
return EC;
|
|
} else {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_QUADWORD, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger(Value, llvm::support::little))
|
|
return EC;
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Error CodeViewRecordIO::writeEncodedUnsignedInteger(const uint64_t &Value) {
|
|
if (Value < LF_NUMERIC) {
|
|
if (auto EC = Writer->writeInteger<uint16_t>(Value, llvm::support::little))
|
|
return EC;
|
|
} else if (Value <= std::numeric_limits<uint16_t>::max()) {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_USHORT, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger<uint16_t>(Value, llvm::support::little))
|
|
return EC;
|
|
} else if (Value <= std::numeric_limits<uint32_t>::max()) {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_ULONG, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger<uint32_t>(Value, llvm::support::little))
|
|
return EC;
|
|
} else {
|
|
if (auto EC =
|
|
Writer->writeInteger<uint16_t>(LF_UQUADWORD, llvm::support::little))
|
|
return EC;
|
|
if (auto EC = Writer->writeInteger(Value, llvm::support::little))
|
|
return EC;
|
|
}
|
|
|
|
return Error::success();
|
|
}
|