@@ -132,7 +132,7 @@ private static unsafe void InitializeGlobalTablesForModule(TypeManagerHandle typ
132
132
IntPtr staticsSection = RuntimeImports . RhGetModuleSection ( typeManager , ReadyToRunSectionType . GCStaticRegion , out length ) ;
133
133
if ( staticsSection != IntPtr . Zero )
134
134
{
135
- Debug . Assert ( length % IntPtr . Size == 0 ) ;
135
+ Debug . Assert ( length % ( MethodTable . SupportsRelativePointers ? sizeof ( int ) : sizeof ( nint ) ) == 0 ) ;
136
136
137
137
object [ ] spine = InitializeStatics ( staticsSection , length ) ;
138
138
@@ -170,31 +170,39 @@ internal static void RunModuleInitializers()
170
170
171
171
private static unsafe void RunInitializers ( TypeManagerHandle typeManager , ReadyToRunSectionType section )
172
172
{
173
- var initializers = ( delegate * < void > * ) RuntimeImports . RhGetModuleSection ( typeManager , section , out int length ) ;
174
- Debug . Assert ( length % IntPtr . Size == 0 ) ;
175
- int count = length / IntPtr . Size ;
176
- for ( int i = 0 ; i < count ; i ++ )
173
+ var pInitializers = ( byte * ) RuntimeImports . RhGetModuleSection ( typeManager , section , out int length ) ;
174
+ Debug . Assert ( length % ( MethodTable . SupportsRelativePointers ? sizeof ( int ) : sizeof ( nint ) ) == 0 ) ;
175
+
176
+ for ( byte * pCurrent = pInitializers ;
177
+ pCurrent < ( pInitializers + length ) ;
178
+ pCurrent += MethodTable . SupportsRelativePointers ? sizeof ( int ) : sizeof ( nint ) )
177
179
{
178
- initializers [ i ] ( ) ;
180
+ var initializer = MethodTable . SupportsRelativePointers ? ( delegate * < void > ) ReadRelPtr32 ( pCurrent ) : ( delegate * < void > ) pCurrent ;
181
+ initializer ( ) ;
179
182
}
183
+
184
+ static void * ReadRelPtr32 ( void * address )
185
+ => ( byte * ) address + * ( int * ) address ;
180
186
}
181
187
182
188
private static unsafe object [ ] InitializeStatics ( IntPtr gcStaticRegionStart , int length )
183
189
{
184
- IntPtr gcStaticRegionEnd = ( IntPtr ) ( ( byte * ) gcStaticRegionStart + length ) ;
190
+ byte * gcStaticRegionEnd = ( byte * ) gcStaticRegionStart + length ;
185
191
186
- object [ ] spine = new object [ length / IntPtr . Size ] ;
192
+ object [ ] spine = new object [ length / ( MethodTable . SupportsRelativePointers ? sizeof ( int ) : sizeof ( nint ) ) ] ;
187
193
188
194
ref object rawSpineData = ref Unsafe . As < byte , object > ( ref Unsafe . As < RawArrayData > ( spine ) . Data ) ;
189
195
190
196
int currentBase = 0 ;
191
- for ( IntPtr * * block = ( IntPtr * * ) gcStaticRegionStart ; block < ( IntPtr * * ) gcStaticRegionEnd ; block ++ )
197
+ for ( byte * block = ( byte * ) gcStaticRegionStart ;
198
+ block < gcStaticRegionEnd ;
199
+ block += MethodTable . SupportsRelativePointers ? sizeof ( int ) : sizeof ( nint ) )
192
200
{
193
201
// Gc Static regions can be shared by modules linked together during compilation. To ensure each
194
202
// is initialized once, the static region pointer is stored with lowest bit set in the image.
195
203
// The first time we initialize the static region its pointer is replaced with an object reference
196
204
// whose lowest bit is no longer set.
197
- IntPtr * pBlock = * block ;
205
+ IntPtr * pBlock = MethodTable . SupportsRelativePointers ? ( IntPtr * ) ReadRelPtr32 ( block ) : * ( IntPtr * * ) block ;
198
206
nint blockAddr = MethodTable. SupportsRelativePointers ? ( nint ) ReadRelPtr32 ( pBlock ) : * pBlock ;
199
207
if ( ( blockAddr & GCStaticRegionConstants . Uninitialized ) == GCStaticRegionConstants . Uninitialized )
200
208
{
0 commit comments