Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
810171d
Revert "Revert "Allocate RuntimeType objects on Frozen Object Heap (#…
EgorBo Oct 5, 2022
e0737c0
Regenerate generated files (JIT-EE, CRST)
EgorBo Oct 5, 2022
aadadc6
fix nativeaot compilation
EgorBo Oct 5, 2022
ecc25ea
Address feedback
EgorBo Oct 5, 2022
1d95438
Merge branch 'main' of github.com:dotnet/runtime into foh-frozen-types-2
EgorBo Oct 5, 2022
1e32f9c
Address feedback
EgorBo Oct 5, 2022
19e1d79
Remove == -1 check
EgorBo Oct 5, 2022
5a54c51
Update src/coreclr/vm/jitinterface.cpp
EgorBo Oct 5, 2022
c144fa4
Rename to printObjectDescription
EgorBo Oct 5, 2022
34c45aa
Address feedback
EgorBo Oct 5, 2022
a07ab89
Address feedback
EgorBo Oct 5, 2022
5adff12
Update CorInfoImpl.cs
EgorBo Oct 5, 2022
26c43d9
Update ee_il_dll.cpp
EgorBo Oct 5, 2022
1b910df
Address Jan's feedback
EgorBo Oct 5, 2022
31772b3
Fix methodcontext.cpp
EgorBo Oct 5, 2022
b5fd562
Fix comments
EgorBo Oct 5, 2022
45d7673
Apply suggestions from code review
EgorBo Oct 5, 2022
c639b79
Address feedback
EgorBo Oct 6, 2022
cece178
Update src/coreclr/vm/jitinterface.cpp
EgorBo Oct 6, 2022
6d2cac3
Do the same for crossgen/nativeaot
EgorBo Oct 6, 2022
05cc624
Update src/coreclr/vm/jitinterface.cpp
EgorBo Oct 6, 2022
2ea47b9
Update src/coreclr/tools/Common/JitInterface/CorInfoImpl.cs
EgorBo Oct 6, 2022
606086a
Apply suggestions from code review
EgorBo Oct 6, 2022
513a8b9
fix build
EgorBo Oct 6, 2022
e0c51fd
Fix build error on 32bit
EgorBo Oct 6, 2022
d2e1e39
Address feedback
EgorBo Oct 6, 2022
dd4ec29
Merge branch 'main' of github.com:dotnet/runtime into foh-frozen-types-2
EgorBo Oct 6, 2022
12320c4
Update src/coreclr/tools/superpmi/superpmi-shared/methodcontext.cpp
EgorBo Oct 6, 2022
2660380
fix compilation
EgorBo Oct 6, 2022
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
Apply suggestions from code review
Co-authored-by: Jan Kotas <[email protected]>
  • Loading branch information
EgorBo and jkotas authored Oct 5, 2022
commit 45d7673cccc5976eb7be7e402f2c6cad0ec437f6
4 changes: 2 additions & 2 deletions src/coreclr/inc/corinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -2268,13 +2268,13 @@ class ICorStaticInfo

//------------------------------------------------------------------------------
// printObjectDescription: Prints a (possibly truncated) textual UTF8 representation of the given
// object to a preallocated buffer. It's intended to be use only for debug/diagnostic
// object to a preallocated buffer. It's intended to be used only for debug/diagnostic
// purposes such as JitDisasm. The buffer is null-terminated (even if truncated).
//
// Arguments:
// handle - Direct object handle
// buffer - Pointer to buffer
// bufferSize - Pointer to buffer length. Must not be nullptr
// bufferSize - Buffer size
//
// Return Value:
// Bytes written to the given buffer, the range is [0..bufferSize]
Expand Down