clayborg added inline comments.
================ Comment at: lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp:693-707 + DataBufferHeap *databufferheap = new DataBufferHeap(); + DataBufferSP databuffer = DataBufferSP(databufferheap); + databufferheap->AppendData( + debug_info_data.GetDataStart(), + debug_info_data.GetByteSize()); + m_debug_info_concatenated_types_offset = + databufferheap->GetByteSize(); ---------------- So if we have 3GB of .debug_info and 1GB of .debug_types, we are expecting to allocate a heap based buffer and copy all the data into this? This will fail. Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D51578/new/ https://reviews.llvm.org/D51578 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits