github.com/llvm-mirror/llgo@v0.0.0-20190322182713-bf6f0a60fce1/third_party/gofrontend/libgo/runtime/go-runtime-error.c (about)

     1  /* go-runtime-error.c -- Go runtime error.
     2  
     3     Copyright 2010 The Go Authors. All rights reserved.
     4     Use of this source code is governed by a BSD-style
     5     license that can be found in the LICENSE file.  */
     6  
     7  #include "runtime.h"
     8  
     9  /* The compiler generates calls to this function.  This enum values
    10     are known to the compiler and used by compiled code.  Any change
    11     here must be reflected in the compiler.  */
    12  
    13  enum
    14  {
    15    /* Slice index out of bounds: negative or larger than the length of
    16       the slice.  */
    17    SLICE_INDEX_OUT_OF_BOUNDS = 0,
    18  
    19    /* Array index out of bounds.  */
    20    ARRAY_INDEX_OUT_OF_BOUNDS = 1,
    21  
    22    /* String index out of bounds.  */
    23    STRING_INDEX_OUT_OF_BOUNDS = 2,
    24  
    25    /* Slice slice out of bounds: negative or larger than the length of
    26       the slice or high bound less than low bound.  */
    27    SLICE_SLICE_OUT_OF_BOUNDS = 3,
    28  
    29    /* Array slice out of bounds.  */
    30    ARRAY_SLICE_OUT_OF_BOUNDS = 4,
    31  
    32    /* String slice out of bounds.  */
    33    STRING_SLICE_OUT_OF_BOUNDS = 5,
    34  
    35    /* Dereference of nil pointer.  This is used when there is a
    36       dereference of a pointer to a very large struct or array, to
    37       ensure that a gigantic array is not used a proxy to access random
    38       memory locations.  */
    39    NIL_DEREFERENCE = 6,
    40  
    41    /* Slice length or capacity out of bounds in make: negative or
    42       overflow or length greater than capacity.  */
    43    MAKE_SLICE_OUT_OF_BOUNDS = 7,
    44  
    45    /* Map capacity out of bounds in make: negative or overflow.  */
    46    MAKE_MAP_OUT_OF_BOUNDS = 8,
    47  
    48    /* Channel capacity out of bounds in make: negative or overflow.  */
    49    MAKE_CHAN_OUT_OF_BOUNDS = 9,
    50  
    51    /* Integer division by zero.  */
    52    DIVISION_BY_ZERO = 10
    53  };
    54  
    55  extern void __go_runtime_error () __attribute__ ((noreturn));
    56  
    57  void
    58  __go_runtime_error (int32 i)
    59  {
    60    switch (i)
    61      {
    62      case SLICE_INDEX_OUT_OF_BOUNDS:
    63      case ARRAY_INDEX_OUT_OF_BOUNDS:
    64      case STRING_INDEX_OUT_OF_BOUNDS:
    65        runtime_panicstring ("index out of range");
    66  
    67      case SLICE_SLICE_OUT_OF_BOUNDS:
    68      case ARRAY_SLICE_OUT_OF_BOUNDS:
    69      case STRING_SLICE_OUT_OF_BOUNDS:
    70        runtime_panicstring ("slice bounds out of range");
    71  
    72      case NIL_DEREFERENCE:
    73        runtime_panicstring ("nil pointer dereference");
    74  
    75      case MAKE_SLICE_OUT_OF_BOUNDS:
    76        runtime_panicstring ("make slice len or cap out of range");
    77  
    78      case MAKE_MAP_OUT_OF_BOUNDS:
    79        runtime_panicstring ("make map len out of range");
    80  
    81      case MAKE_CHAN_OUT_OF_BOUNDS:
    82        runtime_panicstring ("make chan len out of range");
    83  
    84      case DIVISION_BY_ZERO:
    85        runtime_panicstring ("integer divide by zero");
    86  
    87      default:
    88        runtime_panicstring ("unknown runtime error");
    89      }
    90  }