2011-10-06 09:42:51 -06:00
|
|
|
// 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.
|
|
|
|
|
2010-01-13 18:50:02 -07:00
|
|
|
#include "runtime.h"
|
2011-12-16 13:33:58 -07:00
|
|
|
#include "arch_GOARCH.h"
|
|
|
|
#include "defs_GOOS_GOARCH.h"
|
|
|
|
#include "os_GOOS.h"
|
2010-01-13 18:50:02 -07:00
|
|
|
#include "malloc.h"
|
|
|
|
|
|
|
|
void*
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·SysAlloc(uintptr n)
|
2010-01-13 18:50:02 -07:00
|
|
|
{
|
2010-09-28 18:30:01 -06:00
|
|
|
void *v;
|
|
|
|
|
2010-01-13 18:50:02 -07:00
|
|
|
mstats.sys += n;
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
v = runtime·mmap(nil, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_PRIVATE, -1, 0);
|
2011-01-28 13:03:26 -07:00
|
|
|
if(v < (void*)4096)
|
|
|
|
return nil;
|
2010-09-28 18:30:01 -06:00
|
|
|
return v;
|
2010-01-13 18:50:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·SysUnused(void *v, uintptr n)
|
2010-01-13 18:50:02 -07:00
|
|
|
{
|
|
|
|
USED(v);
|
|
|
|
USED(n);
|
|
|
|
// TODO(rsc): call madvise MADV_DONTNEED
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·SysFree(void *v, uintptr n)
|
2010-01-13 18:50:02 -07:00
|
|
|
{
|
2010-09-27 10:50:01 -06:00
|
|
|
mstats.sys -= n;
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·munmap(v, n);
|
2010-01-13 18:50:02 -07:00
|
|
|
}
|
|
|
|
|
2011-01-28 13:03:26 -07:00
|
|
|
void*
|
|
|
|
runtime·SysReserve(void *v, uintptr n)
|
|
|
|
{
|
2011-02-09 12:38:33 -07:00
|
|
|
// On 64-bit, people with ulimit -v set complain if we reserve too
|
|
|
|
// much address space. Instead, assume that the reservation is okay
|
|
|
|
// and check the assumption in SysMap.
|
|
|
|
if(sizeof(void*) == 8)
|
|
|
|
return v;
|
|
|
|
|
2011-01-28 13:03:26 -07:00
|
|
|
return runtime·mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE, -1, 0);
|
|
|
|
}
|
2010-09-28 18:30:01 -06:00
|
|
|
|
2011-04-25 10:13:54 -06:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ENOMEM = 12,
|
|
|
|
};
|
|
|
|
|
2010-09-28 18:30:01 -06:00
|
|
|
void
|
2011-01-28 13:03:26 -07:00
|
|
|
runtime·SysMap(void *v, uintptr n)
|
2010-09-28 18:30:01 -06:00
|
|
|
{
|
2011-01-28 13:03:26 -07:00
|
|
|
void *p;
|
|
|
|
|
|
|
|
mstats.sys += n;
|
2011-02-09 12:38:33 -07:00
|
|
|
|
|
|
|
// On 64-bit, we don't actually have v reserved, so tread carefully.
|
|
|
|
if(sizeof(void*) == 8) {
|
|
|
|
p = runtime·mmap(v, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_PRIVATE, -1, 0);
|
2011-04-25 10:13:54 -06:00
|
|
|
if(p == (void*)-ENOMEM)
|
|
|
|
runtime·throw("runtime: out of memory");
|
2011-02-09 12:38:33 -07:00
|
|
|
if(p != v) {
|
2011-03-23 09:34:03 -06:00
|
|
|
runtime·printf("runtime: address space conflict: map(%p) = %p\n", v, p);
|
2011-02-09 12:38:33 -07:00
|
|
|
runtime·throw("runtime: address space conflict");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-28 13:03:26 -07:00
|
|
|
p = runtime·mmap(v, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_FIXED|MAP_PRIVATE, -1, 0);
|
2011-04-25 10:13:54 -06:00
|
|
|
if(p == (void*)-ENOMEM)
|
|
|
|
runtime·throw("runtime: out of memory");
|
2011-01-28 13:03:26 -07:00
|
|
|
if(p != v)
|
|
|
|
runtime·throw("runtime: cannot map pages in arena address space");
|
2010-09-28 18:30:01 -06:00
|
|
|
}
|