-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(godeltaprof): handle renamed runtime.pprof_cyclesPerSecond (#107)
- Loading branch information
1 parent
ffd2615
commit 491e627
Showing
10 changed files
with
152 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
//go:build go1.21 && !go1.23 | ||
// +build go1.21,!go1.23 | ||
|
||
package compat | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestRuntimeFrameSymbolName(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_FrameSymbolName", | ||
"func runtime/pprof.runtime_FrameSymbolName(f *runtime.Frame) string") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_FrameSymbolName", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_FrameSymbolName(f *runtime.Frame) string") | ||
} | ||
|
||
func TestRuntimeFrameStartLine(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_FrameStartLine", | ||
"func runtime/pprof.runtime_FrameStartLine(f *runtime.Frame) int") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_FrameStartLine", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_FrameStartLine(f *runtime.Frame) int") | ||
} | ||
|
||
func TestRuntimeExpandFinalInlineFrame(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_expandFinalInlineFrame", | ||
"func runtime/pprof.runtime_expandFinalInlineFrame(stk []uintptr) []uintptr") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_expandFinalInlineFrame", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_expandFinalInlineFrame(stk []uintptr) []uintptr") | ||
} | ||
|
||
func TestRuntimeCyclesPerSecond(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_cyclesPerSecond", | ||
"func runtime/pprof.runtime_cyclesPerSecond() int64") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_cyclesPerSecond", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_cyclesPerSecond() int64") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
//go:build go1.23 | ||
// +build go1.23 | ||
|
||
package compat | ||
|
||
import "testing" | ||
|
||
func TestRuntimeFrameSymbolName(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_FrameSymbolName", | ||
"func runtime/pprof.runtime_FrameSymbolName(f *runtime.Frame) string") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_FrameSymbolName", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_FrameSymbolName(f *runtime.Frame) string") | ||
} | ||
|
||
func TestRuntimeFrameStartLine(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_FrameStartLine", | ||
"func runtime/pprof.runtime_FrameStartLine(f *runtime.Frame) int") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_FrameStartLine", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_FrameStartLine(f *runtime.Frame) int") | ||
} | ||
|
||
func TestRuntimeExpandFinalInlineFrame(t *testing.T) { | ||
checkSignature(t, "runtime/pprof", | ||
"runtime_expandFinalInlineFrame", | ||
"func runtime/pprof.runtime_expandFinalInlineFrame(stk []uintptr) []uintptr") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_expandFinalInlineFrame", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_expandFinalInlineFrame(stk []uintptr) []uintptr") | ||
} | ||
|
||
func TestRuntimeCyclesPerSecond(t *testing.T) { | ||
checkSignature(t, "runtime", | ||
"pprof_cyclesPerSecond", | ||
"func runtime.pprof_cyclesPerSecond() int64") | ||
checkSignature(t, "github.com/grafana/pyroscope-go/godeltaprof/internal/pprof", | ||
"runtime_cyclesPerSecond", | ||
"func github.com/grafana/pyroscope-go/godeltaprof/internal/pprof.runtime_cyclesPerSecond() int64") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
package pprof | ||
|
||
// unsafe is required for go:linkname | ||
import _ "unsafe" | ||
|
||
//go:linkname runtime_expandFinalInlineFrame runtime/pprof.runtime_expandFinalInlineFrame | ||
func runtime_expandFinalInlineFrame(stk []uintptr) []uintptr | ||
|
||
//go:linkname runtime_cyclesPerSecond runtime/pprof.runtime_cyclesPerSecond | ||
func runtime_cyclesPerSecond() int64 | ||
|
||
func Runtime_cyclesPerSecond() int64 { | ||
return runtime_cyclesPerSecond() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//go:build go1.21 && !go1.23 | ||
// +build go1.21,!go1.23 | ||
|
||
package pprof | ||
|
||
import ( | ||
"runtime" | ||
_ "unsafe" | ||
) | ||
|
||
// runtime_FrameStartLine is defined in runtime/symtab.go. | ||
// | ||
//go:noescape | ||
//go:linkname runtime_FrameStartLine runtime/pprof.runtime_FrameStartLine | ||
func runtime_FrameStartLine(f *runtime.Frame) int | ||
|
||
// runtime_FrameSymbolName is defined in runtime/symtab.go. | ||
// | ||
//go:noescape | ||
//go:linkname runtime_FrameSymbolName runtime/pprof.runtime_FrameSymbolName | ||
func runtime_FrameSymbolName(f *runtime.Frame) string | ||
|
||
//go:linkname runtime_expandFinalInlineFrame runtime/pprof.runtime_expandFinalInlineFrame | ||
func runtime_expandFinalInlineFrame(stk []uintptr) []uintptr | ||
|
||
//go:linkname runtime_cyclesPerSecond runtime/pprof.runtime_cyclesPerSecond | ||
func runtime_cyclesPerSecond() int64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters