Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions src/coreclr/nativeaot/Runtime/unix/unixasmmacrosarm.inc
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ C_FUNC(\Name):

.macro PREPARE_EXTERNAL_VAR Name, HelperReg
movw \HelperReg, #:lower16:C_FUNC(\Name) - (. + 12)
movt \HelperReg, #:upper16:C_FUNC(\Name) - (. + 12)
movt \HelperReg, #:upper16:C_FUNC(\Name) - (. + 8)
add \HelperReg, pc
.endm

.macro PREPARE_EXTERNAL_VAR_INDIRECT Name, HelperReg
movw \HelperReg, #:lower16:C_FUNC(\Name) - (. + 12)
movt \HelperReg, #:upper16:C_FUNC(\Name) - (. + 12)
movt \HelperReg, #:upper16:C_FUNC(\Name) - (. + 8)
add \HelperReg, pc
ldr \HelperReg, [\HelperReg]
.endm
Expand Down
3 changes: 3 additions & 0 deletions src/tests/JIT/Stress/ABI/pinvokes_d.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<JitOptimizationSensitive>true</JitOptimizationSensitive>
<GCStressIncompatible>true</GCStressIncompatible>

<!-- https://github.com/dotnet/runtime/issues/100125 -->
<NativeAotIncompatible>true</NativeAotIncompatible>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
3 changes: 3 additions & 0 deletions src/tests/JIT/Stress/ABI/pinvokes_do.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<JitOptimizationSensitive>true</JitOptimizationSensitive>
<GCStressIncompatible>true</GCStressIncompatible>

<!-- https://github.com/dotnet/runtime/issues/100125 -->
<NativeAotIncompatible>true</NativeAotIncompatible>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
3 changes: 3 additions & 0 deletions src/tests/JIT/Stress/ABI/stubs_do.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<JitOptimizationSensitive>true</JitOptimizationSensitive>
<GCStressIncompatible>true</GCStressIncompatible>

<!-- https://github.com/dotnet/runtime/issues/100125 -->
<NativeAotIncompatible>true</NativeAotIncompatible>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
3 changes: 3 additions & 0 deletions src/tests/JIT/Stress/ABI/tailcalls_d.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<JitOptimizationSensitive>true</JitOptimizationSensitive>
<GCStressIncompatible>true</GCStressIncompatible>

<!-- https://github.com/dotnet/runtime/issues/100125 -->
<NativeAotIncompatible>true</NativeAotIncompatible>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
3 changes: 3 additions & 0 deletions src/tests/JIT/Stress/ABI/tailcalls_do.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<JitOptimizationSensitive>true</JitOptimizationSensitive>
<GCStressIncompatible>true</GCStressIncompatible>

<!-- https://github.com/dotnet/runtime/issues/100125 -->
<NativeAotIncompatible>true</NativeAotIncompatible>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down