diff options
author | Zachary Turner <zturner@google.com> | 2017-05-12 19:18:12 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-12 19:18:12 +0000 |
commit | dd3a739d52ddb9ec2c79cc5cef1b57750f48d85d (patch) | |
tree | a9566a21c68cb7513466d2593ca10f331d90bbe1 /llvm/lib/DebugInfo/CodeView/CMakeLists.txt | |
parent | 7cd5876e6031851ba033059f9ef3a3c238abcc82 (diff) | |
download | bcm5719-llvm-dd3a739d52ddb9ec2c79cc5cef1b57750f48d85d.tar.gz bcm5719-llvm-dd3a739d52ddb9ec2c79cc5cef1b57750f48d85d.zip |
[CodeView] Add a random access type visitor.
This adds a visitor that is capable of accessing type
records randomly and caching intermediate results that it
learns about during partial linear scans. This yields
amortized O(1) access to a type stream even though type
streams cannot normally be indexed.
Differential Revision: https://reviews.llvm.org/D33009
llvm-svn: 302936
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/CMakeLists.txt')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/CMakeLists.txt b/llvm/lib/DebugInfo/CodeView/CMakeLists.txt index 47cbcfd1990..8d9353ae5f5 100644 --- a/llvm/lib/DebugInfo/CodeView/CMakeLists.txt +++ b/llvm/lib/DebugInfo/CodeView/CMakeLists.txt @@ -13,6 +13,7 @@ add_llvm_library(LLVMDebugInfoCodeView ModuleDebugFragmentVisitor.cpp ModuleDebugInlineeLinesFragment.cpp ModuleDebugLineFragment.cpp + RandomAccessTypeVisitor.cpp RecordSerialization.cpp StringTable.cpp SymbolRecordMapping.cpp |