File tree Expand file tree Collapse file tree
tools/Common/Internal/Runtime Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515#define READYTORUN_SIGNATURE 0x00525452 // 'RTR'
1616
17- // Keep these in sync with src/coreclr/tools/Common/Internal/Runtime/ModuleHeaders.cs
17+ // Keep these in sync with
18+ // src/coreclr/tools/Common/Internal/Runtime/ModuleHeaders.cs
19+ // src/coreclr/nativeaot/Runtime/inc/ModuleHeaders.h
1820#define READYTORUN_MAJOR_VERSION 0x0009
1921#define READYTORUN_MINOR_VERSION 0x0000
2022
2729// R2R Version 6.0 changes managed layout for sequential types with any unmanaged non-blittable fields.
2830// R2R 6.0 is not backward compatible with 5.x or earlier.
2931// R2R Version 8.0 Changes the alignment of the Int128 type
32+ // R2R Version 9.0 adds support for the Vector512 type
3033
3134struct READYTORUN_CORE_HEADER
3235{
Original file line number Diff line number Diff line change 44//
55// Please keep the data structures in this file in sync with the managed version at
66// src/Common/src/Internal/Runtime/ModuleHeaders.cs
7- //
7+ // src/coreclr/inc/readytorun.h
8+
89
910struct ReadyToRunHeaderConstants
1011{
1112 static const uint32_t Signature = 0x00525452 ; // 'RTR'
1213
13- static const uint32_t CurrentMajorVersion = 8 ;
14+ static const uint32_t CurrentMajorVersion = 9 ;
1415 static const uint32_t CurrentMinorVersion = 0 ;
1516};
1617
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ namespace Internal.Runtime
88 //
99 // Please keep the data structures in this file in sync with the native version at
1010 // src/coreclr/inc/readytorun.h
11+ // src/coreclr/nativeaot/Runtime/inc/ModuleHeaders.h
1112 //
1213
1314 internal struct ReadyToRunHeaderConstants
You can’t perform that action at this time.
0 commit comments