Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3541)

Side by Side Diff: src/pkg/runtime/symtab.c

Issue 13302051: code review 13302051: runtime: show runtime.panic frame in traceback (Closed)
Patch Set: diff -r 8d19586af772 https://code.google.com/p/go/ Created 11 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b