runtime: Copy runtime_panicstring from master library.
authorIan Lance Taylor <ian@gcc.gnu.org>
Wed, 30 Nov 2011 00:21:52 +0000 (00:21 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 30 Nov 2011 00:21:52 +0000 (00:21 +0000)
From-SVN: r181830

31 files changed:
libgo/runtime/go-append.c
libgo/runtime/go-close.c
libgo/runtime/go-eface-compare.c
libgo/runtime/go-eface-val-compare.c
libgo/runtime/go-interface-eface-compare.c
libgo/runtime/go-make-slice.c
libgo/runtime/go-map-delete.c
libgo/runtime/go-map-index.c
libgo/runtime/go-new-channel.c
libgo/runtime/go-new-map.c
libgo/runtime/go-panic.c
libgo/runtime/go-panic.h
libgo/runtime/go-reflect-map.c
libgo/runtime/go-reflect.c
libgo/runtime/go-runtime-error.c
libgo/runtime/go-send-nb-small.c
libgo/runtime/go-send-small.c
libgo/runtime/go-signal.c
libgo/runtime/go-strslice.c
libgo/runtime/go-type-eface.c
libgo/runtime/go-type-error.c
libgo/runtime/go-unreflect.c
libgo/runtime/go-unsafe-new.c
libgo/runtime/go-unsafe-newarray.c
libgo/runtime/iface.goc
libgo/runtime/malloc.goc
libgo/runtime/map.goc
libgo/runtime/reflect.goc
libgo/runtime/runtime.c
libgo/runtime/runtime.h
libgo/runtime/string.goc

index b1e882cc57540049286a15e254939a55dc0be9ca..3a0c77811262989e80e44e55c6c239d01376f6c6 100644 (file)
@@ -32,7 +32,7 @@ __go_append (struct __go_open_array a, void *bvalues, uintptr_t bcount,
   ucount = (uintptr_t) a.__count + bcount;
   count = (int) ucount;
   if ((uintptr_t) count != ucount || count <= a.__count)
-    __go_panic_msg ("append: slice overflow");
+    runtime_panicstring ("append: slice overflow");
 
   if (count > a.__capacity)
     {
index a6df3833c26e5ef5216deafaa4afa309196c97c8..7e32286dae09f8366e7403093c35a4c9f9ace549 100644 (file)
@@ -18,7 +18,7 @@ __go_builtin_close (struct __go_channel *channel)
   int i;
 
   if (channel == NULL)
-    __go_panic_msg ("close of nil channel");
+    runtime_panicstring ("close of nil channel");
 
   i = pthread_mutex_lock (&channel->lock);
   __go_assert (i == 0);
@@ -30,7 +30,7 @@ __go_builtin_close (struct __go_channel *channel)
     {
       i = pthread_mutex_unlock (&channel->lock);
       __go_assert (i == 0);
-      __go_panic_msg ("close of closed channel");
+      runtime_panicstring ("close of closed channel");
     }
 
   channel->is_closed = 1;
index 673440542f3dfc7aa7435be2c6d2c80e0e18fd0d..d88d50569c24e7c3813bd9072d9052083fde9c80 100644 (file)
@@ -4,7 +4,7 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
-#include "go-panic.h"
+#include "runtime.h"
 #include "interface.h"
 
 /* Compare two interface values.  Return 0 for equal, not zero for not
@@ -20,7 +20,7 @@ __go_empty_interface_compare (struct __go_empty_interface left,
 
   if (((uintptr_t) left_descriptor & reflectFlags) != 0
       || ((uintptr_t) right.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
 
   if (left_descriptor == NULL && right.__type_descriptor == NULL)
     return 0;
index d754cc5f36eb884ec0df8cf3cdd11b7d047075e3..fed3fdb4432a1e8c026eb5a9b9aab12e483a7c38 100644 (file)
@@ -4,7 +4,7 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
-#include "go-panic.h"
+#include "runtime.h"
 #include "go-type.h"
 #include "interface.h"
 
@@ -21,7 +21,7 @@ __go_empty_interface_value_compare (
 
   left_descriptor = left.__type_descriptor;
   if (((uintptr_t) left_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
   if (left_descriptor == NULL)
     return 1;
   if (!__go_type_descriptors_equal (left_descriptor, right_descriptor))
index ff69a2749d47c496e5ebc2ae742c566be387717e..db03b914c8443dad34d68454ce335595f8dd8423 100644 (file)
@@ -4,7 +4,7 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
-#include "go-panic.h"
+#include "runtime.h"
 #include "interface.h"
 
 /* Compare a non-empty interface value with an empty interface value.
@@ -18,7 +18,7 @@ __go_interface_empty_compare (struct __go_interface left,
   const struct __go_type_descriptor *left_descriptor;
 
   if (((uintptr_t) right.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
   if (left.__methods == NULL && right.__type_descriptor == NULL)
     return 0;
   if (left.__methods == NULL || right.__type_descriptor == NULL)
index a818a7f76d960fa684ddc9ee157ff51bee00173a..765e7c021b7cdaaa3c0080b7319a1e6ec50983a6 100644 (file)
@@ -31,14 +31,14 @@ __go_make_slice2 (const struct __go_type_descriptor *td, uintptr_t len,
 
   ilen = (int) len;
   if (ilen < 0 || (uintptr_t) ilen != len)
-    __go_panic_msg ("makeslice: len out of range");
+    runtime_panicstring ("makeslice: len out of range");
 
   icap = (int) cap;
   if (cap < len
       || (uintptr_t) icap != cap
       || (std->__element_type->__size > 0
          && cap > (uintptr_t) -1U / std->__element_type->__size))
-    __go_panic_msg ("makeslice: cap out of range");
+    runtime_panicstring ("makeslice: cap out of range");
 
   ret.__count = ilen;
   ret.__capacity = icap;
index a8f928f0c9a4e86d9a2f1594a4754f02e770f172..cb10d8dcdc0e45c5846453d3a3bafff9c705b6e2 100644 (file)
@@ -7,9 +7,9 @@
 #include <stddef.h>
 #include <stdlib.h>
 
+#include "runtime.h"
 #include "go-alloc.h"
 #include "go-assert.h"
-#include "go-panic.h"
 #include "map.h"
 
 /* Delete the entry matching KEY from MAP.  */
@@ -27,7 +27,7 @@ __go_map_delete (struct __go_map *map, const void *key)
   void **pentry;
 
   if (map == NULL)
-    __go_panic_msg ("deletion of entry in nil map");
+    runtime_panicstring ("deletion of entry in nil map");
 
   descriptor = map->__descriptor;
 
index 92a806868bc584f8f1843af2094d8be79d6d1b77..ffb532bee88849fbe0f82be5eb9cc8d1118aac6b 100644 (file)
@@ -7,9 +7,9 @@
 #include <stddef.h>
 #include <stdlib.h>
 
+#include "runtime.h"
 #include "go-alloc.h"
 #include "go-assert.h"
-#include "go-panic.h"
 #include "map.h"
 
 /* Rehash MAP to a larger size.  */
@@ -89,7 +89,7 @@ __go_map_index (struct __go_map *map, const void *key, _Bool insert)
   if (map == NULL)
     {
       if (insert)
-       __go_panic_msg ("assignment to entry in nil map");
+       runtime_panicstring ("assignment to entry in nil map");
       return NULL;
     }
 
index 2f5bf2ea20ab6d67d554539b25f9abcf2e4a918a..fe13c5efab62db8984462b50c919ab3776747081 100644 (file)
@@ -7,9 +7,9 @@
 #include <stddef.h>
 #include <stdint.h>
 
+#include "runtime.h"
 #include "go-alloc.h"
 #include "go-assert.h"
-#include "go-panic.h"
 #include "channel.h"
 
 struct __go_channel*
@@ -34,7 +34,7 @@ __go_new_channel (const struct __go_type_descriptor *channel_type,
   if (ientries < 0
       || (uintptr_t) ientries != entries
       || (element_size > 0 && entries > (uintptr_t) -1 / element_size))
-    __go_panic_msg ("chan size out of range");
+    runtime_panicstring ("chan size out of range");
 
   alloc_size = (element_size + sizeof (uint64_t) - 1) / sizeof (uint64_t);
 
index 05ac8a1a40c95517cfb515b686a4042fa6775671..288e1883f9d4f0296e4bed72b5694699430bba54 100644 (file)
@@ -4,8 +4,8 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
+#include "runtime.h"
 #include "go-alloc.h"
-#include "go-panic.h"
 #include "map.h"
 
 /* List of prime numbers, copied from libstdc++/src/hashtable.c.  */
@@ -111,7 +111,7 @@ __go_new_map (const struct __go_map_descriptor *descriptor, uintptr_t entries)
 
   ientries = (int) entries;
   if (ientries < 0 || (uintptr_t) ientries != entries)
-    __go_panic_msg ("map size out of range");
+    runtime_panicstring ("map size out of range");
 
   if (entries == 0)
     entries = 5;
index 23df57930b73fec5eb91a5271f55a9dfe6d8959b..2e4a7883c181df8b34849c41718e0ff07f7f23a5 100644 (file)
@@ -105,22 +105,3 @@ __go_panic (struct __go_empty_interface arg)
   __printpanics (g->panic);
   runtime_dopanic (0);
 }
-
-/* This is used by the runtime library.  */
-
-void
-__go_panic_msg (const char* msg)
-{
-  size_t len;
-  unsigned char *sdata;
-  struct __go_string s;
-  struct __go_empty_interface arg;
-
-  len = __builtin_strlen (msg);
-  sdata = runtime_mallocgc (len, FlagNoPointers, 0, 0);
-  __builtin_memcpy (sdata, msg, len);
-  s.__data = sdata;
-  s.__length = len;
-  newErrorString(s, &arg);
-  __go_panic (arg);
-}
index bd3e238aef42d7347effacaf58df19d883348623..41996e43b5fca2ca42d775556234dc81f140d009 100644 (file)
@@ -34,9 +34,6 @@ struct __go_panic_stack
 extern void __go_panic (struct __go_empty_interface)
   __attribute__ ((noreturn));
 
-extern void __go_panic_msg (const char* msg)
-  __attribute__ ((noreturn));
-
 extern void __go_print_string (struct __go_string);
 
 extern struct __go_empty_interface __go_recover (void);
@@ -55,7 +52,8 @@ extern void newTypeAssertionError(const struct __go_type_descriptor *pt1,
                                  struct __go_empty_interface *ret)
   __asm__ ("libgo_runtime.runtime.NewTypeAssertionError");
 
-extern void newErrorString(struct __go_string, struct __go_empty_interface *)
+extern void runtime_newErrorString(struct __go_string,
+                                  struct __go_empty_interface *)
   __asm__ ("libgo_runtime.runtime.NewErrorString");
 
 extern void printany(struct __go_empty_interface)
index eb0590602e06c9ec6cf0261ba078017f84144a23..c06aef17eed33f0735d28c397a658c0dd5812399 100644 (file)
@@ -7,9 +7,9 @@
 #include <stdlib.h>
 #include <stdint.h>
 
+#include "runtime.h"
 #include "go-alloc.h"
 #include "go-assert.h"
-#include "go-panic.h"
 #include "go-type.h"
 #include "map.h"
 
@@ -90,7 +90,7 @@ mapassign (struct __go_map_type *mt, uintptr_t m, uintptr_t key_i,
   __go_assert (mt->__common.__code == GO_MAP);
 
   if (map == NULL)
-    __go_panic_msg ("assignment to entry in nil map");
+    runtime_panicstring ("assignment to entry in nil map");
 
   key_descriptor = mt->__key_type;
   if (__go_is_pointer_type (key_descriptor))
index af7d5e8968f01eaed5e9db8818c94a2a5bd57788..d14a580554929e115ad23cf525ac69dd2674e1f5 100644 (file)
@@ -7,9 +7,9 @@
 #include <stdlib.h>
 #include <stdint.h>
 
+#include "runtime.h"
 #include "interface.h"
 #include "go-alloc.h"
-#include "go-panic.h"
 #include "go-string.h"
 #include "go-type.h"
 
@@ -122,7 +122,7 @@ Reflect (struct __go_empty_interface e)
   struct reflect_ret ret;
 
   if (((uintptr_t) e.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
 
   if (e.__type_descriptor == NULL)
     {
@@ -170,7 +170,7 @@ Typeof (const struct __go_empty_interface e)
   struct __go_empty_interface ret;
 
   if (((uintptr_t) e.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
 
   if (e.__type_descriptor == NULL)
     {
index ceba2d673a9b9a5f192f996032b9529827b79b61..f732e7f017fcc29063977a6c118dd8bbe257824c 100644 (file)
@@ -4,7 +4,7 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
-#include "go-panic.h"
+#include "runtime.h"
 
 /* The compiler generates calls to this function.  This enum values
    are known to the compiler and used by compiled code.  Any change
@@ -59,26 +59,26 @@ __go_runtime_error (int i)
     case SLICE_INDEX_OUT_OF_BOUNDS:
     case ARRAY_INDEX_OUT_OF_BOUNDS:
     case STRING_INDEX_OUT_OF_BOUNDS:
-      __go_panic_msg ("index out of range");
+      runtime_panicstring ("index out of range");
 
     case SLICE_SLICE_OUT_OF_BOUNDS:
     case ARRAY_SLICE_OUT_OF_BOUNDS:
     case STRING_SLICE_OUT_OF_BOUNDS:
-      __go_panic_msg ("slice bounds out of range");
+      runtime_panicstring ("slice bounds out of range");
 
     case NIL_DEREFERENCE:
-      __go_panic_msg ("nil pointer dereference");
+      runtime_panicstring ("nil pointer dereference");
 
     case MAKE_SLICE_OUT_OF_BOUNDS:
-      __go_panic_msg ("make slice len or cap out of range");
+      runtime_panicstring ("make slice len or cap out of range");
 
     case MAKE_MAP_OUT_OF_BOUNDS:
-      __go_panic_msg ("make map len out of range");
+      runtime_panicstring ("make map len out of range");
 
     case MAKE_CHAN_OUT_OF_BOUNDS:
-      __go_panic_msg ("make chan len out of range");
+      runtime_panicstring ("make chan len out of range");
 
     default:
-      __go_panic_msg ("unknown runtime error");
+      runtime_panicstring ("unknown runtime error");
     }
 }
index f3336099bf7e626700f7271f89ea7f3d3f6fb0d2..c77ee9183e20b9814a2eb23d16287ee3a0040155 100644 (file)
@@ -31,7 +31,7 @@ __go_send_nonblocking_acquire (struct __go_channel *channel)
     {
       i = pthread_mutex_unlock (&channel->lock);
       __go_assert (i == 0);
-      __go_panic_msg ("send on closed channel");
+      runtime_panicstring ("send on closed channel");
     }
 
   if (channel->num_entries > 0)
index 89a7032756da9b0c41128655d9e8d1e0094c17f4..06bcb41b9add6613c9d0d2c39558241494be5c1a 100644 (file)
@@ -31,7 +31,7 @@ __go_send_acquire (struct __go_channel *channel, _Bool for_select)
            channel->selected_for_send = 0;
          i = pthread_mutex_unlock (&channel->lock);
          __go_assert (i == 0);
-         __go_panic_msg ("send on closed channel");
+         runtime_panicstring ("send on closed channel");
        }
 
       /* If somebody else has the channel locked for sending, we have
index 468235ddf4e51e7df4c413447c7c86468e8c8c38..958b421c8716fe0d4a23edd353d8f3637fd93396 100644 (file)
@@ -178,7 +178,7 @@ sighandler (int sig)
       i = sigprocmask (SIG_UNBLOCK, &clear, NULL);
       __go_assert (i == 0);
 
-      __go_panic_msg (msg);
+      runtime_panicstring (msg);
     }
 
   for (i = 0; signals[i].sig != -1; ++i)
index 40ccac617a1c10644903fb6fca4641d1a3425d41..8d916c460840f61f10d789ec12e8cee822924317 100644 (file)
@@ -20,7 +20,7 @@ __go_string_slice (struct __go_string s, int start, int end)
   if (end == -1)
     end = len;
   if (start > len || end < start || end > len)
-    __go_panic_msg ("string index out of bounds");
+    runtime_panicstring ("string index out of bounds");
   ret.__data = s.__data + start;
   ret.__length = end - start;
   return ret;
index cea9c240a6636c94b04f9913b9d4dd6eb706005a..5bf932fc8ba41a84c17b44eb1d13b6921f232853 100644 (file)
@@ -4,8 +4,8 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
+#include "runtime.h"
 #include "interface.h"
-#include "go-panic.h"
 #include "go-type.h"
 
 /* A hash function for an empty interface.  */
@@ -46,7 +46,7 @@ __go_type_equal_empty_interface (const void *vv1, const void *vv2,
   v2_descriptor = v2->__type_descriptor;
   if (((uintptr_t) v1_descriptor & reflectFlags) != 0
       || ((uintptr_t) v2_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
   if (v1_descriptor == NULL || v2_descriptor == NULL)
     return v1_descriptor == v2_descriptor;
   if (!__go_type_descriptors_equal (v1_descriptor, v2_descriptor))
index 865850c9ca0f0949fa5682590a39cbea00557967..ba3146e3ddaa22d202201cf33e6d6e7849ba0ccc 100644 (file)
@@ -4,8 +4,8 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
+#include "runtime.h"
 #include "go-type.h"
-#include "go-panic.h"
 
 /* A hash function used for a type which does not support hash
    functions.  */
@@ -14,7 +14,7 @@ size_t
 __go_type_hash_error (const void *val __attribute__ ((unused)),
                      size_t key_size __attribute__ ((unused)))
 {
-  __go_panic_msg ("hash of unhashable type");
+  runtime_panicstring ("hash of unhashable type");
 }
 
 /* An equality function for an interface.  */
@@ -24,5 +24,5 @@ __go_type_equal_error (const void *v1 __attribute__ ((unused)),
                       const void *v2 __attribute__ ((unused)),
                       size_t key_size __attribute__ ((unused)))
 {
-  __go_panic_msg ("comparing uncomparable types");
+  runtime_panicstring ("comparing uncomparable types");
 }
index c4da5fdcf05bde9ebe5d64f9f1f0037a83831b42..6f1ea732fa3f30d120e013272662794b47bf4266 100644 (file)
@@ -4,8 +4,8 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
+#include "runtime.h"
 #include "go-alloc.h"
-#include "go-panic.h"
 #include "go-type.h"
 #include "interface.h"
 
@@ -21,7 +21,7 @@ Unreflect (struct __go_empty_interface type, void *object)
   struct __go_empty_interface ret;
 
   if (((uintptr_t) type.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
 
   /* FIXME: We should check __type_descriptor to verify that this is
      really a type descriptor.  */
index b0a65c42263d9235bf55b09292a456e4001e6c07..c60e05b3bda5eed241ce30521766b6691a050abe 100644 (file)
@@ -4,8 +4,8 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
+#include "runtime.h"
 #include "go-alloc.h"
-#include "go-panic.h"
 #include "go-type.h"
 #include "interface.h"
 
@@ -22,7 +22,7 @@ New (struct __go_empty_interface type)
   const struct __go_type_descriptor *descriptor;
 
   if (((uintptr_t) type.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
 
   /* FIXME: We should check __type_descriptor to verify that this is
      really a type descriptor.  */
index 5fd81ce273335c0d791ceee357a19080419d49c9..470ed2d0c72a6e306fb6e235ae7be8e2a2b47476 100644 (file)
@@ -4,8 +4,8 @@
    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.  */
 
+#include "runtime.h"
 #include "go-alloc.h"
-#include "go-panic.h"
 #include "go-type.h"
 #include "interface.h"
 
@@ -23,7 +23,7 @@ NewArray (struct __go_empty_interface type, int n)
   const struct __go_type_descriptor *descriptor;
 
   if (((uintptr_t) type.__type_descriptor & reflectFlags) != 0)
-    __go_panic_msg ("invalid interface value");
+    runtime_panicstring ("invalid interface value");
 
   /* FIXME: We should check __type_descriptor to verify that this is
      really a type descriptor.  */
index 05e37736b8879c2e6627f2001e72d7ef1c076a9f..7c74e80ac3abf65631527b54cb1b3d959e0a6143 100644 (file)
@@ -3,12 +3,10 @@
 // license that can be found in the LICENSE file.
 
 package runtime
-#include "go-panic.h"
+#include "runtime.h"
 #include "go-type.h"
 #include "interface.h"
-#define nil NULL
 
-typedef _Bool bool;
 typedef struct __go_type_descriptor descriptor;
 typedef const struct __go_type_descriptor const_descriptor;
 typedef struct __go_interface interface;
@@ -35,7 +33,7 @@ func ifacetype(i interface) (d *const_descriptor) {
 // Convert an empty interface to an empty interface.
 func ifaceE2E2(e empty_interface) (ret empty_interface, ok bool) {
        if(((uintptr_t)e.__type_descriptor&reflectFlags) != 0)
-               __go_panic_msg("invalid interface value");
+               runtime_panicstring("invalid interface value");
        ret = e;
        ok = ret.__type_descriptor != nil;
 }
@@ -56,7 +54,7 @@ func ifaceI2E2(i interface) (ret empty_interface, ok bool) {
 // Convert an empty interface to a non-empty interface.
 func ifaceE2I2(inter *descriptor, e empty_interface) (ret interface, ok bool) {
        if(((uintptr_t)e.__type_descriptor&reflectFlags) != 0)
-               __go_panic_msg("invalid interface value");
+               runtime_panicstring("invalid interface value");
        if (e.__type_descriptor == nil) {
                ret.__methods = nil;
                ret.__object = nil;
@@ -87,7 +85,7 @@ func ifaceI2I2(inter *descriptor, i interface) (ret interface, ok bool) {
 // Convert an empty interface to a pointer type.
 func ifaceE2T2P(inter *descriptor, e empty_interface) (ret *void, ok bool) {
        if(((uintptr_t)e.__type_descriptor&reflectFlags) != 0)
-               __go_panic_msg("invalid interface value");
+               runtime_panicstring("invalid interface value");
        if (!__go_type_descriptors_equal(inter, e.__type_descriptor)) {
                ret = nil;
                ok = 0;
@@ -112,7 +110,7 @@ func ifaceI2T2P(inter *descriptor, i interface) (ret *void, ok bool) {
 // Convert an empty interface to a non-pointer type.
 func ifaceE2T2(inter *descriptor, e empty_interface, ret *void) (ok bool) {
        if(((uintptr_t)e.__type_descriptor&reflectFlags) != 0)
-               __go_panic_msg("invalid interface value");
+               runtime_panicstring("invalid interface value");
        if (!__go_type_descriptors_equal(inter, e.__type_descriptor)) {
                __builtin_memset(ret, 0, inter->__size);
                ok = 0;
index 73446bf83478ae8664ef5ae453dc43275cc8bc14..f5321856eacd947ea27f3e12ed9dfb302aa55578 100644 (file)
@@ -17,9 +17,6 @@ package runtime
 #include "go-string.h"
 #include "interface.h"
 #include "go-type.h"
-typedef struct __go_empty_interface Eface;
-typedef struct __go_type_descriptor Type;
-typedef struct __go_func_type FuncType;
 
 MHeap runtime_mheap;
 extern MStats mstats;  // defined in extern.go
index da67d49287d75c88608c918738cc962aec817953..e4b8456dc363a69f163b12cd2733db743e7f13e3 100644 (file)
@@ -3,13 +3,9 @@
 // license that can be found in the LICENSE file.
 
 package runtime
+#include "runtime.h"
 #include "map.h"
-#define nil NULL
 
-typedef unsigned char byte;
-typedef _Bool bool;
-
-typedef struct __go_map_type MapType;
 typedef struct __go_map Hmap;
 typedef struct __go_hash_iter hiter;
 
index 4666dd5389c951db80521c255548355bad81b285..d3cde7c0e5b0672d3e8c27020219444b71289c21 100644 (file)
@@ -8,10 +8,6 @@ package reflect
 #include "runtime.h"
 #include "go-panic.h"
 
-typedef struct __go_type_descriptor Type;
-typedef struct __go_interface Iface;
-typedef struct __go_empty_interface Eface;
-
 func ifaceE2I(inter *Type, e Eface, ret *Iface) {
        const Type *t;
        Eface err;
index de4c982620f42c64cb96b8c190f82eebc4e48473..8e4433b0d6c911fd291e627566c3b5aeacc49150 100644 (file)
@@ -70,6 +70,19 @@ runtime_throw(const char *s)
        runtime_exit(1);        // even more not reached
 }
 
+void
+runtime_panicstring(const char *s)
+{
+       Eface err;
+       
+       if(runtime_m()->gcing) {
+               runtime_printf("panic: %s\n", s);
+               runtime_throw("panic during gc");
+       }
+       runtime_newErrorString(runtime_gostringnocopy((const byte*)s), &err);
+       runtime_panic(err);
+}
+
 static int32   argc;
 static byte**  argv;
 
@@ -95,7 +108,7 @@ runtime_goargs(void)
 
        s = runtime_malloc(argc*sizeof s[0]);
        for(i=0; i<argc; i++)
-               s[i] = runtime_gostringnocopy((byte*)argv[i]);
+               s[i] = runtime_gostringnocopy((const byte*)argv[i]);
        os_Args.__values = (void*)s;
        os_Args.__count = argc;
        os_Args.__capacity = argc;
index 818465cb897f2e40a6210de0ae9958c533fabb31..9455ae88c5ac788a0ad84ca4a3c4f00550b1acba 100644 (file)
@@ -57,10 +57,16 @@ typedef     struct  MCache          MCache;
 typedef struct FixAlloc        FixAlloc;
 
 typedef        struct  __go_defer_stack        Defer;
+typedef struct __go_interface          Iface;
+typedef        struct  __go_empty_interface    Eface;
+typedef        struct  __go_type_descriptor    Type;
 typedef        struct  __go_panic_stack        Panic;
 typedef        struct  __go_open_array         Slice;
 typedef        struct  __go_string             String;
 
+typedef struct __go_func_type          FuncType;
+typedef struct __go_map_type           MapType;
+
 /*
  * per-cpu declaration.
  */
@@ -211,10 +217,11 @@ void      runtime_osinit();
 void   runtime_goargs(void);
 void   runtime_goenvs(void);
 void   runtime_throw(const char*);
+void   runtime_panicstring(const char*) __attribute__ ((noreturn));
 void*  runtime_mal(uintptr);
 void   runtime_schedinit(void);
 void   runtime_initsig(int32);
-String runtime_gostringnocopy(byte*);
+String runtime_gostringnocopy(const byte*);
 void*  runtime_mstart(void*);
 G*     runtime_malg(int32, byte**, size_t*);
 void   runtime_minit(void);
@@ -274,8 +281,13 @@ void       runtime_semawakeup(M*);
 void   runtime_futexsleep(uint32*, uint32, int64);
 void   runtime_futexwakeup(uint32*, uint32);
 
+/*
+ * runtime go-called
+ */
+void   runtime_panic(Eface);
 
 /* Functions.  */
+#define runtime_panic __go_panic
 #define runtime_printf printf
 #define runtime_malloc(s) __go_alloc(s)
 #define runtime_free(p) __go_free(p)
index aa75628730ef3be32b95ac06a1bdebcd406678f6..fbbe393bbeff0eb91bb2417ea0a04d495d61273a 100644 (file)
@@ -15,7 +15,7 @@ runtime_findnull(const byte *s)
 }
 
 String
-runtime_gostringnocopy(byte *str)
+runtime_gostringnocopy(const byte *str)
 {
        String s;