OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / libgo / runtime / go-send-big.c
1 /* go-send-big.c -- send something bigger than uint64_t on a channel.
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 <stdint.h>
8
9 #include "go-panic.h"
10 #include "channel.h"
11
12 void
13 __go_send_big (struct __go_channel* channel, const void *val, _Bool for_select)
14 {
15   uintptr_t element_size;
16   size_t alloc_size;
17   size_t offset;
18
19   if (channel == NULL)
20     __go_panic_msg ("send to nil channel");
21
22   element_size = channel->element_type->__size;
23   alloc_size = (element_size + sizeof (uint64_t) - 1) / sizeof (uint64_t);
24
25   __go_send_acquire (channel, for_select);
26
27   offset = channel->next_store * alloc_size;
28   __builtin_memcpy (&channel->data[offset], val, element_size);
29
30   __go_send_release (channel);
31 }