-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Remove DYNAMICTOP_PTR #12057
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Remove DYNAMICTOP_PTR #12057
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
ebaea06
wip
kripken 743bed8
[ci skip]
kripken e6b5864
Remvoe
kripken 76e7ac2
changelog
kripken 023d9bb
Merge branch 'no-noheapcopy' into yolo
kripken 1fec98b
more
kripken e9399f7
fix
kripken 0c28616
Fix [ci skip]
kripken f4369e3
NO DYNAMICTOP_PTR [ci skip]
kripken 25946c1
a hack for now
kripken 4ffbd6f
fix tests
kripken 2e4e702
fixes
kripken 299a959
fixes [ci skip]
kripken 2401c79
fix
kripken 83e6a85
fix
kripken cfe01e5
all looks good [ci skip]
kripken 3876ec2
__heap_base? [ci skip]
kripken f6557cf
Merge remote-tracking branch 'origin/master' into yolo2
kripken 5296cb3
todo
kripken 6162325
fix
kripken 4503ab8
hacky
kripken c027517
Merge remote-tracking branch 'origin/master' into yolo2
kripken 83ae76f
fix
kripken 05f04c4
update tests
kripken cba813d
cleanup
kripken 04ab551
more cleanup
kripken 26701ce
more cleanup
kripken 4ca22ff
more cleanup
kripken 2c56ef5
Merge remote-tracking branch 'origin/master' into yolo2
kripken c92f7cc
update tests
kripken 52c1480
Merge remote-tracking branch 'origin/master' into yolo2
kripken 371857b
update changelog
kripken 8ef5d65
fix
kripken cfd2748
comments
kripken 464a3da
simplify
kripken 7b9fc2e
Revert "simplify"
kripken 741b041
[ci skip]
kripken 1d631f7
Merge remote-tracking branch 'origin/master' into yolo2
kripken dbe8b15
comment [ci skip]
kripken e87ce35
Merge remote-tracking branch 'origin/master' into yolo2
kripken a968def
Better assertion
kripken 323e16c
fix
kripken eaf9c7e
fix changelog
kripken 7ff21a5
fix
kripken 4c4831d
Merge remote-tracking branch 'origin/master' into yolo2
kripken be4eb06
merge
kripken File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love the idea of just use
_sbrk()
here.. in my various attempts at this I just moved_emscripten_get_sbrk_ptr
into normal C code (which also works), but this is simpler.