OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // Runtime symbol table parsing. | 5 // Runtime symbol table parsing. |
6 // See http://golang.org/s/go12symtab for an overview. | 6 // See http://golang.org/s/go12symtab for an overview. |
7 | 7 |
8 #include "runtime.h" | 8 #include "runtime.h" |
9 #include "defs_GOOS_GOARCH.h" | 9 #include "defs_GOOS_GOARCH.h" |
10 #include "os_GOOS.h" | 10 #include "os_GOOS.h" |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 } | 310 } |
311 return 0; | 311 return 0; |
312 } | 312 } |
313 | 313 |
314 bool | 314 bool |
315 runtime·showframe(Func *f, G *gp) | 315 runtime·showframe(Func *f, G *gp) |
316 { | 316 { |
317 static int32 traceback = -1; | 317 static int32 traceback = -1; |
318 String name; | 318 String name; |
319 | 319 |
320 » if(m->throwing && gp != nil && (gp == m->curg || gp == m->caughtsig)) | 320 » if(m->throwing > 0 && gp != nil && (gp == m->curg || gp == m->caughtsig)
) |
321 return 1; | 321 return 1; |
322 if(traceback < 0) | 322 if(traceback < 0) |
323 traceback = runtime·gotraceback(nil); | 323 traceback = runtime·gotraceback(nil); |
324 name = runtime·gostringnocopy((uint8*)runtime·funcname(f)); | 324 name = runtime·gostringnocopy((uint8*)runtime·funcname(f)); |
| 325 |
| 326 // Special case: always show runtime.panic frame, so that we can |
| 327 // see where a panic started in the middle of a stack trace. |
| 328 // See golang.org/issue/5832. |
| 329 if(name.len == 7+1+5 && hasprefix(name, "runtime.panic")) |
| 330 return 1; |
| 331 |
325 return traceback > 1 || f != nil && contains(name, ".") && !hasprefix(na
me, "runtime."); | 332 return traceback > 1 || f != nil && contains(name, ".") && !hasprefix(na
me, "runtime."); |
326 } | 333 } |
OLD | NEW |