blob: 864b2aa5f7de463cfa8192e45bddd56630c4737f [file] [log] [blame]
Ken Thompsonbbb20732008-06-05 19:38:39 -07001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Ken Thompsonbbb20732008-06-05 19:38:39 -07005/*
6 * basic types
7 */
8typedef signed char int8;
9typedef unsigned char uint8;
10typedef signed short int16;
11typedef unsigned short uint16;
12typedef signed int int32;
13typedef unsigned int uint32;
14typedef signed long long int int64;
15typedef unsigned long long int uint64;
16typedef float float32;
17typedef double float64;
Russ Cox0d3a0432009-03-30 00:01:07 -070018
19#ifdef _64BIT
Russ Cox75647d22008-11-17 12:32:35 -080020typedef uint64 uintptr;
Devon H. O'Dell659780b2009-11-18 09:11:39 -080021typedef int64 intptr;
Russ Cox10ea6512012-09-24 20:57:01 -040022typedef int64 intgo; // Go's int
23typedef uint64 uintgo; // Go's uint
Russ Cox0d3a0432009-03-30 00:01:07 -070024#else
25typedef uint32 uintptr;
Russ Cox0b08c942012-09-24 14:58:34 -040026typedef int32 intptr;
27typedef int32 intgo; // Go's int
28typedef uint32 uintgo; // Go's uint
Russ Cox0d3a0432009-03-30 00:01:07 -070029#endif
Ken Thompsonbbb20732008-06-05 19:38:39 -070030
31/*
32 * get rid of C types
Russ Cox3aa063d2008-11-23 17:08:55 -080033 * the / / / forces a syntax error immediately,
34 * which will show "last name: XXunsigned".
Ken Thompsonbbb20732008-06-05 19:38:39 -070035 */
Russ Cox3aa063d2008-11-23 17:08:55 -080036#define unsigned XXunsigned / / /
37#define signed XXsigned / / /
38#define char XXchar / / /
39#define short XXshort / / /
40#define int XXint / / /
41#define long XXlong / / /
42#define float XXfloat / / /
43#define double XXdouble / / /
Ken Thompsonbbb20732008-06-05 19:38:39 -070044
45/*
46 * defined types
47 */
48typedef uint8 bool;
49typedef uint8 byte;
Russ Cox3aa063d2008-11-23 17:08:55 -080050typedef struct Func Func;
51typedef struct G G;
52typedef struct Gobuf Gobuf;
Dmitriy Vyukovee24bfc2011-11-02 16:42:01 +030053typedef union Lock Lock;
Russ Cox3aa063d2008-11-23 17:08:55 -080054typedef struct M M;
Russ Coxc5f694a2013-03-01 08:30:11 -050055typedef struct P P;
Russ Coxd28acc42008-08-04 16:43:49 -070056typedef struct Mem Mem;
Russ Cox3aa063d2008-11-23 17:08:55 -080057typedef union Note Note;
Rob Pike87f22082009-08-25 15:54:25 -070058typedef struct Slice Slice;
Russ Cox3aa063d2008-11-23 17:08:55 -080059typedef struct Stktop Stktop;
Ken Thompson36570612009-04-09 18:16:21 -070060typedef struct String String;
Russ Cox1903ad72013-02-21 17:01:13 -050061typedef struct FuncVal FuncVal;
Russ Coxc3077f72008-12-19 17:11:54 -080062typedef struct SigTab SigTab;
63typedef struct MCache MCache;
Russ Coxd324f212011-09-30 09:40:01 -040064typedef struct FixAlloc FixAlloc;
Russ Coxc3077f72008-12-19 17:11:54 -080065typedef struct Iface Iface;
Russ Coxc7513ea2009-07-07 11:02:54 -070066typedef struct Itab Itab;
Jan Ziak5c1422a2012-11-01 13:13:20 -040067typedef struct InterfaceType InterfaceType;
Ken Thompsonf59cb492010-02-19 20:42:50 -080068typedef struct Eface Eface;
Russ Coxc7513ea2009-07-07 11:02:54 -070069typedef struct Type Type;
Russ Cox3770b0e2011-08-17 15:54:17 -040070typedef struct ChanType ChanType;
Russ Cox65bde082011-08-17 14:56:27 -040071typedef struct MapType MapType;
Ken Thompson1e1cc4e2009-01-27 12:03:53 -080072typedef struct Defer Defer;
Russ Cox0de71612012-12-22 14:54:39 -050073typedef struct DeferChunk DeferChunk;
Russ Cox9b1507b2010-03-31 11:46:01 -070074typedef struct Panic Panic;
Luuk van Dijk7400be82011-01-31 12:27:28 +010075typedef struct Hmap Hmap;
Russ Cox5ddaf9a2009-07-08 15:00:54 -070076typedef struct Hchan Hchan;
Ken Thompsonf59cb492010-02-19 20:42:50 -080077typedef struct Complex64 Complex64;
78typedef struct Complex128 Complex128;
Alex Brainman2a808822011-08-27 23:17:00 +100079typedef struct WinCall WinCall;
Alex Brainmanafe0e972012-05-30 15:10:54 +100080typedef struct SEH SEH;
Russ Cox3b860262011-11-09 15:17:05 -050081typedef struct Timers Timers;
82typedef struct Timer Timer;
Russ Cox1903ad72013-02-21 17:01:13 -050083typedef struct GCStats GCStats;
84typedef struct LFNode LFNode;
85typedef struct ParFor ParFor;
86typedef struct ParForThread ParForThread;
87typedef struct CgoMal CgoMal;
Dmitriy Vyukov0bee99a2013-03-14 10:38:37 +040088typedef struct PollDesc PollDesc;
Ken Thompson594175d2008-07-13 14:29:46 -070089
90/*
Nigel Tao90ad6a22012-10-19 11:02:32 +110091 * Per-CPU declaration.
92 *
Rob Piked08f0062009-08-11 13:30:35 -070093 * "extern register" is a special storage class implemented by 6c, 8c, etc.
Nigel Tao90ad6a22012-10-19 11:02:32 +110094 * On the ARM, it is an actual register; elsewhere it is a slot in thread-
95 * local storage indexed by a segment register. See zasmhdr in
96 * src/cmd/dist/buildruntime.c for details, and be aware that the linker may
97 * make further OS-specific changes to the compiler's output. For example,
98 * 6l/linux rewrites 0(GS) as -16(FS).
Rob Piked08f0062009-08-11 13:30:35 -070099 *
Nigel Tao90ad6a22012-10-19 11:02:32 +1100100 * Every C file linked into a Go program must include runtime.h so that the
101 * C compiler (6c, 8c, etc.) knows to avoid other uses of these dedicated
102 * registers. The Go compiler (6g, 8g, etc.) knows to avoid them.
Ken Thompson594175d2008-07-13 14:29:46 -0700103 */
Rob Piked08f0062009-08-11 13:30:35 -0700104extern register G* g;
105extern register M* m;
Ken Thompson594175d2008-07-13 14:29:46 -0700106
107/*
108 * defined constants
109 */
110enum
111{
112 // G status
Russ Cox72157c32010-04-08 13:24:53 -0700113 //
114 // If you add to this list, add to the list
115 // of "okay during garbage collection" status
116 // in mgc0.c too.
Ken Thompson594175d2008-07-13 14:29:46 -0700117 Gidle,
118 Grunnable,
Russ Coxd28acc42008-08-04 16:43:49 -0700119 Grunning,
Russ Cox3f8aa662008-12-05 15:24:18 -0800120 Gsyscall,
Ken Thompson52620032008-07-14 14:33:39 -0700121 Gwaiting,
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200122 Gmoribund_unused, // currently unused, but hardcoded in gdb scripts
Ken Thompson594175d2008-07-13 14:29:46 -0700123 Gdead,
124};
125enum
126{
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200127 // P status
128 Pidle,
129 Prunning,
130 Psyscall,
131 Pgcstop,
132 Pdead,
133};
134enum
135{
Ken Thompson594175d2008-07-13 14:29:46 -0700136 true = 1,
137 false = 0,
138};
Jan Ziak54193682012-09-17 17:18:21 -0400139enum
140{
141 PtrSize = sizeof(void*),
142};
Dmitriy Vyukovf82db7d2013-01-10 09:57:06 +0400143enum
144{
145 // Per-M stack segment cache size.
146 StackCacheSize = 32,
147 // Global <-> per-M stack segment cache transfer batch size.
148 StackCacheBatch = 16,
149};
Carl Shapiroc676b8b2013-03-28 14:36:23 -0700150enum
151{
152 // This value is generated by the linker and should be kept in
153 // sync with cmd/ld/lib.h
154 ArgsSizeUnknown = 0x80000000,
155};
Ken Thompson594175d2008-07-13 14:29:46 -0700156/*
157 * structures
158 */
Dmitriy Vyukovee24bfc2011-11-02 16:42:01 +0300159union Lock
Russ Coxd28acc42008-08-04 16:43:49 -0700160{
Dmitriy Vyukovee24bfc2011-11-02 16:42:01 +0300161 uint32 key; // futex-based impl
162 M* waitm; // linked list of waiting M's (sema-based impl)
Russ Cox5ff12f82008-09-24 10:25:28 -0700163};
Russ Cox376898c2008-09-09 11:50:14 -0700164union Note
Russ Coxd28acc42008-08-04 16:43:49 -0700165{
Dmitriy Vyukovee24bfc2011-11-02 16:42:01 +0300166 uint32 key; // futex-based impl
167 M* waitm; // waiting M (sema-based impl)
Russ Coxd28acc42008-08-04 16:43:49 -0700168};
Ken Thompson594175d2008-07-13 14:29:46 -0700169struct String
Ken Thompsonbbb20732008-06-05 19:38:39 -0700170{
Ken Thompson36570612009-04-09 18:16:21 -0700171 byte* str;
Russ Cox0b08c942012-09-24 14:58:34 -0400172 intgo len;
Ken Thompson594175d2008-07-13 14:29:46 -0700173};
Russ Cox1903ad72013-02-21 17:01:13 -0500174struct FuncVal
175{
176 void (*fn)(void);
177 // variable-size, fn-specific data here
178};
Russ Coxc3077f72008-12-19 17:11:54 -0800179struct Iface
180{
Russ Coxc7513ea2009-07-07 11:02:54 -0700181 Itab* tab;
Ken Thompson36570612009-04-09 18:16:21 -0700182 void* data;
Russ Coxc3077f72008-12-19 17:11:54 -0800183};
Russ Cox2da50222009-05-20 14:57:55 -0700184struct Eface
185{
Russ Coxc7513ea2009-07-07 11:02:54 -0700186 Type* type;
Russ Cox2da50222009-05-20 14:57:55 -0700187 void* data;
188};
Ken Thompsonf59cb492010-02-19 20:42:50 -0800189struct Complex64
190{
191 float32 real;
192 float32 imag;
193};
194struct Complex128
195{
196 float64 real;
197 float64 imag;
198};
Ken Thompson66a603c2008-08-27 17:28:30 -0700199
Rob Pike87f22082009-08-25 15:54:25 -0700200struct Slice
Ken Thompson66a603c2008-08-27 17:28:30 -0700201{ // must not move anything
202 byte* array; // actual data
Russ Cox0b08c942012-09-24 14:58:34 -0400203 uintgo len; // number of elements
204 uintgo cap; // allocated number of elements
Ken Thompson66a603c2008-08-27 17:28:30 -0700205};
Ken Thompson751ce3a2008-07-11 19:16:39 -0700206struct Gobuf
207{
Russ Cox38020092009-06-17 16:31:02 -0700208 // The offsets of these fields are known to (hard-coded in) libmach.
Jan Ziak334bf952012-05-30 13:07:52 -0400209 uintptr sp;
Russ Cox7343e032009-06-17 15:12:16 -0700210 byte* pc;
211 G* g;
Ken Thompson751ce3a2008-07-11 19:16:39 -0700212};
Dmitriy Vyukovd839a802012-04-05 20:48:28 +0400213struct GCStats
214{
215 // the struct must consist of only uint64's,
216 // because it is casted to uint64[].
217 uint64 nhandoff;
218 uint64 nhandoffcnt;
219 uint64 nprocyield;
220 uint64 nosyield;
221 uint64 nsleep;
222};
Ken Thompson7b454bb2008-07-09 11:35:26 -0700223struct G
Ken Thompson45288542008-07-08 17:19:17 -0700224{
Jan Ziak334bf952012-05-30 13:07:52 -0400225 uintptr stackguard; // cannot move - also known to linker, libmach, runtime/cgo
226 uintptr stackbase; // cannot move - also known to libmach, runtime/cgo
Russ Cox7343e032009-06-17 15:12:16 -0700227 Defer* defer;
Russ Cox9b1507b2010-03-31 11:46:01 -0700228 Panic* panic;
229 Gobuf sched;
Jan Ziak334bf952012-05-30 13:07:52 -0400230 uintptr gcstack; // if status==Gsyscall, gcstack = stackbase to use during gc
231 uintptr gcsp; // if status==Gsyscall, gcsp = sched.sp to use during gc
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200232 byte* gcpc; // if status==Gsyscall, gcpc = sched.pc to use during gc
Jan Ziak334bf952012-05-30 13:07:52 -0400233 uintptr gcguard; // if status==Gsyscall, gcguard = stackguard to use during gc
234 uintptr stack0;
Russ Cox1903ad72013-02-21 17:01:13 -0500235 FuncVal* fnstart; // initial function
Rob Pike3835e012008-07-28 11:29:41 -0700236 G* alllink; // on allg
Ken Thompsone963cba2008-07-25 15:55:12 -0700237 void* param; // passed parameter on wakeup
238 int16 status;
Dmitriy Vyukov320df442012-10-26 10:13:06 +0400239 int64 goid;
Adam Langley50d6c812009-12-18 12:25:53 -0800240 uint32 selgen; // valid sudog pointer
Russ Cox03e9ea52011-08-22 23:26:39 -0400241 int8* waitreason; // if status==Gwaiting
Russ Cox96824002008-08-05 14:18:47 -0700242 G* schedlink;
Russ Cox9b1507b2010-03-31 11:46:01 -0700243 bool ispanic;
Dmitriy Vyukov6ee739d2013-03-12 17:21:44 +0400244 bool issystem; // do not output in stack dump
245 bool isbackground; // ignore in deadlock detector
Dmitriy Vyukovea151042013-03-25 20:57:36 +0400246 bool blockingsyscall; // hint that the next syscall will block
Dmitriy Vyukov6ee739d2013-03-12 17:21:44 +0400247 int8 raceignore; // ignore race detection events
Russ Cox7343e032009-06-17 15:12:16 -0700248 M* m; // for debuggers, but offset not hard-coded
Russ Cox218c3932009-07-13 17:28:39 -0700249 M* lockedm;
Russ Cox5963dba2010-04-08 18:15:30 -0700250 int32 sig;
Russ Coxe4b02bf2012-02-22 21:45:01 -0500251 int32 writenbuf;
252 byte* writebuf;
Russ Cox0de71612012-12-22 14:54:39 -0500253 DeferChunk *dchunk;
254 DeferChunk *dchunknext;
Russ Cox5963dba2010-04-08 18:15:30 -0700255 uintptr sigcode0;
256 uintptr sigcode1;
Russ Cox12307002011-01-18 14:15:11 -0500257 uintptr sigpc;
Russ Cox324cc3d02011-03-02 13:42:02 -0500258 uintptr gopc; // pc of go statement that created this goroutine
Dmitriy Vyukov0a40cd22013-02-06 11:40:54 +0400259 uintptr racectx;
Hector Chu9fd26872011-09-17 17:57:59 +1000260 uintptr end[];
Russ Coxd28acc42008-08-04 16:43:49 -0700261};
Ken Thompson45288542008-07-08 17:19:17 -0700262struct M
263{
Russ Cox38020092009-06-17 16:31:02 -0700264 // The offsets of these fields are known to (hard-coded in) libmach.
Russ Cox7343e032009-06-17 15:12:16 -0700265 G* g0; // goroutine with scheduling stack
266 void (*morepc)(void);
Russ Cox141a4a12011-01-14 14:05:20 -0500267 void* moreargp; // argument pointer for more stack
Russ Cox7343e032009-06-17 15:12:16 -0700268 Gobuf morebuf; // gobuf arg to morestack
269
Russ Cox38020092009-06-17 16:31:02 -0700270 // Fields not known to debuggers.
Russ Cox141a4a12011-01-14 14:05:20 -0500271 uint32 moreframesize; // size arguments to morestack
272 uint32 moreargsize;
Russ Cox7343e032009-06-17 15:12:16 -0700273 uintptr cret; // return value from C
274 uint64 procid; // for debuggers, but offset not hard-coded
275 G* gsignal; // signal-handling G
Russ Coxd0d74162013-03-01 09:24:17 -0500276 uintptr tls[4]; // thread-local storage (for x86 extern register)
277 void (*mstartfn)(void);
Russ Cox7343e032009-06-17 15:12:16 -0700278 G* curg; // current running goroutine
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200279 P* p; // attached P for executing Go code (nil if not executing Go code)
280 P* nextp;
Russ Coxefc86a72008-11-25 16:48:10 -0800281 int32 id;
Russ Coxda0a7d72008-12-19 03:13:39 -0800282 int32 mallocing;
Dmitriy Vyukov81221f52013-01-29 14:57:11 +0400283 int32 throwing;
Russ Cox8c357ce2009-06-15 21:31:56 -0700284 int32 gcing;
Russ Cox1ce17912009-01-26 17:37:05 -0800285 int32 locks;
Russ Cox6eb251f2010-03-24 09:40:09 -0700286 int32 nomemprof;
Russ Cox67793502011-02-16 13:21:13 -0500287 int32 dying;
Russ Coxc19b3732011-03-23 11:43:37 -0400288 int32 profilehz;
Russ Coxd324f212011-09-30 09:40:01 -0400289 int32 helpgc;
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200290 bool blockingsyscall;
291 bool spinning;
Dmitriy Vyukov909f3182011-07-12 01:23:58 -0400292 uint32 fastrand;
Ian Lance Taylore9a30872012-11-10 11:19:06 -0800293 uint64 ncgocall; // number of cgo calls in total
294 int32 ncgo; // number of cgo calls currently in progress
295 CgoMal* cgomal;
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200296 Note park;
Russ Cox93689d82009-10-09 15:35:33 -0700297 M* alllink; // on allm
Russ Cox96824002008-08-05 14:18:47 -0700298 M* schedlink;
Russ Cox376898c2008-09-09 11:50:14 -0700299 uint32 machport; // Return address for Mach IPC (OS X)
Russ Coxe29ce172008-12-18 15:42:28 -0800300 MCache *mcache;
Dmitriy Vyukovf82db7d2013-01-10 09:57:06 +0400301 int32 stackinuse;
302 uint32 stackcachepos;
303 uint32 stackcachecnt;
304 void* stackcache[StackCacheSize];
Russ Cox218c3932009-07-13 17:28:39 -0700305 G* lockedg;
Russ Cox5b93fc92012-02-08 10:33:54 -0500306 uintptr createstack[32]; // Stack that created this thread.
Ken Thompsonae605262010-12-09 14:45:27 -0800307 uint32 freglo[16]; // D[i] lsb and F[i]
308 uint32 freghi[16]; // D[i] msb and F[i+16]
309 uint32 fflag; // floating point compare flags
Russ Coxb0a29f32013-02-01 08:34:41 -0800310 uint32 locked; // tracking for LockOSThread
Dmitriy Vyukovee24bfc2011-11-02 16:42:01 +0300311 M* nextwaitm; // next M waiting for lock
312 uintptr waitsema; // semaphore for parking on locks
313 uint32 waitsemacount;
314 uint32 waitsemalock;
Dmitriy Vyukovd839a802012-04-05 20:48:28 +0400315 GCStats gcstats;
Dmitriy Vyukov2f6cbc72012-10-07 22:05:32 +0400316 bool racecall;
Russ Cox6c976392013-02-20 17:48:23 -0500317 bool needextram;
Dmitriy Vyukov2f6cbc72012-10-07 22:05:32 +0400318 void* racepc;
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200319 void (*waitunlockf)(Lock*);
320 Lock* waitlock;
Jan Ziak51b8edc2012-11-27 13:04:59 -0500321 uint32 moreframesize_minalloc;
Russ Cox3b860262011-11-09 15:17:05 -0500322
Jan Ziakf8c58372012-09-24 20:08:05 -0400323 uintptr settype_buf[1024];
324 uintptr settype_bufsize;
325
Russ Cox851f3012011-12-16 15:33:58 -0500326#ifdef GOOS_windows
Hector Chu9fd26872011-09-17 17:57:59 +1000327 void* thread; // thread handle
Hector Chu5c303252011-09-14 20:23:21 -0400328#endif
Akshat Kumarc74f3c42013-01-30 02:53:56 -0800329#ifdef GOOS_plan9
330 int8* notesig;
Akshat Kumara566dea2013-03-08 00:54:44 +0100331 byte* errstr;
Akshat Kumarc74f3c42013-01-30 02:53:56 -0800332#endif
Alex Brainmanafe0e972012-05-30 15:10:54 +1000333 SEH* seh;
Hector Chu9fd26872011-09-17 17:57:59 +1000334 uintptr end[];
Ken Thompson751ce3a2008-07-11 19:16:39 -0700335};
Russ Cox370276a2011-04-27 23:21:12 -0400336
Dmitriy Vyukov353ce602013-02-23 08:48:02 +0400337struct P
338{
339 Lock;
340
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200341 uint32 status; // one of Pidle/Prunning/...
Dmitriy Vyukov6cdfb002013-02-27 21:17:53 +0200342 P* link;
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200343 uint32 tick; // incremented on every scheduler or system call
344 M* m; // back-link to associated M (nil if idle)
345 MCache* mcache;
Dmitriy Vyukov6cdfb002013-02-27 21:17:53 +0200346
Dmitriy Vyukov353ce602013-02-23 08:48:02 +0400347 // Queue of runnable goroutines.
348 G** runq;
349 int32 runqhead;
350 int32 runqtail;
351 int32 runqsize;
Dmitriy Vyukov6cdfb002013-02-27 21:17:53 +0200352
353 // Available G's (status == Gdead)
354 G* gfree;
355 int32 gfreecnt;
356
357 byte pad[64];
Dmitriy Vyukov353ce602013-02-23 08:48:02 +0400358};
359
Russ Coxb0a29f32013-02-01 08:34:41 -0800360// The m->locked word holds a single bit saying whether
361// external calls to LockOSThread are in effect, and then a counter
362// of the internal nesting depth of lockOSThread / unlockOSThread.
363enum
364{
365 LockExternal = 1,
366 LockInternal = 2,
367};
368
Ken Thompson52620032008-07-14 14:33:39 -0700369struct Stktop
Ken Thompson594175d2008-07-13 14:29:46 -0700370{
Russ Cox38020092009-06-17 16:31:02 -0700371 // The offsets of these fields are known to (hard-coded in) libmach.
Russ Cox7343e032009-06-17 15:12:16 -0700372 uint8* stackguard;
373 uint8* stackbase;
374 Gobuf gobuf;
Russ Cox141a4a12011-01-14 14:05:20 -0500375 uint32 argsize;
Russ Coxbba278a2009-07-08 18:16:09 -0700376
Russ Coxafc69282011-01-25 16:35:36 -0500377 uint8* argp; // pointer to arguments in old frame
378 uintptr free; // if free>0, call stackfree using free as size
Russ Cox9b1507b2010-03-31 11:46:01 -0700379 bool panic; // is this frame the top of a panic?
Ken Thompson45288542008-07-08 17:19:17 -0700380};
Ken Thompson594175d2008-07-13 14:29:46 -0700381struct SigTab
Ken Thompsonbbb20732008-06-05 19:38:39 -0700382{
Russ Coxdfa58932008-12-03 14:21:28 -0800383 int32 flags;
Ken Thompson594175d2008-07-13 14:29:46 -0700384 int8 *name;
Ken Thompsonbbb20732008-06-05 19:38:39 -0700385};
Russ Coxdfa58932008-12-03 14:21:28 -0800386enum
387{
Russ Cox35586f72012-02-13 13:52:37 -0500388 SigNotify = 1<<0, // let signal.Notify have signal, even if from kernel
David Symonds3d8ebef2012-02-17 14:36:40 +1100389 SigKill = 1<<1, // if signal.Notify doesn't take it, exit quietly
390 SigThrow = 1<<2, // if signal.Notify doesn't take it, exit loudly
391 SigPanic = 1<<3, // if the signal is from the kernel, panic
392 SigDefault = 1<<4, // if the signal isn't explicitly requested, don't monitor it
Russ Coxcb4428e2013-03-15 00:00:02 -0400393 SigHandling = 1<<5, // our signal handler is registered
394 SigIgnored = 1<<6, // the signal was ignored before we registered for it
Russ Coxdfa58932008-12-03 14:21:28 -0800395};
Ken Thompsonbbb20732008-06-05 19:38:39 -0700396
Russ Cox6eb251f2010-03-24 09:40:09 -0700397// NOTE(rsc): keep in sync with extern.go:/type.Func.
398// Eventually, the loaded symbol table should be closer to this form.
Russ Cox3aa063d2008-11-23 17:08:55 -0800399struct Func
400{
Ken Thompson36570612009-04-09 18:16:21 -0700401 String name;
402 String type; // go type string
403 String src; // src file name
Rob Pike87f22082009-08-25 15:54:25 -0700404 Slice pcln; // pc/ln tab for this func
Russ Cox6eb251f2010-03-24 09:40:09 -0700405 uintptr entry; // entry pc
406 uintptr pc0; // starting pc, ln for table
Russ Coxa5433362008-11-25 09:23:36 -0800407 int32 ln0;
Russ Cox6eb251f2010-03-24 09:40:09 -0700408 int32 frame; // stack frame size
Carl Shapirof4666172013-02-21 12:52:26 -0800409 int32 args; // in/out args size
410 int32 locals; // locals size
Russ Cox3aa063d2008-11-23 17:08:55 -0800411};
412
Jan Ziak5c1422a2012-11-01 13:13:20 -0400413// layout of Itab known to compilers
414struct Itab
415{
416 InterfaceType* inter;
417 Type* type;
418 Itab* link;
419 int32 bad;
420 int32 unused;
421 void (*fun[])(void);
422};
423
Alex Brainman2a808822011-08-27 23:17:00 +1000424struct WinCall
425{
426 void (*fn)(void*);
427 uintptr n; // number of parameters
428 void* args; // parameters
Alex Brainman74063792011-09-14 16:19:45 +1000429 uintptr r1; // return values
430 uintptr r2;
Alex Brainman2a808822011-08-27 23:17:00 +1000431 uintptr err; // error number
432};
Alex Brainmanafe0e972012-05-30 15:10:54 +1000433struct SEH
434{
435 void* prev;
436 void* handler;
437};
Alex Brainman2a808822011-08-27 23:17:00 +1000438
Russ Cox851f3012011-12-16 15:33:58 -0500439#ifdef GOOS_windows
Alex Brainmanf95a2f22010-09-12 11:45:16 +1000440enum {
441 Windows = 1
442};
443#else
444enum {
445 Windows = 0
446};
447#endif
448
Russ Cox3b860262011-11-09 15:17:05 -0500449struct Timers
450{
451 Lock;
452 G *timerproc;
453 bool sleeping;
454 bool rescheduling;
455 Note waitnote;
456 Timer **t;
457 int32 len;
458 int32 cap;
459};
460
461// Package time knows the layout of this structure.
462// If this struct changes, adjust ../time/sleep.go:/runtimeTimer.
463struct Timer
464{
465 int32 i; // heap index
466
467 // Timer wakes up at when, and then at when+period, ... (period > 0 only)
468 // each time calling f(now, arg) in the timer goroutine, so f must be
469 // a well-behaved function and not block.
470 int64 when;
471 int64 period;
Russ Cox1903ad72013-02-21 17:01:13 -0500472 FuncVal *fv;
Russ Cox3b860262011-11-09 15:17:05 -0500473 Eface arg;
474};
475
Dmitriy Vyukova5dc7792012-04-12 11:49:25 +0400476// Lock-free stack node.
477struct LFNode
478{
479 LFNode *next;
480 uintptr pushcnt;
481};
482
Dmitriy Vyukov95643642012-05-11 10:50:03 +0400483// Parallel for descriptor.
484struct ParFor
485{
486 void (*body)(ParFor*, uint32); // executed for each element
487 uint32 done; // number of idle threads
488 uint32 nthr; // total number of threads
489 uint32 nthrmax; // maximum number of threads
490 uint32 thrseq; // thread id sequencer
491 uint32 cnt; // iteration space [0, cnt)
492 void *ctx; // arbitrary user context
493 bool wait; // if true, wait while all threads finish processing,
494 // otherwise parfor may return while other threads are still working
495 ParForThread *thr; // array of thread descriptors
Dmitriy Vyukov433824d2013-03-10 20:46:11 +0400496 uint32 pad; // to align ParForThread.pos for 64-bit atomic operations
Dmitriy Vyukov95643642012-05-11 10:50:03 +0400497 // stats
498 uint64 nsteal;
499 uint64 nstealcnt;
500 uint64 nprocyield;
501 uint64 nosyield;
502 uint64 nsleep;
503};
504
Ian Lance Taylore9a30872012-11-10 11:19:06 -0800505// Track memory allocated by code not written in Go during a cgo call,
506// so that the garbage collector can see them.
507struct CgoMal
508{
509 CgoMal *next;
510 byte *alloc;
511};
512
Ken Thompsonbbb20732008-06-05 19:38:39 -0700513/*
514 * defined macros
Robert Hencke3fbd4782011-05-30 18:02:59 +1000515 * you need super-gopher-guru privilege
Ken Thompsonbbb20732008-06-05 19:38:39 -0700516 * to add this list.
517 */
518#define nelem(x) (sizeof(x)/sizeof((x)[0]))
519#define nil ((void*)0)
Russ Coxdc9a3b22010-12-13 16:22:19 -0500520#define offsetof(s,m) (uint32)(&(((s*)0)->m))
Russ Cox6dbaa202012-05-29 14:02:29 -0400521#define ROUND(x, n) (((x)+(n)-1)&~((n)-1)) /* all-caps to mark as macro: it evaluates n twice */
Ken Thompsonbbb20732008-06-05 19:38:39 -0700522
523/*
Russ Coxeee50ae2008-12-19 12:05:22 -0800524 * known to compiler
525 */
Russ Coxb9ccd072011-12-05 09:40:22 -0500526enum {
527 Structrnd = sizeof(uintptr)
528};
529
530/*
531 * type algorithms - known to compiler
532 */
Russ Coxeee50ae2008-12-19 12:05:22 -0800533enum
534{
Russ Coxa7f6d402009-01-26 09:56:42 -0800535 AMEM,
Dmitriy Vyukov1ff14052012-01-20 10:32:55 +0400536 AMEM0,
Dmitriy Vyukov54e94062011-08-08 09:35:32 -0400537 AMEM8,
538 AMEM16,
539 AMEM32,
540 AMEM64,
541 AMEM128,
Russ Cox196b6632011-12-12 22:22:09 -0500542 ANOEQ,
Dmitriy Vyukov1ff14052012-01-20 10:32:55 +0400543 ANOEQ0,
Dmitriy Vyukov54e94062011-08-08 09:35:32 -0400544 ANOEQ8,
545 ANOEQ16,
546 ANOEQ32,
547 ANOEQ64,
548 ANOEQ128,
Russ Cox196b6632011-12-12 22:22:09 -0500549 ASTRING,
550 AINTER,
551 ANILINTER,
552 ASLICE,
Russ Cox408f0b12012-01-26 16:25:07 -0500553 AFLOAT32,
554 AFLOAT64,
555 ACPLX64,
556 ACPLX128,
Russ Coxa7f6d402009-01-26 09:56:42 -0800557 Amax
Russ Coxeee50ae2008-12-19 12:05:22 -0800558};
Russ Coxb9ccd072011-12-05 09:40:22 -0500559typedef struct Alg Alg;
560struct Alg
561{
562 void (*hash)(uintptr*, uintptr, void*);
563 void (*equal)(bool*, uintptr, void*, void*);
564 void (*print)(uintptr, void*);
565 void (*copy)(uintptr, void*, void*);
Russ Cox29aa3ff2009-07-02 21:25:46 -0700566};
567
Russ Coxb9ccd072011-12-05 09:40:22 -0500568extern Alg runtime·algarray[Amax];
569
Keith Randalla5d40242013-03-12 10:47:44 -0700570byte* runtime·startup_random_data;
571uint32 runtime·startup_random_data_len;
572void runtime·get_random_data(byte**, int32*);
573
574enum {
575 // hashinit wants this many random bytes
576 HashRandomBytes = 32
577};
578void runtime·hashinit(void);
579
Russ Coxb9ccd072011-12-05 09:40:22 -0500580void runtime·memhash(uintptr*, uintptr, void*);
581void runtime·nohash(uintptr*, uintptr, void*);
582void runtime·strhash(uintptr*, uintptr, void*);
583void runtime·interhash(uintptr*, uintptr, void*);
584void runtime·nilinterhash(uintptr*, uintptr, void*);
Keith Randalla5d40242013-03-12 10:47:44 -0700585void runtime·aeshash(uintptr*, uintptr, void*);
586void runtime·aeshash32(uintptr*, uintptr, void*);
587void runtime·aeshash64(uintptr*, uintptr, void*);
588void runtime·aeshashstr(uintptr*, uintptr, void*);
Russ Coxb9ccd072011-12-05 09:40:22 -0500589
590void runtime·memequal(bool*, uintptr, void*, void*);
591void runtime·noequal(bool*, uintptr, void*, void*);
592void runtime·strequal(bool*, uintptr, void*, void*);
593void runtime·interequal(bool*, uintptr, void*, void*);
594void runtime·nilinterequal(bool*, uintptr, void*, void*);
595
Keith Randall3d5daa22013-04-02 16:26:15 -0700596bool runtime·memeq(void*, void*, uintptr);
597
Russ Coxb9ccd072011-12-05 09:40:22 -0500598void runtime·memprint(uintptr, void*);
599void runtime·strprint(uintptr, void*);
600void runtime·interprint(uintptr, void*);
601void runtime·nilinterprint(uintptr, void*);
602
603void runtime·memcopy(uintptr, void*, void*);
604void runtime·memcopy8(uintptr, void*, void*);
605void runtime·memcopy16(uintptr, void*, void*);
606void runtime·memcopy32(uintptr, void*, void*);
607void runtime·memcopy64(uintptr, void*, void*);
608void runtime·memcopy128(uintptr, void*, void*);
Russ Coxb9ccd072011-12-05 09:40:22 -0500609void runtime·strcopy(uintptr, void*, void*);
610void runtime·algslicecopy(uintptr, void*, void*);
611void runtime·intercopy(uintptr, void*, void*);
612void runtime·nilintercopy(uintptr, void*, void*);
613
Russ Coxeee50ae2008-12-19 12:05:22 -0800614/*
Ken Thompson47ab1c12009-01-27 13:23:28 -0800615 * deferred subroutine calls
Ken Thompson1e1cc4e2009-01-27 12:03:53 -0800616 */
617struct Defer
618{
619 int32 siz;
Russ Cox0de71612012-12-22 14:54:39 -0500620 bool special; // not part of defer frame
621 bool free; // if special, free when done
Russ Cox141a4a12011-01-14 14:05:20 -0500622 byte* argp; // where args were copied from
Russ Cox9b1507b2010-03-31 11:46:01 -0700623 byte* pc;
Russ Cox1903ad72013-02-21 17:01:13 -0500624 FuncVal* fn;
Ken Thompson1e1cc4e2009-01-27 12:03:53 -0800625 Defer* link;
Jan Ziak334bf952012-05-30 13:07:52 -0400626 void* args[1]; // padded to actual size
Ken Thompson1e1cc4e2009-01-27 12:03:53 -0800627};
628
Russ Cox0de71612012-12-22 14:54:39 -0500629struct DeferChunk
630{
631 DeferChunk *prev;
632 uintptr off;
633};
634
Ken Thompson1e1cc4e2009-01-27 12:03:53 -0800635/*
Russ Cox9b1507b2010-03-31 11:46:01 -0700636 * panics
637 */
638struct Panic
639{
640 Eface arg; // argument to panic
641 byte* stackbase; // g->stackbase in panic
642 Panic* link; // link to earlier panic
643 bool recovered; // whether this panic is over
644};
645
646/*
Ken Thompson594175d2008-07-13 14:29:46 -0700647 * external data
648 */
Russ Cox68b42552010-11-04 14:00:19 -0400649extern String runtime·emptystring;
Jan Ziak4a191c22012-10-21 17:41:32 -0400650extern uintptr runtime·zerobase;
Shenghou Ma4019d0e2013-01-26 09:57:06 +0800651extern G* runtime·allg;
652extern G* runtime·lastg;
653extern M* runtime·allm;
Dmitriy Vyukov779c45a2013-03-01 13:49:16 +0200654extern P** runtime·allp;
Russ Cox68b42552010-11-04 14:00:19 -0400655extern int32 runtime·gomaxprocs;
Dmitriy Vyukova2677cf2011-08-16 16:53:02 -0400656extern bool runtime·singleproc;
Russ Cox67793502011-02-16 13:21:13 -0500657extern uint32 runtime·panicking;
Russ Cox36115532013-03-01 14:57:05 -0500658extern uint32 runtime·gcwaiting; // gc is waiting to run
Shenghou Ma4019d0e2013-01-26 09:57:06 +0800659extern int8* runtime·goos;
660extern int32 runtime·ncpu;
Russ Cox9042c2c2010-12-08 13:53:30 -0500661extern bool runtime·iscgo;
Russ Cox0b08c942012-09-24 14:58:34 -0400662extern void (*runtime·sysargs)(int32, uint8**);
663extern uint32 runtime·maxstring;
Jan Ziaka656f822013-02-25 15:58:23 -0500664extern uint32 runtime·Hchansize;
Keith Randalla5d40242013-03-12 10:47:44 -0700665extern uint32 runtime·cpuid_ecx;
666extern uint32 runtime·cpuid_edx;
Ken Thompson594175d2008-07-13 14:29:46 -0700667
668/*
Rob Pike8e82a672008-06-30 11:50:36 -0700669 * common functions and data
670 */
Russ Cox68b42552010-11-04 14:00:19 -0400671int32 runtime·strcmp(byte*, byte*);
Dmitriy Vyukov4e5086b2011-07-29 12:44:06 -0400672byte* runtime·strstr(byte*, byte*);
Russ Cox68b42552010-11-04 14:00:19 -0400673int32 runtime·findnull(byte*);
Alex Brainmana41d8542011-01-12 11:48:15 +1100674int32 runtime·findnullw(uint16*);
Russ Cox68b42552010-11-04 14:00:19 -0400675void runtime·dump(byte*, int32);
676int32 runtime·runetochar(byte*, int32);
677int32 runtime·charntorune(int32*, uint8*, int32);
Rob Pike8e82a672008-06-30 11:50:36 -0700678
Rob Pike8e82a672008-06-30 11:50:36 -0700679/*
Ken Thompson4e8142c2008-06-16 22:34:50 -0700680 * very low level c-called
Ken Thompsonbbb20732008-06-05 19:38:39 -0700681 */
Russ Cox68b42552010-11-04 14:00:19 -0400682#define FLUSH(x) USED(x)
Russ Cox4e28cfe2010-03-26 14:15:30 -0700683
Russ Cox68b42552010-11-04 14:00:19 -0400684void runtime·gogo(Gobuf*, uintptr);
Russ Cox6066fdc2013-02-22 10:47:54 -0500685void runtime·gogocall(Gobuf*, void(*)(void), uintptr);
Russ Cox1903ad72013-02-21 17:01:13 -0500686void runtime·gogocallfn(Gobuf*, FuncVal*);
Russ Coxf9ca3b52011-03-07 10:37:42 -0500687void runtime·gosave(Gobuf*);
Russ Cox68b42552010-11-04 14:00:19 -0400688void runtime·lessstack(void);
689void runtime·goargs(void);
Alex Brainmana41d8542011-01-12 11:48:15 +1100690void runtime·goenvs(void);
691void runtime·goenvs_unix(void);
Russ Cox68b42552010-11-04 14:00:19 -0400692void* runtime·getu(void);
693void runtime·throw(int8*);
694void runtime·panicstring(int8*);
Russ Cox68b42552010-11-04 14:00:19 -0400695void runtime·prints(int8*);
696void runtime·printf(int8*, ...);
697byte* runtime·mchr(byte*, byte, byte*);
Keith Randall00224a32013-03-20 13:51:29 -0700698int32 runtime·mcmp(byte*, byte*, uintptr);
Rémy Oudompheng1b8f51c2013-03-09 00:41:03 +0100699void runtime·memmove(void*, void*, uintptr);
Russ Cox68b42552010-11-04 14:00:19 -0400700void* runtime·mal(uintptr);
701String runtime·catstring(String, String);
702String runtime·gostring(byte*);
Russ Cox0b08c942012-09-24 14:58:34 -0400703String runtime·gostringn(byte*, intgo);
704Slice runtime·gobytes(byte*, intgo);
Russ Cox68b42552010-11-04 14:00:19 -0400705String runtime·gostringnocopy(byte*);
Alex Brainmana41d8542011-01-12 11:48:15 +1100706String runtime·gostringw(uint16*);
Russ Cox35586f72012-02-13 13:52:37 -0500707void runtime·initsig(void);
David Symonds3d8ebef2012-02-17 14:36:40 +1100708void runtime·sigenable(uint32 sig);
Russ Coxcb4428e2013-03-15 00:00:02 -0400709void runtime·sigdisable(uint32 sig);
Russ Cox5146a932013-03-15 01:11:03 -0400710int32 runtime·gotraceback(bool *crash);
Russ Cox03e9ea52011-08-22 23:26:39 -0400711void runtime·goroutineheader(G*);
Russ Cox68b42552010-11-04 14:00:19 -0400712void runtime·traceback(uint8 *pc, uint8 *sp, uint8 *lr, G* gp);
713void runtime·tracebackothers(G*);
Keith Randalla5d40242013-03-12 10:47:44 -0700714int32 runtime·open(int8*, int32, int32);
715int32 runtime·read(int32, void*, int32);
Russ Cox68b42552010-11-04 14:00:19 -0400716int32 runtime·write(int32, void*, int32);
Keith Randalla5d40242013-03-12 10:47:44 -0700717int32 runtime·close(int32);
Jonathan Markddde52a2011-06-07 21:50:10 -0700718int32 runtime·mincore(void*, uintptr, byte*);
Russ Cox68b42552010-11-04 14:00:19 -0400719bool runtime·cas(uint32*, uint32, uint32);
Dmitriy Vyukov46675712012-04-05 18:47:43 +0400720bool runtime·cas64(uint64*, uint64*, uint64);
Russ Cox68b42552010-11-04 14:00:19 -0400721bool runtime·casp(void**, void*, void*);
Dmitriy Vyukov997c00f2011-06-28 15:09:53 -0400722// Don't confuse with XADD x86 instruction,
723// this one is actually 'addx', that is, add-and-fetch.
Russ Cox68b42552010-11-04 14:00:19 -0400724uint32 runtime·xadd(uint32 volatile*, int32);
Dmitriy Vyukov46675712012-04-05 18:47:43 +0400725uint64 runtime·xadd64(uint64 volatile*, int64);
Dmitriy Vyukov4e5086b2011-07-29 12:44:06 -0400726uint32 runtime·xchg(uint32 volatile*, uint32);
Dmitriy Vyukovadd33492013-03-05 09:46:52 +0200727uint64 runtime·xchg64(uint64 volatile*, uint64);
Dmitriy Vyukov86a659c2011-07-13 11:22:41 -0700728uint32 runtime·atomicload(uint32 volatile*);
Dmitriy Vyukov91f0f182011-07-29 13:47:24 -0400729void runtime·atomicstore(uint32 volatile*, uint32);
Dmitriy Vyukov46675712012-04-05 18:47:43 +0400730void runtime·atomicstore64(uint64 volatile*, uint64);
731uint64 runtime·atomicload64(uint64 volatile*);
Dmitriy Vyukov86a659c2011-07-13 11:22:41 -0700732void* runtime·atomicloadp(void* volatile*);
733void runtime·atomicstorep(void* volatile*, void*);
Russ Cox1903ad72013-02-21 17:01:13 -0500734void runtime·jmpdefer(FuncVal*, void*);
Russ Cox68b42552010-11-04 14:00:19 -0400735void runtime·exit1(int32);
736void runtime·ready(G*);
737byte* runtime·getenv(int8*);
738int32 runtime·atoi(byte*);
Russ Coxe6a3e222013-03-01 11:44:43 -0500739void runtime·newosproc(M *mp, void *stk);
740void runtime·mstart(void);
Russ Cox68b42552010-11-04 14:00:19 -0400741G* runtime·malg(int32);
Russ Cox1707a992012-02-14 01:23:15 -0500742void runtime·asminit(void);
Dmitriy Vyukova0955a22013-02-21 16:24:38 +0400743void runtime·mpreinit(M*);
Russ Cox68b42552010-11-04 14:00:19 -0400744void runtime·minit(void);
Russ Cox6c976392013-02-20 17:48:23 -0500745void runtime·unminit(void);
746void runtime·signalstack(byte*, int32);
Russ Cox68b42552010-11-04 14:00:19 -0400747Func* runtime·findfunc(uintptr);
Russ Coxb287d7c2011-02-02 16:44:20 -0500748int32 runtime·funcline(Func*, uintptr);
Russ Cox68b42552010-11-04 14:00:19 -0400749void* runtime·stackalloc(uint32);
Russ Coxafc69282011-01-25 16:35:36 -0500750void runtime·stackfree(void*, uintptr);
Russ Cox68b42552010-11-04 14:00:19 -0400751MCache* runtime·allocmcache(void);
Dmitriy Vyukoved516df2012-07-01 13:10:01 +0400752void runtime·freemcache(MCache*);
Russ Cox68b42552010-11-04 14:00:19 -0400753void runtime·mallocinit(void);
Jan Ziak4da6b362013-01-30 09:01:31 -0800754void runtime·mprofinit(void);
Russ Cox68b42552010-11-04 14:00:19 -0400755bool runtime·ifaceeq_c(Iface, Iface);
756bool runtime·efaceeq_c(Eface, Eface);
Ian Lance Taylor63bee952013-01-04 07:53:42 -0800757uintptr runtime·ifacehash(Iface, uintptr);
758uintptr runtime·efacehash(Eface, uintptr);
Russ Cox68b42552010-11-04 14:00:19 -0400759void* runtime·malloc(uintptr size);
760void runtime·free(void *v);
Russ Cox1903ad72013-02-21 17:01:13 -0500761bool runtime·addfinalizer(void*, FuncVal *fn, uintptr);
Russ Cox68b42552010-11-04 14:00:19 -0400762void runtime·runpanic(Panic*);
763void* runtime·getcallersp(void*);
Russ Cox4608feb2011-01-28 15:03:26 -0500764int32 runtime·mcount(void);
Russ Coxe4b02bf2012-02-22 21:45:01 -0500765int32 runtime·gcount(void);
Russ Coxf9ca3b52011-03-07 10:37:42 -0500766void runtime·mcall(void(*)(G*));
Dmitriy Vyukov909f3182011-07-12 01:23:58 -0400767uint32 runtime·fastrand1(void);
Russ Coxd28acc42008-08-04 16:43:49 -0700768
Russ Cox6c976392013-02-20 17:48:23 -0500769void runtime·setmg(M*, G*);
770void runtime·newextram(void);
Russ Cox68b42552010-11-04 14:00:19 -0400771void runtime·exit(int32);
772void runtime·breakpoint(void);
773void runtime·gosched(void);
Dmitriy Vyukovf20fd872012-09-18 21:15:46 +0400774void runtime·park(void(*)(Lock*), Lock*, int8*);
775void runtime·tsleep(int64, int8*);
Russ Cox3b860262011-11-09 15:17:05 -0500776M* runtime·newm(void);
Russ Cox68b42552010-11-04 14:00:19 -0400777void runtime·goexit(void);
Russ Coxf9ca3b52011-03-07 10:37:42 -0500778void runtime·asmcgocall(void (*fn)(void*), void*);
Russ Cox68b42552010-11-04 14:00:19 -0400779void runtime·entersyscall(void);
Dmitriy Vyukove25f19a2013-02-20 20:21:45 +0400780void runtime·entersyscallblock(void);
Russ Cox68b42552010-11-04 14:00:19 -0400781void runtime·exitsyscall(void);
Russ Cox1903ad72013-02-21 17:01:13 -0500782G* runtime·newproc1(FuncVal*, byte*, int32, int32, void*);
Russ Cox68b42552010-11-04 14:00:19 -0400783bool runtime·sigsend(int32 sig);
Russ Cox68b42552010-11-04 14:00:19 -0400784int32 runtime·callers(int32, uintptr*, int32);
Carl Shapiroc676b8b2013-03-28 14:36:23 -0700785int32 runtime·gentraceback(byte*, byte*, byte*, G*, int32, uintptr*, int32, void (*)(Func*, byte*, byte*, void*), void*);
Russ Cox68b42552010-11-04 14:00:19 -0400786int64 runtime·nanotime(void);
787void runtime·dopanic(int32);
Russ Cox67793502011-02-16 13:21:13 -0500788void runtime·startpanic(void);
Dmitriy Vyukova54f920b2012-07-04 14:52:51 +0400789void runtime·unwindstack(G*, byte*);
Russ Coxc19b3732011-03-23 11:43:37 -0400790void runtime·sigprof(uint8 *pc, uint8 *sp, uint8 *lr, G *gp);
791void runtime·resetcpuprofiler(int32);
792void runtime·setcpuprofilerate(void(*)(uintptr*, int32), int32);
Russ Coxd324f212011-09-30 09:40:01 -0400793void runtime·usleep(uint32);
Damian Gryski8e765da2012-02-02 14:09:27 -0500794int64 runtime·cputicks(void);
Dmitriy Vyukov4cc7bf32012-10-06 12:56:04 +0400795int64 runtime·tickspersecond(void);
796void runtime·blockevent(int64, int32);
797extern int64 runtime·blockprofilerate;
Dmitriy Vyukovd0c11d22013-03-05 09:38:15 +0200798void runtime·addtimer(Timer*);
799bool runtime·deltimer(Timer*);
Dmitriy Vyukovc2118842013-03-12 21:14:26 +0400800G* runtime·netpoll(bool);
Dmitriy Vyukov0bee99a2013-03-14 10:38:37 +0400801void runtime·netpollinit(void);
802int32 runtime·netpollopen(int32, PollDesc*);
Dmitriy Vyukov44840782013-03-21 12:54:19 +0400803int32 runtime·netpollclose(int32);
Dmitriy Vyukov0bee99a2013-03-14 10:38:37 +0400804void runtime·netpollready(G**, PollDesc*, int32);
Russ Cox5146a932013-03-15 01:11:03 -0400805void runtime·crash(void);
Russ Cox5bb0c4f2008-12-15 10:50:33 -0800806
Russ Cox68b42552010-11-04 14:00:19 -0400807#pragma varargck argpos runtime·printf 1
Russ Cox5bb0c4f2008-12-15 10:50:33 -0800808#pragma varargck type "d" int32
809#pragma varargck type "d" uint32
810#pragma varargck type "D" int64
811#pragma varargck type "D" uint64
812#pragma varargck type "x" int32
813#pragma varargck type "x" uint32
814#pragma varargck type "X" int64
815#pragma varargck type "X" uint64
816#pragma varargck type "p" void*
Russ Cox0d3a0432009-03-30 00:01:07 -0700817#pragma varargck type "p" uintptr
Russ Cox5bb0c4f2008-12-15 10:50:33 -0800818#pragma varargck type "s" int8*
819#pragma varargck type "s" uint8*
Ken Thompson36570612009-04-09 18:16:21 -0700820#pragma varargck type "S" String
Russ Cox5bb0c4f2008-12-15 10:50:33 -0800821
Russ Cox68b42552010-11-04 14:00:19 -0400822void runtime·stoptheworld(void);
Dmitriy Vyukov01826282012-05-15 19:10:16 +0400823void runtime·starttheworld(void);
Russ Coxe4b02bf2012-02-22 21:45:01 -0500824extern uint32 runtime·worldsema;
Russ Cox3f8aa662008-12-05 15:24:18 -0800825
Russ Coxd28acc42008-08-04 16:43:49 -0700826/*
827 * mutual exclusion locks. in the uncontended case,
828 * as fast as spin locks (just a few user-level instructions),
829 * but on the contention path they sleep in the kernel.
Russ Cox96824002008-08-05 14:18:47 -0700830 * a zeroed Lock is unlocked (no need to initialize each lock).
Russ Coxd28acc42008-08-04 16:43:49 -0700831 */
Russ Cox68b42552010-11-04 14:00:19 -0400832void runtime·lock(Lock*);
833void runtime·unlock(Lock*);
Russ Coxd28acc42008-08-04 16:43:49 -0700834
835/*
Russ Coxa68592a2009-10-14 13:02:05 -0700836 * sleep and wakeup on one-time events.
Russ Coxf7f63292008-08-05 14:21:42 -0700837 * before any calls to notesleep or notewakeup,
Russ Cox96824002008-08-05 14:18:47 -0700838 * must call noteclear to initialize the Note.
Dmitriy Vyukova496c9e2011-08-03 15:51:55 -0400839 * then, exactly one thread can call notesleep
Russ Cox96824002008-08-05 14:18:47 -0700840 * and exactly one thread can call notewakeup (once).
Dmitriy Vyukova496c9e2011-08-03 15:51:55 -0400841 * once notewakeup has been called, the notesleep
842 * will return. future notesleep will return immediately.
843 * subsequent noteclear must be called only after
844 * previous notesleep has returned, e.g. it's disallowed
845 * to call noteclear straight after notewakeup.
Russ Cox3b860262011-11-09 15:17:05 -0500846 *
847 * notetsleep is like notesleep but wakes up after
848 * a given number of nanoseconds even if the event
849 * has not yet happened. if a goroutine uses notetsleep to
850 * wake up early, it must wait to call noteclear until it
851 * can be sure that no other goroutine is calling
852 * notewakeup.
Russ Coxd28acc42008-08-04 16:43:49 -0700853 */
Russ Cox68b42552010-11-04 14:00:19 -0400854void runtime·noteclear(Note*);
855void runtime·notesleep(Note*);
856void runtime·notewakeup(Note*);
Russ Cox3b860262011-11-09 15:17:05 -0500857void runtime·notetsleep(Note*, int64);
858
859/*
860 * low-level synchronization for implementing the above
861 */
862uintptr runtime·semacreate(void);
863int32 runtime·semasleep(int64);
864void runtime·semawakeup(M*);
865// or
866void runtime·futexsleep(uint32*, uint32, int64);
867void runtime·futexwakeup(uint32*, uint32);
Ian Lance Taylor9b8da822009-01-13 09:55:24 -0800868
869/*
Dmitriy Vyukova5dc7792012-04-12 11:49:25 +0400870 * Lock-free stack.
871 * Initialize uint64 head to 0, compare with 0 to test for emptiness.
872 * The stack does not keep pointers to nodes,
873 * so they can be garbage collected if there are no other pointers to nodes.
874 */
875void runtime·lfstackpush(uint64 *head, LFNode *node);
876LFNode* runtime·lfstackpop(uint64 *head);
877
878/*
Dmitriy Vyukov95643642012-05-11 10:50:03 +0400879 * Parallel for over [0, n).
880 * body() is executed for each iteration.
881 * nthr - total number of worker threads.
882 * ctx - arbitrary user context.
883 * if wait=true, threads return from parfor() when all work is done;
884 * otherwise, threads can return while other threads are still finishing processing.
885 */
886ParFor* runtime·parforalloc(uint32 nthrmax);
887void runtime·parforsetup(ParFor *desc, uint32 nthr, uint32 n, void *ctx, bool wait, void (*body)(ParFor*, uint32));
888void runtime·parfordo(ParFor *desc);
889
890/*
Adam Langley3f7a3242009-11-13 10:08:51 -0800891 * This is consistent across Linux and BSD.
892 * If a new OS is added that is different, move this to
893 * $GOOS/$GOARCH/defs.h.
894 */
895#define EACCES 13
896
897/*
Russ Coxafc69282011-01-25 16:35:36 -0500898 * low level C-called
Ken Thompson4e8142c2008-06-16 22:34:50 -0700899 */
Shenghou Mab151af12012-09-21 13:50:02 +0800900// for mmap, we only pass the lower 32 bits of file offset to the
901// assembly routine; the higher bits (if required), should be provided
902// by the assembly routine as 0.
Russ Cox68b42552010-11-04 14:00:19 -0400903uint8* runtime·mmap(byte*, uintptr, int32, int32, int32, uint32);
Russ Coxe83cd7f2011-12-20 17:54:40 -0500904void runtime·munmap(byte*, uintptr);
905void runtime·madvise(byte*, uintptr, int32);
Russ Coxafc69282011-01-25 16:35:36 -0500906void runtime·memclr(byte*, uintptr);
Russ Cox68b42552010-11-04 14:00:19 -0400907void runtime·setcallerpc(void*, void*);
908void* runtime·getcallerpc(void*);
Ken Thompsonbbb20732008-06-05 19:38:39 -0700909
910/*
Ken Thompson4e8142c2008-06-16 22:34:50 -0700911 * runtime go-called
Ken Thompsonbbb20732008-06-05 19:38:39 -0700912 */
Russ Cox68b42552010-11-04 14:00:19 -0400913void runtime·printbool(bool);
Carl Shapiro7f9c02a2013-02-19 18:05:44 -0800914void runtime·printbyte(int8);
Russ Cox68b42552010-11-04 14:00:19 -0400915void runtime·printfloat(float64);
916void runtime·printint(int64);
917void runtime·printiface(Iface);
918void runtime·printeface(Eface);
919void runtime·printstring(String);
920void runtime·printpc(void*);
921void runtime·printpointer(void*);
922void runtime·printuint(uint64);
923void runtime·printhex(uint64);
924void runtime·printslice(Slice);
925void runtime·printcomplex(Complex128);
Russ Cox1903ad72013-02-21 17:01:13 -0500926void reflect·call(FuncVal*, byte*, uint32);
Russ Cox68b42552010-11-04 14:00:19 -0400927void runtime·panic(Eface);
928void runtime·panicindex(void);
929void runtime·panicslice(void);
Russ Cox7c2b1592010-10-25 17:55:50 -0700930
Russ Cox63e878a2010-03-31 15:55:10 -0700931/*
932 * runtime c-called (but written in Go)
933 */
Russ Cox68b42552010-11-04 14:00:19 -0400934void runtime·printany(Eface);
Russ Cox6a75ece2012-02-12 23:26:20 -0500935void runtime·newTypeAssertionError(String*, String*, String*, String*, Eface*);
Russ Cox68b42552010-11-04 14:00:19 -0400936void runtime·newErrorString(String, Eface*);
937void runtime·fadd64c(uint64, uint64, uint64*);
938void runtime·fsub64c(uint64, uint64, uint64*);
939void runtime·fmul64c(uint64, uint64, uint64*);
940void runtime·fdiv64c(uint64, uint64, uint64*);
941void runtime·fneg64c(uint64, uint64*);
942void runtime·f32to64c(uint32, uint64*);
943void runtime·f64to32c(uint64, uint32*);
944void runtime·fcmp64c(uint64, uint64, int32*, bool*);
945void runtime·fintto64c(int64, uint64*);
946void runtime·f64tointc(uint64, int64*, bool*);
Rob Pike6db99de2008-07-08 10:36:43 -0700947
948/*
Russ Cox1f8a40d2009-01-22 16:23:44 -0800949 * wrapped for go users
Rob Pike6db99de2008-07-08 10:36:43 -0700950 */
Russ Cox68b42552010-11-04 14:00:19 -0400951float64 runtime·Inf(int32 sign);
952float64 runtime·NaN(void);
953float32 runtime·float32frombits(uint32 i);
954uint32 runtime·float32tobits(float32 f);
955float64 runtime·float64frombits(uint64 i);
956uint64 runtime·float64tobits(float64 f);
957float64 runtime·frexp(float64 d, int32 *ep);
958bool runtime·isInf(float64 f, int32 sign);
959bool runtime·isNaN(float64 f);
960float64 runtime·ldexp(float64 d, int32 e);
961float64 runtime·modf(float64 d, float64 *ip);
962void runtime·semacquire(uint32*);
963void runtime·semrelease(uint32*);
Russ Cox68b42552010-11-04 14:00:19 -0400964int32 runtime·gomaxprocsfunc(int32 n);
Dmitriy Vyukov4e5086b2011-07-29 12:44:06 -0400965void runtime·procyield(uint32);
966void runtime·osyield(void);
Russ Coxb0a29f32013-02-01 08:34:41 -0800967void runtime·lockOSThread(void);
968void runtime·unlockOSThread(void);
David Symondsb5866492009-12-15 18:21:29 -0800969
Russ Cox65bde082011-08-17 14:56:27 -0400970void runtime·mapassign(MapType*, Hmap*, byte*, byte*);
971void runtime·mapaccess(MapType*, Hmap*, byte*, byte*, bool*);
Russ Cox68b42552010-11-04 14:00:19 -0400972void runtime·mapiternext(struct hash_iter*);
973bool runtime·mapiterkey(struct hash_iter*, void*);
Russ Cox65bde082011-08-17 14:56:27 -0400974Hmap* runtime·makemap_c(MapType*, int64);
Russ Cox5ddaf9a2009-07-08 15:00:54 -0700975
Russ Cox3770b0e2011-08-17 15:54:17 -0400976Hchan* runtime·makechan_c(ChanType*, int64);
Dmitriy Vyukov2f6cbc72012-10-07 22:05:32 +0400977void runtime·chansend(ChanType*, Hchan*, byte*, bool*, void*);
Russ Cox33e9d242011-08-23 13:13:27 -0400978void runtime·chanrecv(ChanType*, Hchan*, byte*, bool*, bool*);
Dmitriy Vyukov81221f52013-01-29 14:57:11 +0400979bool runtime·showframe(Func*, bool);
Russ Cox5ddaf9a2009-07-08 15:00:54 -0700980
Jan Ziak5c1422a2012-11-01 13:13:20 -0400981void runtime·ifaceE2I(InterfaceType*, Eface, Iface*);
Russ Coxafc69282011-01-25 16:35:36 -0500982
Russ Cox102274a2012-02-24 15:28:51 -0500983uintptr runtime·memlimit(void);
Russ Cox6e2ae0a2012-02-28 16:18:24 -0500984
985// If appropriate, ask the operating system to control whether this
986// thread should receive profiling signals. This is only necessary on OS X.
987// An operating system should not deliver a profiling signal to a
988// thread that is not actually executing (what good is that?), but that's
989// what OS X prefers to do. When profiling is turned on, we mask
990// away the profiling signal when threads go to sleep, so that OS X
991// is forced to deliver the signal to a thread that's actually running.
992// This is a no-op on other systems.
993void runtime·setprof(bool);
Shenghou Ma0157c722012-08-07 23:45:50 +0800994
995// float.c
996extern float64 runtime·nan;
997extern float64 runtime·posinf;
998extern float64 runtime·neginf;
999extern uint64 ·nan;
1000extern uint64 ·posinf;
1001extern uint64 ·neginf;
1002#define ISNAN(f) ((f) != (f))
Jan Ziakf8c58372012-09-24 20:08:05 -04001003
1004enum
1005{
Dmitriy Vyukov5b79aa82013-03-14 13:48:19 +04001006 UseSpanType = 1,
Jan Ziakf8c58372012-09-24 20:08:05 -04001007};