mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 10:39:50 -06:00
31 lines
1012 B
C#
31 lines
1012 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Cpu.LightningJit.CodeGen.Arm64
|
|
{
|
|
class StackWalker : IStackWalker
|
|
{
|
|
public IEnumerable<ulong> GetCallStack(nint framePointer, nint codeRegionStart, int codeRegionSize, nint codeRegion2Start, int codeRegion2Size)
|
|
{
|
|
List<ulong> functionPointers = new();
|
|
|
|
while (true)
|
|
{
|
|
nint functionPointer = Marshal.ReadIntPtr(framePointer, nint.Size);
|
|
|
|
if ((functionPointer < codeRegionStart || functionPointer >= codeRegionStart + codeRegionSize) &&
|
|
(functionPointer < codeRegion2Start || functionPointer >= codeRegion2Start + codeRegion2Size))
|
|
{
|
|
break;
|
|
}
|
|
|
|
functionPointers.Add((ulong)functionPointer - 4);
|
|
framePointer = Marshal.ReadIntPtr(framePointer);
|
|
}
|
|
|
|
return functionPointers;
|
|
}
|
|
}
|
|
}
|