-
Notifications
You must be signed in to change notification settings - Fork 5.4k
[browser][coreclr] WASM-specific GC OS layer; no mmap/decommit #127328
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
Open
pavelsavara
wants to merge
38
commits into
dotnet:main
Choose a base branch
from
pavelsavara:browser_no_mmap
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
2010bf5
rebase + feedback
pavelsavara 26c3446
fix
pavelsavara 5d6d6b5
dash
pavelsavara 1b550ff
feedback
pavelsavara 574c3eb
feedback
pavelsavara 0275ab2
feedback
pavelsavara 2ef6b4b
Fix WASM GC build: include configure.cmake to generate config.gc.h
pavelsavara fcec8d3
Merge branch 'main' into browser_no_mmap
pavelsavara 32ddc90
feedback
pavelsavara adb3817
too verbose
pavelsavara 435518a
cleanup
pavelsavara fe828ff
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara f05b837
feedback
pavelsavara 47b5e07
feedback
pavelsavara 9b98c13
feedback
pavelsavara 6555b06
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara d1f1f26
feedback
pavelsavara 96a9d4d
feedback
pavelsavara d70f152
feedback
pavelsavara c91ff1d
drop file
pavelsavara b5dc456
remove sbrk trick
pavelsavara bd7a147
never_decommit_p
pavelsavara 66651e5
Merge branch 'main' into browser_no_mmap
pavelsavara fba3ee0
cleanup
pavelsavara c446f3b
feedback + cleanup
pavelsavara 8c5f23c
feedback
pavelsavara 7b913c2
fix
pavelsavara b31232b
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara 57d0e5c
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara cb2c789
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara f716254
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara 07c2288
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara fd1ddd2
feedback
pavelsavara e2eb693
fix
pavelsavara d7f4c50
inline constant fold
pavelsavara b752041
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara 4616dcc
Update src/coreclr/gc/wasm/gcenv.cpp
pavelsavara d60a5bb
Update src/native/minipal/ospagesize.h
pavelsavara 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
| include_directories("../env") | ||
| include_directories("..") | ||
| include_directories("../unix") | ||
|
|
||
| # Generates config.gc.h in this subdirectory's binary dir (picked up via | ||
| # CMAKE_INCLUDE_CURRENT_DIR). Mirrors how gc/unix/CMakeLists.txt does it. | ||
| include(../unix/configure.cmake) | ||
|
|
||
| set(GC_PAL_SOURCES | ||
| gcenv.cpp | ||
| ../unix/events.cpp) | ||
|
|
||
|
pavelsavara marked this conversation as resolved.
|
||
| add_library(gc_pal OBJECT ${GC_PAL_SOURCES} ${VERSION_FILE_PATH}) | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.