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 #ifndef EXTERN | 5 #ifndef EXTERN |
6 #define EXTERN extern | 6 #define EXTERN extern |
7 #endif | 7 #endif |
8 | 8 |
9 #include "../gc/go.h" | 9 #include "../gc/go.h" |
10 #include "../8l/8.out.h" | 10 #include "../8l/8.out.h" |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 Plist* newplist(void); | 107 Plist* newplist(void); |
108 int isfat(Type*); | 108 int isfat(Type*); |
109 void sudoclean(void); | 109 void sudoclean(void); |
110 int sudoaddable(int, Node*, Addr*); | 110 int sudoaddable(int, Node*, Addr*); |
111 int dotaddable(Node*, Node*); | 111 int dotaddable(Node*, Node*); |
112 void afunclit(Addr*, Node*); | 112 void afunclit(Addr*, Node*); |
113 void split64(Node*, Node*, Node*); | 113 void split64(Node*, Node*, Node*); |
114 void splitclean(void); | 114 void splitclean(void); |
115 void nswap(Node*, Node*); | 115 void nswap(Node*, Node*); |
116 void gtrack(Sym*); | 116 void gtrack(Sym*); |
117 void gargsize(int32); | |
118 /* | 117 /* |
119 * cplx.c | 118 * cplx.c |
120 */ | 119 */ |
121 int complexop(Node*, Node*); | 120 int complexop(Node*, Node*); |
122 void complexmove(Node*, Node*); | 121 void complexmove(Node*, Node*); |
123 void complexgen(Node*, Node*); | 122 void complexgen(Node*, Node*); |
124 | 123 |
125 /* | 124 /* |
126 * gobj.c | 125 * gobj.c |
127 */ | 126 */ |
128 void datastring(char*, int, Addr*); | 127 void datastring(char*, int, Addr*); |
129 void datagostring(Strlit*, Addr*); | 128 void datagostring(Strlit*, Addr*); |
130 | 129 |
131 /* | 130 /* |
132 * list.c | 131 * list.c |
133 */ | 132 */ |
134 void listinit(void); | 133 void listinit(void); |
135 | 134 |
136 void zaddr(Biobuf*, Addr*, int, int); | 135 void zaddr(Biobuf*, Addr*, int, int); |
OLD | NEW |