summaryrefslogtreecommitdiff
path: root/src/runtime/sys_dragonfly_amd64.s
Commit message (Collapse)AuthorAgeFilesLines
* [dev.cc] runtime: convert assembly files for C to Go transitionRuss Cox2014-11-111-1/+2
| | | | | | | | | | | | | | | | | | | | | The main change is that #include "zasm_GOOS_GOARCH.h" is now #include "go_asm.h" and/or #include "go_tls.h". Also, because C StackGuard is now Go _StackGuard, the assembly name changes from const_StackGuard to const__StackGuard. In asm_$GOARCH.s, add new function getg, formerly implemented in C. The renamed atomics now have Go wrappers, to get escape analysis annotations right. Those wrappers are in CL 174860043. LGTM=r, aram R=r, aram CC=austin, dvyukov, golang-codereviews, iant, khr https://codereview.appspot.com/168510043
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+344
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.