go-string-to-int-array.c 1.01 KB
Newer Older
1 2 3 4 5 6
/* go-string-to-int-array.c -- convert a string to an array of ints in Go.

   Copyright 2010 The Go Authors. All rights reserved.
   Use of this source code is governed by a BSD-style
   license that can be found in the LICENSE file.  */

7
#include "runtime.h"
8 9 10
#include "go-alloc.h"
#include "go-string.h"
#include "array.h"
11
#include "arch.h"
12 13 14
#include "malloc.h"

struct __go_open_array
15
__go_string_to_int_array (String str)
16 17 18 19 20 21 22 23 24
{
  size_t c;
  const unsigned char *p;
  const unsigned char *pend;
  uint32_t *data;
  uint32_t *pd;
  struct __go_open_array ret;

  c = 0;
25 26
  p = str.str;
  pend = p + str.len;
27 28 29 30 31 32 33 34
  while (p < pend)
    {
      int rune;

      ++c;
      p += __go_get_rune (p, pend - p, &rune);
    }

35
  data = (uint32_t *) runtime_mallocgc (c * sizeof (uint32_t), FlagNoPointers,
36
					1, 0);
37
  p = str.str;
38 39 40 41 42 43 44 45 46 47 48 49 50 51
  pd = data;
  while (p < pend)
    {
      int rune;

      p += __go_get_rune (p, pend - p, &rune);
      *pd++ = rune;
    }

  ret.__values = (void *) data;
  ret.__count = c;
  ret.__capacity = c;
  return ret;
}