This method initializes the debug info reader after construction.
| 830 | |
| 831 | /// This method initializes the debug info reader after construction. |
| 832 | void initialize(ArrayRef<uint64_t> indices, ArrayRef<uint32_t> indexOffsets, |
| 833 | ArrayRef<uint8_t> data, ArrayRef<uint32_t> offsets) { |
| 834 | diIndices = indices; |
| 835 | diIndexOffsets = indexOffsets; |
| 836 | diData = data; |
| 837 | diOffsets = offsets; |
| 838 | diCache.resize(offsets.size()); |
| 839 | } |
| 840 | |
| 841 | private: |
| 842 | /// This method returns a debug info attribute for a given index. |