- reporting issue if PageMap is not allocated
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
We don't want to abort the process here, it's a soft failure. In addition, when page map allocation fails, it sometimes indicates an OOM on pages, i.e., we may not be able to allocate a single page for ScopedErrorReport. Even though it has local storage, but that means we may crash in the middle of reporting.
The ideal way of doing this is having a reserved space and do it there. This also includes some refactors in the ScopedString/Vector, .etc.