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

Unified Diff: src/pkg/runtime/arm/asm.s

Issue 825043: code review 825043: runtime: run deferred calls at Goexit (Closed)
Patch Set: code review 825043: runtime: run deferred calls at Goexit Created 15 years ago
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/runtime/amd64/asm.s ('k') | src/pkg/runtime/extern.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/runtime/arm/asm.s
===================================================================
--- a/src/pkg/runtime/arm/asm.s
+++ b/src/pkg/runtime/arm/asm.s
@@ -175,11 +175,11 @@
MOVW g, (m_morebuf+gobuf_g)(m)
// Set up morestack arguments to call f on a new stack.
- // We set f's frame size to zero, meaning
- // allocate a standard sized stack segment.
- // If it turns out that f needs a larger frame than this,
- // f's usual stack growth prolog will allocate
- // a new segment (and recopy the arguments).
+ // We set f's frame size to 1, as a hint to newstack
+ // that this is a call from reflect·call.
+ // If it turns out that f needs a larger frame than
+ // the default stack, f's usual stack growth prolog will
+ // allocate a new segment (and recopy the arguments).
MOVW 4(SP), R0 // fn
MOVW 8(SP), R1 // arg frame
MOVW 12(SP), R2 // arg size
@@ -187,7 +187,7 @@
MOVW R0, m_morepc(m) // f's PC
MOVW R1, m_morefp(m) // argument frame pointer
MOVW R2, m_moreargs(m) // f's argument size
- MOVW $0, R3
+ MOVW $1, R3
MOVW R3, m_moreframe(m) // f's frame size
// Call newstack on m's scheduling stack.
« no previous file with comments | « src/pkg/runtime/amd64/asm.s ('k') | src/pkg/runtime/extern.go » ('j') | no next file with comments »

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