aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-traceback.c
AgeCommit message (Collapse)AuthorFilesLines
2016-10-14runtime: copy mprof code from Go 1.7 runtimeIan Lance Taylor1-37/+0
Also create a gccgo version of some of the traceback code in traceback_gccgo.go, replacing some code currently in C. This required modifying the compiler so that when compiling the runtime package a slice expression does not cause a local array variable to escape to the heap. Reviewed-on: https://go-review.googlesource.com/31230 From-SVN: r241189
2014-07-19reflect, runtime: Use libffi closures to implement reflect.MakeFunc.Ian Lance Taylor1-1/+1
Keep using the existing 386 and amd64 code on those archs, since it is more efficient. From-SVN: r212853
2013-01-30runtime: In backtraces, get inline functions, skip split-stack fns.Ian Lance Taylor1-12/+8
From-SVN: r195591
2013-01-30libgo: Update Go library to master revision 15502/229081515358.Ian Lance Taylor1-3/+3
From-SVN: r195569
2012-11-21libgo: Update to current version of master library.Ian Lance Taylor1-1/+1
From-SVN: r193688
2012-11-06compiler, libgo: Fixes to prepare for 64-bit int.Ian Lance Taylor1-2/+2
From-SVN: r193254
2012-11-01compiler, runtime: More steps toward separating int and intgo.Ian Lance Taylor1-4/+3
From-SVN: r193059
2012-06-07runtime: Fix printing of names in stack dumps.Ian Lance Taylor1-2/+2
From-SVN: r188297
2012-05-24runtime: Make runtime.Stack actually work.Ian Lance Taylor1-43/+23
From-SVN: r187854
2012-05-17runtime: Print stack trace on panic or signal.Ian Lance Taylor1-0/+62
From-SVN: r187623