Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f5c77e5
Add getTypeDefinition definition
Sergio0694 Jan 18, 2024
7b27bb2
Implement CEEInfo::getTypeDefinition
Sergio0694 Jan 18, 2024
f7e8951
Tweak CEEInfo::getTypeDefinition
Sergio0694 Jan 18, 2024
9d6ec48
Make Type.GetGenericTypeDefinition() an intrinsic
Sergio0694 Jan 18, 2024
b537505
Add GetGenericTypeDefinition() intrinsic tests
Sergio0694 Jan 18, 2024
a02c9a1
Only expand intrinsic for generic types
Sergio0694 Jan 18, 2024
23f8ebc
Use normal JIT_TO_EE transition
Sergio0694 Jan 18, 2024
d6a925d
Apply review suggestions for CEEInfo::getTypeDefinition
Sergio0694 Jan 18, 2024
cf937db
Implement managed version of getTypeDefinition
Sergio0694 Jan 18, 2024
98952fc
Fix EE_TO_JIT transition
Sergio0694 Jan 18, 2024
f65d626
Implement missing superPMI methods
Sergio0694 Mar 11, 2024
cfad15d
Remove extra blank line
Sergio0694 Jun 16, 2024
f3b5402
Add missing handle -> 'Type' conversion
Sergio0694 Jun 16, 2024
b44805d
Add '__Canon' tests as well
Sergio0694 Jun 17, 2024
447f949
Add tests for failure cases as well
Sergio0694 Jun 17, 2024
1ccc84f
Run ThunkGenerator again
Sergio0694 Jul 10, 2024
7175c3a
Add docs for 'impGetGenericTypeDefinition'
Sergio0694 Jul 11, 2024
ae66298
Add assert in 'getTypeDefinition'
Sergio0694 Jul 11, 2024
9a2aa1e
Remove assert
Sergio0694 Jul 11, 2024
a2eb42e
Allow non instantiated generics in new JIT interface method
Sergio0694 Jul 11, 2024
a2a8d60
Update docs for 'getTypeDefinition'
Sergio0694 Jul 16, 2024
89319d7
Tweak condition in 'CEEInfo::getTypeDefinition'
Sergio0694 Jul 17, 2024
4cbe7f3
Run ThunkGenerator again
Sergio0694 Jul 18, 2024
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
Run ThunkGenerator again
  • Loading branch information
Sergio0694 committed Jul 19, 2024
commit 4cbe7f301f2a3917c274c9ccc923cd302fd93f54
10 changes: 5 additions & 5 deletions src/coreclr/inc/jiteeversionguid.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ typedef const GUID *LPCGUID;
#define GUID_DEFINED
#endif // !GUID_DEFINED

constexpr GUID JITEEVersionIdentifier = { /* 64fe30fb-0a27-4b1d-b89e-306e552ac848 */
0x64fe30fb,
0x0a27,
0x4b1d,
{0xb8, 0x9e, 0x30, 0x6e, 0x55, 0x2a, 0xc8, 0x48}
constexpr GUID JITEEVersionIdentifier = { /* 273ba350-32bf-4714-beb0-7fa46c11364d */
0x273ba350,
0x32bf,
0x4714,
{0xbe, 0xb0, 0x7f, 0xa4, 0x6c, 0x11, 0x36, 0x4d}
};

//////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
Loading