Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9bf9b7c
[wasm coreclr] Initial changes for corewasmrun host
radekdoulik Mar 26, 2025
14ed390
Make alternate signal stack calls no-op on wasm
radekdoulik Mar 26, 2025
7c3bd24
[wasm coreclr] Fix field alignment
radekdoulik May 7, 2025
d193fc5
Update conditions to use TARGET_WASM
radekdoulik May 7, 2025
4a7481d
Save WIP changes before rebase
radekdoulik May 15, 2025
4914ac3
Update after rebase
radekdoulik May 16, 2025
64b74e2
Merge remote-tracking branch 'remotes/origin/main'
radekdoulik Jun 3, 2025
477350b
[wasm][coreclr] Implement CallDescrWorkerInternal
radekdoulik May 29, 2025
45843ee
Remaining changes
radekdoulik Jun 3, 2025
feef9d1
Update after merge
radekdoulik Jun 3, 2025
11dc45b
Remove parts which are not needed anymore
radekdoulik Jun 3, 2025
27f3bcb
Make some of the CORECLR_LIBRARIES conditional
radekdoulik Jun 3, 2025
fb89f83
Remove unwanted changes from conflicts resolve
radekdoulik Jun 3, 2025
1aa0e14
Enable interpreter verbose mode on wasm only
radekdoulik Jun 3, 2025
1a50037
Make the PE image loading changes wasm specific
radekdoulik Jun 3, 2025
d776675
Remove debug prints
radekdoulik Jun 3, 2025
5c6dc22
Fix whitespace
radekdoulik Jun 3, 2025
12ed21e
Do not use unsupported syscalls
radekdoulik Jun 5, 2025
19e6949
Link statically on wasm
radekdoulik Jun 5, 2025
a9eff81
Remove unwanted changes
radekdoulik Jun 5, 2025
d083b0a
Add MONO_RUNTIME to detect when we build mono runtime
radekdoulik Jun 5, 2025
9c041fa
Remove debug prints
radekdoulik Jun 5, 2025
e825c3b
Remove runtime init test
radekdoulik Jun 5, 2025
e1f4573
Rename log files
radekdoulik Jun 5, 2025
3cdb237
Make preload conditional
radekdoulik Jun 6, 2025
58b6a76
Fix comment
radekdoulik Jun 6, 2025
9cd5621
Remove debug code
radekdoulik Jun 6, 2025
ae9b5ea
Remove old files
radekdoulik Jun 6, 2025
c711276
Remove old file
radekdoulik Jun 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enable interpreter verbose mode on wasm only
  • Loading branch information
radekdoulik committed Jun 3, 2025
commit 1aa0e141ea268b5db7a3cce6960735cade9e23ab
7 changes: 6 additions & 1 deletion src/coreclr/interpreter/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,13 @@ class InterpCompiler
CORINFO_METHOD_INFO* m_methodInfo;
#ifdef DEBUG
const char *m_methodName;
#ifdef __wasm__
// enable verbose output on wasm temporarily
bool m_verbose = true;
#endif
#else
bool m_verbose = false;
#endif // __wasm__
#endif // DEBUG

static int32_t InterpGetMovForType(InterpType interpType, bool signExtend);

Expand Down