blob: dad6efb30c0cc3f0c3dd00779334afb4fe203d4c [file] [log] [blame]
Peter Collingbourne594c10d2014-11-27 00:12:26 +00001/* go-new.c -- the generic go new() function.
2
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. */
6
7#include "go-alloc.h"
8#include "runtime.h"
9#include "arch.h"
10#include "malloc.h"
11
12void *
13__go_new (const struct __go_type_descriptor *td, uintptr_t size)
14{
15 return runtime_mallocgc (size,
16 (uintptr) td | TypeInfo_SingleObject,
17 0);
18}
19
20void *
21__go_new_nopointers (const struct __go_type_descriptor *td, uintptr_t size)
22{
23 return runtime_mallocgc (size,
24 (uintptr) td | TypeInfo_SingleObject,
25 FlagNoScan);
26}