81aa89592b
Known-pointer decompression used to be distinct from any-tagged-value decompression, since the latter used to detect Smis and decompress them with sign extension. However, we got rid of this distinction when we introduced Smi-corrupting loads (allowing the top 32-bits of uncompressed Smis to be undefined), which means that the TaggedPointer and TaggedAny decompression is now identical. We can remove a bunch of duplicate code by removing this distinction. Change-Id: Id66671497d63ed885f9e537494c011317dfd4788 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4221398 Reviewed-by: Toon Verwaest <verwaest@chromium.org> Commit-Queue: Toon Verwaest <verwaest@chromium.org> Auto-Submit: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#85647} |
||
---|---|---|
.. | ||
BUILD.gn | ||
compiler-types.cc | ||
debug-helper-internal.cc | ||
debug-helper-internal.h | ||
debug-helper.h | ||
debug-macro-shims.h | ||
DEPS | ||
gen-heap-constants.py | ||
get-object-properties.cc | ||
heap-constants.cc | ||
heap-constants.h | ||
list-object-classes.cc | ||
OWNERS | ||
README.md |
V8 debug helper
This library is for debugging V8 itself, not debugging JavaScript running within V8. It is designed to be called from a debugger extension running within a native debugger such as WinDbg or LLDB. It can be used on live processes or crash dumps, and cannot assume that all memory is available in a dump.