-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't unbox values for edges in heap snapshot
Summary: D60798281 wrongly unboxed the array element when generating heap snapshot edge to that element. It was a wrong assumption by looking at JSObject, which also unboxes values when generating snapshot edges for properties. By unboxing, it means that the heap snapshot isn't representing exactly how things are stored. With boxed doubles, the stored data is a pointer rather than the number itself. Reviewed By: neildhar Differential Revision: D61638245 fbshipit-source-id: bc85ae37f86f29572b213a0e49496b72f471dd42
- Loading branch information
1 parent
05d9e75
commit e12e750
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters