1 implementation of GetNativeSequencePoints
ILCompiler.RyuJit (1)
Compiler\DependencyAnalysis\MethodCodeNode.cs (1)
257public IEnumerable<NativeSequencePoint> GetNativeSequencePoints()
7 references to GetNativeSequencePoints
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\StackTraceLineNumbersNode.cs (1)
102foreach (NativeSequencePoint sequencePoint in debugInfoNode.GetNativeSequencePoints())
Compiler\ObjectWriter\CoffObjectWriter.Aot.cs (3)
229debugNode.GetNativeSequencePoints()); 238if (!debugNode.GetNativeSequencePoints().Any()) 259debugNode.GetNativeSequencePoints());
Compiler\ObjectWriter\ObjectWriter.Aot.cs (1)
108bool hasSequencePoints = debugNode.GetNativeSequencePoints().Any();
Compiler\ObjectWriter\UnixObjectWriter.Aot.cs (1)
278debugNode.GetNativeSequencePoints());
Compiler\SourceLinkWriter.cs (1)
59foreach (NativeSequencePoint sequencePoint in debugInfoNode.GetNativeSequencePoints())