Skip to content

Commit

Permalink
Fix name of the RhpStackProbe (dotnet#1460)
Browse files Browse the repository at this point in the history
When looking for dotnet#1458, I found this naming discrepancies. I assume that's just some rename happens over time

Co-authored-by: Michal Strehovský <[email protected]>
  • Loading branch information
kant2002 and MichalStrehovsky authored Aug 26, 2021
1 parent 0a9a521 commit 4db726e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/coreclr/nativeaot/Runtime/i386/MiscStubs.S
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <unixasmmacros.inc>

// *********************************************************************/
// JIT_StackProbe
// RhpStackProbe
//
// Purpose:
// the helper will access ("probe") a word on each page of the stack
Expand All @@ -17,7 +17,7 @@
// NOTE: On Linux we must advance the stack pointer as we probe - it is not allowed to access 65535 bytes below esp.
//
#define PAGE_SIZE 0x1000
NESTED_ENTRY JIT_StackProbe, _TEXT, NoHandler
NESTED_ENTRY RhpStackProbe, _TEXT, NoHandler
// On entry:
// eax - the lowest address of the stack frame being allocated (i.e. [InitialSp - FrameSize])
//
Expand All @@ -39,4 +39,4 @@ LOCAL_LABEL(ProbeLoop):
EPILOG_END
ret

NESTED_END JIT_StackProbe, _TEXT
NESTED_END RhpStackProbe, _TEXT

0 comments on commit 4db726e

Please sign in to comment.