blob: 1329f8cc8f61731d614ae52b6004b86c7b3bc311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
//===- ModuleDebugFragment.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/ModuleDebugFragment.h"
#include "llvm/Support/BinaryStreamReader.h"
using namespace llvm;
using namespace llvm::codeview;
ModuleDebugFragment::ModuleDebugFragment()
: Kind(ModuleDebugFragmentKind::None) {}
ModuleDebugFragment::ModuleDebugFragment(ModuleDebugFragmentKind Kind,
BinaryStreamRef Data)
: Kind(Kind), Data(Data) {}
Error ModuleDebugFragment::initialize(BinaryStreamRef Stream,
ModuleDebugFragment &Info) {
const ModuleDebugFragmentHeader *Header;
BinaryStreamReader Reader(Stream);
if (auto EC = Reader.readObject(Header))
return EC;
ModuleDebugFragmentKind Kind =
static_cast<ModuleDebugFragmentKind>(uint32_t(Header->Kind));
if (auto EC = Reader.readStreamRef(Info.Data, Header->Length))
return EC;
Info.Kind = Kind;
return Error::success();
}
uint32_t ModuleDebugFragment::getRecordLength() const {
return sizeof(ModuleDebugFragmentHeader) + Data.getLength();
}
ModuleDebugFragmentKind ModuleDebugFragment::kind() const { return Kind; }
BinaryStreamRef ModuleDebugFragment::getRecordData() const { return Data; }
|