]> granicus.if.org Git - llvm/commit
[DebugInfo] Have custom std::reverse_iterator<DWARFDie>
authorJonas Devlieghere <jonas@devlieghere.com>
Wed, 1 Aug 2018 10:24:17 +0000 (10:24 +0000)
committerJonas Devlieghere <jonas@devlieghere.com>
Wed, 1 Aug 2018 10:24:17 +0000 (10:24 +0000)
commit86e18055e607b257c6867e444a4e598cb8f812b8
tree8a9e60721da00b0fe47a75b7497a0557881092f1
parentf4bd4b26895b5cc02deaa60f494cb610e83f509d
[DebugInfo] Have custom std::reverse_iterator<DWARFDie>

The DWARFDie is a lightweight utility wrapper that stores a pointer to a
compile unit and a debug info entry. Currently, its iterator (used for
walking over its children) stores a DWARFDie and returns a const
reference when dereferencing it.

When the iterator is modified (by incrementing or decrementing it), this
reference becomes invalid. This was happening when calling reverse on
it, because the std::reverse_iterator is keeping a temporary copy of the
iterator (see
https://en.cppreference.com/w/cpp/iterator/reverse_iterator for a good
illustration).

The relevant code in libcxx:

  reference operator*() const {_Iter __tmp = current; return *--__tmp;}

When dereferencing the reverse iterator, we decrement and return a
reference to a DWARFDie stored in the stack frame of this function,
resulting in UB at runtime.

This patch specifies the std::reverse_iterator for DWARFDie to do the
right thing.

Differential revision: https://reviews.llvm.org/D49679

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@338506 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/DebugInfo/DWARF/DWARFDie.h
unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp