2012-01-13 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libgo / runtime / go-int-to-string.c
blobe9645bf98feba0826490a94649f8b9edf0d4c0fe
1 /* go-int-to-string.c -- convert an integer to a string in Go.
3 Copyright 2009 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. */
7 #include "go-string.h"
8 #include "runtime.h"
9 #include "arch.h"
10 #include "malloc.h"
12 struct __go_string
13 __go_int_to_string (int v)
15 char buf[4];
16 int len;
17 unsigned char *retdata;
18 struct __go_string ret;
20 if (v <= 0x7f)
22 buf[0] = v;
23 len = 1;
25 else if (v <= 0x7ff)
27 buf[0] = 0xc0 + (v >> 6);
28 buf[1] = 0x80 + (v & 0x3f);
29 len = 2;
31 else
33 /* If the value is out of range for UTF-8, turn it into the
34 "replacement character". */
35 if (v > 0x10ffff)
36 v = 0xfffd;
38 if (v <= 0xffff)
40 buf[0] = 0xe0 + (v >> 12);
41 buf[1] = 0x80 + ((v >> 6) & 0x3f);
42 buf[2] = 0x80 + (v & 0x3f);
43 len = 3;
45 else
47 buf[0] = 0xf0 + (v >> 18);
48 buf[1] = 0x80 + ((v >> 12) & 0x3f);
49 buf[2] = 0x80 + ((v >> 6) & 0x3f);
50 buf[3] = 0x80 + (v & 0x3f);
51 len = 4;
55 retdata = runtime_mallocgc (len, FlagNoPointers, 1, 0);
56 __builtin_memcpy (retdata, buf, len);
57 ret.__data = retdata;
58 ret.__length = len;
60 return ret;