Skip to content

Commit c8b066a

Browse files
authored
fix: Mips32 Entrypoint for stack trace (#53)
* implemented TraceAllAsmCaller * lint fixed * fix: ignored path variation on internal package * fix: profile updated * fix: optimized entrypoint to generate optimal stack trace * fix: entrypoint of mips 32
1 parent d6580a8 commit c8b066a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

common/entrypoint.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ func ProgramEntrypoint(arch string) func(function string) bool {
2323
function == "runtime.morestack" ||
2424
function == "runtime.systemstack" ||
2525
function == "runtime.gopanic" ||
26-
function == "runtime.chanrecv"
26+
function == "runtime.chanrecv" ||
27+
function == "runtime.startm" || // 32 bit specific
28+
function == "runtime.sysAlloc" // // 32 bit specific
2729
}
2830
case "mips64":
2931
return func(function string) bool {

0 commit comments

Comments
 (0)