runtime: Mark runtime_goexit function as noinline.
If the compiler inlines this function into kickoff, it may reuse the TLS block address to load g. However, this is not necessarily correct, as the call to g->entry in kickoff may cause the TLS address to change. If the wrong value is loaded for g->status in runtime_goexit, it may cause a runtime panic. By marking the function as noinline we prevent the compiler from reusing the TLS address. From-SVN: r215484
This commit is contained in:
parent
d87fc69983
commit
76deefd0cd
1 changed files with 1 additions and 0 deletions
|
@ -1894,6 +1894,7 @@ runtime_gosched0(G *gp)
|
|||
// Need to mark it as nosplit, because it runs with sp > stackbase (as runtime_lessstack).
|
||||
// Since it does not return it does not matter. But if it is preempted
|
||||
// at the split stack check, GC will complain about inconsistent sp.
|
||||
void runtime_goexit(void) __attribute__ ((noinline));
|
||||
void
|
||||
runtime_goexit(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue