OLD | NEW |
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 /* | 5 /* |
6 * basic types | 6 * basic types |
7 */ | 7 */ |
8 typedef signed char int8; | 8 typedef signed char int8; |
9 typedef unsigned char uint8; | 9 typedef unsigned char uint8; |
10 typedef signed short int16; | 10 typedef signed short int16; |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 MCache* runtime·allocmcache(void); | 803 MCache* runtime·allocmcache(void); |
804 void runtime·freemcache(MCache*); | 804 void runtime·freemcache(MCache*); |
805 void runtime·mallocinit(void); | 805 void runtime·mallocinit(void); |
806 void runtime·mprofinit(void); | 806 void runtime·mprofinit(void); |
807 bool runtime·ifaceeq_c(Iface, Iface); | 807 bool runtime·ifaceeq_c(Iface, Iface); |
808 bool runtime·efaceeq_c(Eface, Eface); | 808 bool runtime·efaceeq_c(Eface, Eface); |
809 uintptr runtime·ifacehash(Iface, uintptr); | 809 uintptr runtime·ifacehash(Iface, uintptr); |
810 uintptr runtime·efacehash(Eface, uintptr); | 810 uintptr runtime·efacehash(Eface, uintptr); |
811 void* runtime·malloc(uintptr size); | 811 void* runtime·malloc(uintptr size); |
812 void runtime·free(void *v); | 812 void runtime·free(void *v); |
813 bool runtime·addfinalizer(void*, FuncVal *fn, uintptr, void*); | |
814 void runtime·runpanic(Panic*); | 813 void runtime·runpanic(Panic*); |
815 uintptr runtime·getcallersp(void*); | 814 uintptr runtime·getcallersp(void*); |
816 int32 runtime·mcount(void); | 815 int32 runtime·mcount(void); |
817 int32 runtime·gcount(void); | 816 int32 runtime·gcount(void); |
818 void runtime·mcall(void(*)(G*)); | 817 void runtime·mcall(void(*)(G*)); |
819 uint32 runtime·fastrand1(void); | 818 uint32 runtime·fastrand1(void); |
820 void runtime·rewindmorestack(Gobuf*); | 819 void runtime·rewindmorestack(Gobuf*); |
821 int32 runtime·timediv(int64, int32, int32*); | 820 int32 runtime·timediv(int64, int32, int32*); |
822 | 821 |
823 void runtime·setmg(M*, G*); | 822 void runtime·setmg(M*, G*); |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1039 bool runtime·mapiterkey(struct hash_iter*, void*); | 1038 bool runtime·mapiterkey(struct hash_iter*, void*); |
1040 Hmap* runtime·makemap_c(MapType*, int64); | 1039 Hmap* runtime·makemap_c(MapType*, int64); |
1041 | 1040 |
1042 Hchan* runtime·makechan_c(ChanType*, int64); | 1041 Hchan* runtime·makechan_c(ChanType*, int64); |
1043 void runtime·chansend(ChanType*, Hchan*, byte*, bool*, void*); | 1042 void runtime·chansend(ChanType*, Hchan*, byte*, bool*, void*); |
1044 void runtime·chanrecv(ChanType*, Hchan*, byte*, bool*, bool*); | 1043 void runtime·chanrecv(ChanType*, Hchan*, byte*, bool*, bool*); |
1045 bool runtime·showframe(Func*, G*); | 1044 bool runtime·showframe(Func*, G*); |
1046 void runtime·printcreatedby(G*); | 1045 void runtime·printcreatedby(G*); |
1047 | 1046 |
1048 void runtime·ifaceE2I(InterfaceType*, Eface, Iface*); | 1047 void runtime·ifaceE2I(InterfaceType*, Eface, Iface*); |
1049 | 1048 bool» runtime·ifaceE2I2(InterfaceType*, Eface, Iface*); |
1050 uintptr runtime·memlimit(void); | 1049 uintptr runtime·memlimit(void); |
1051 | 1050 |
1052 // float.c | 1051 // float.c |
1053 extern float64 runtime·nan; | 1052 extern float64 runtime·nan; |
1054 extern float64 runtime·posinf; | 1053 extern float64 runtime·posinf; |
1055 extern float64 runtime·neginf; | 1054 extern float64 runtime·neginf; |
1056 extern uint64 ·nan; | 1055 extern uint64 ·nan; |
1057 extern uint64 ·posinf; | 1056 extern uint64 ·posinf; |
1058 extern uint64 ·neginf; | 1057 extern uint64 ·neginf; |
1059 #define ISNAN(f) ((f) != (f)) | 1058 #define ISNAN(f) ((f) != (f)) |
1060 | 1059 |
1061 enum | 1060 enum |
1062 { | 1061 { |
1063 UseSpanType = 1, | 1062 UseSpanType = 1, |
1064 }; | 1063 }; |
OLD | NEW |