diff options
author | Reid Kleckner <rnk@google.com> | 2017-03-29 22:51:22 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-03-29 22:51:22 +0000 |
commit | acd9a6f09d391bb14155d95791cafa78dec279df (patch) | |
tree | ea9fa745289a923abfef8e9edb968a707a8a985c /llvm/lib/DebugInfo/CodeView | |
parent | b8a728f9938afd526422907d273208e06c06a039 (diff) | |
download | bcm5719-llvm-acd9a6f09d391bb14155d95791cafa78dec279df.tar.gz bcm5719-llvm-acd9a6f09d391bb14155d95791cafa78dec279df.zip |
[codeview] Fix buggy BeginIndexMapSize assertion
This assert is just trying to test that processing each record adds
exactly one entry to the index map. The assert logic was wrong when the
first record in the type stream was a field list.
I've simplified the code by moving the LF_FIELDLIST-specific logic into
the callback for that record type.
llvm-svn: 299035
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp b/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp index 07d6a5684bb..9d7af8db9e6 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp @@ -126,8 +126,11 @@ private: FieldListRecordBuilder FieldListBuilder; TypeServerHandler *Handler; - bool IsInFieldList = false; +#ifndef NDEBUG + /// Track the size of the index map in visitTypeBegin so we can check it in + /// visitTypeEnd. size_t BeginIndexMapSize = 0; +#endif /// Map from source type index to destination type index. Indexed by source /// type index minus 0x1000. @@ -137,26 +140,19 @@ private: } // end anonymous namespace Error TypeStreamMerger::visitTypeBegin(CVRecord<TypeLeafKind> &Rec) { - if (Rec.Type == TypeLeafKind::LF_FIELDLIST) { - assert(!IsInFieldList); - IsInFieldList = true; - FieldListBuilder.begin(); - } else - BeginIndexMapSize = IndexMap.size(); +#ifndef NDEBUG + BeginIndexMapSize = IndexMap.size(); +#endif return Error::success(); } Error TypeStreamMerger::visitTypeEnd(CVRecord<TypeLeafKind> &Rec) { - if (Rec.Type == TypeLeafKind::LF_FIELDLIST) { - TypeIndex Index = FieldListBuilder.end(); - IndexMap.push_back(Index); - IsInFieldList = false; - } + assert(IndexMap.size() == BeginIndexMapSize + 1 && + "visitKnownRecord should add one index map entry"); return Error::success(); } Error TypeStreamMerger::visitMemberEnd(CVMemberRecord &Rec) { - assert(IndexMap.size() == BeginIndexMapSize + 1); return Error::success(); } @@ -322,9 +318,12 @@ Error TypeStreamMerger::visitKnownRecord(CVType &, Error TypeStreamMerger::visitKnownRecord(CVType &, FieldListRecord &R) { // Visit the members inside the field list. + FieldListBuilder.begin(); CVTypeVisitor Visitor(*this); if (auto EC = Visitor.visitFieldListMemberStream(R.Data)) return EC; + TypeIndex Index = FieldListBuilder.end(); + IndexMap.push_back(Index); return Error::success(); } |