1 /* go-make-slice.c -- make a slice.
3 Copyright 2011 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. */
11 #include "go-assert.h"
18 /* Dummy word to use as base pointer for make([]T, 0).
19 Since you cannot take the address of such a slice,
20 you can't tell that they all have the same base pointer. */
21 uintptr runtime_zerobase
;
23 struct __go_open_array
24 __go_make_slice2 (const struct __go_type_descriptor
*td
, uintptr_t len
,
27 const struct __go_slice_type
* std
;
31 struct __go_open_array ret
;
33 __go_assert (td
->__code
== GO_SLICE
);
34 std
= (const struct __go_slice_type
*) td
;
38 || (uintptr_t) ilen
!= len
39 || (std
->__element_type
->__size
> 0
40 && len
> MaxMem
/ std
->__element_type
->__size
))
41 runtime_panicstring ("makeslice: len out of range");
45 || (uintptr_t) icap
!= cap
46 || (std
->__element_type
->__size
> 0
47 && cap
> MaxMem
/ std
->__element_type
->__size
))
48 runtime_panicstring ("makeslice: cap out of range");
51 ret
.__capacity
= icap
;
53 size
= cap
* std
->__element_type
->__size
;
56 ret
.__values
= &runtime_zerobase
;
57 else if ((std
->__element_type
->__code
& GO_NO_POINTERS
) != 0)
59 runtime_mallocgc (size
,
60 (uintptr
) std
->__element_type
| TypeInfo_Array
,
64 runtime_mallocgc (size
,
65 (uintptr
) std
->__element_type
| TypeInfo_Array
,
71 struct __go_open_array
72 __go_make_slice1 (const struct __go_type_descriptor
*td
, uintptr_t len
)
74 return __go_make_slice2 (td
, len
, len
);
77 struct __go_open_array
78 __go_make_slice2_big (const struct __go_type_descriptor
*td
, uint64_t len
,
84 slen
= (uintptr_t) len
;
85 if ((uint64_t) slen
!= len
)
86 runtime_panicstring ("makeslice: len out of range");
88 scap
= (uintptr_t) cap
;
89 if ((uint64_t) scap
!= cap
)
90 runtime_panicstring ("makeslice: cap out of range");
92 return __go_make_slice2 (td
, slen
, scap
);
95 struct __go_open_array
96 __go_make_slice1_big (const struct __go_type_descriptor
*td
, uint64_t len
)
98 return __go_make_slice2_big (td
, len
, len
);