Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 1 | //===- StringsAndChecksums.cpp --------------------------------------------===// |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/DebugInfo/CodeView/StringsAndChecksums.h" |
Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 10 | #include "llvm/ADT/STLExtras.h" |
| 11 | #include "llvm/DebugInfo/CodeView/CodeView.h" |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 12 | #include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h" |
| 13 | #include "llvm/DebugInfo/CodeView/DebugStringTableSubsection.h" |
| 14 | #include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h" |
Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 15 | #include "llvm/Support/Error.h" |
| 16 | #include <cassert> |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 17 | |
| 18 | using namespace llvm; |
| 19 | using namespace llvm::codeview; |
| 20 | |
Eugene Zelenko | 4fcfc19 | 2017-06-30 23:06:03 +0000 | [diff] [blame] | 21 | StringsAndChecksumsRef::StringsAndChecksumsRef() = default; |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 22 | |
| 23 | StringsAndChecksumsRef::StringsAndChecksumsRef( |
| 24 | const DebugStringTableSubsectionRef &Strings) |
| 25 | : Strings(&Strings) {} |
| 26 | |
| 27 | StringsAndChecksumsRef::StringsAndChecksumsRef( |
| 28 | const DebugStringTableSubsectionRef &Strings, |
| 29 | const DebugChecksumsSubsectionRef &Checksums) |
| 30 | : Strings(&Strings), Checksums(&Checksums) {} |
| 31 | |
| 32 | void StringsAndChecksumsRef::initializeStrings( |
| 33 | const DebugSubsectionRecord &SR) { |
| 34 | assert(SR.kind() == DebugSubsectionKind::StringTable); |
| 35 | assert(!Strings && "Found a string table even though we already have one!"); |
| 36 | |
Zachary Turner | abb17cc | 2017-09-01 20:06:56 +0000 | [diff] [blame] | 37 | OwnedStrings = std::make_shared<DebugStringTableSubsectionRef>(); |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 38 | consumeError(OwnedStrings->initialize(SR.getRecordData())); |
| 39 | Strings = OwnedStrings.get(); |
| 40 | } |
| 41 | |
Zachary Turner | abb17cc | 2017-09-01 20:06:56 +0000 | [diff] [blame] | 42 | void StringsAndChecksumsRef::reset() { |
| 43 | resetStrings(); |
| 44 | resetChecksums(); |
| 45 | } |
| 46 | |
| 47 | void StringsAndChecksumsRef::resetStrings() { |
| 48 | OwnedStrings.reset(); |
| 49 | Strings = nullptr; |
| 50 | } |
| 51 | |
| 52 | void StringsAndChecksumsRef::resetChecksums() { |
| 53 | OwnedChecksums.reset(); |
| 54 | Checksums = nullptr; |
| 55 | } |
| 56 | |
| 57 | void StringsAndChecksumsRef::setStrings( |
| 58 | const DebugStringTableSubsectionRef &StringsRef) { |
| 59 | OwnedStrings = std::make_shared<DebugStringTableSubsectionRef>(); |
| 60 | *OwnedStrings = StringsRef; |
| 61 | Strings = OwnedStrings.get(); |
| 62 | } |
| 63 | |
Zachary Turner | 4e95064 | 2017-06-15 23:56:19 +0000 | [diff] [blame] | 64 | void StringsAndChecksumsRef::setChecksums( |
| 65 | const DebugChecksumsSubsectionRef &CS) { |
Zachary Turner | abb17cc | 2017-09-01 20:06:56 +0000 | [diff] [blame] | 66 | OwnedChecksums = std::make_shared<DebugChecksumsSubsectionRef>(); |
Zachary Turner | 4e95064 | 2017-06-15 23:56:19 +0000 | [diff] [blame] | 67 | *OwnedChecksums = CS; |
| 68 | Checksums = OwnedChecksums.get(); |
| 69 | } |
| 70 | |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 71 | void StringsAndChecksumsRef::initializeChecksums( |
| 72 | const DebugSubsectionRecord &FCR) { |
| 73 | assert(FCR.kind() == DebugSubsectionKind::FileChecksums); |
| 74 | if (Checksums) |
| 75 | return; |
| 76 | |
Zachary Turner | abb17cc | 2017-09-01 20:06:56 +0000 | [diff] [blame] | 77 | OwnedChecksums = std::make_shared<DebugChecksumsSubsectionRef>(); |
Zachary Turner | a8cfc29 | 2017-06-14 15:59:27 +0000 | [diff] [blame] | 78 | consumeError(OwnedChecksums->initialize(FCR.getRecordData())); |
| 79 | Checksums = OwnedChecksums.get(); |
| 80 | } |