2013-07-16 14:24:09 -06:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
// This file defines the IDs for PCDATA and FUNCDATA instructions
|
|
|
|
// in Go binaries. It is included by both C and assembly, so it must
|
|
|
|
// be written using #defines. It is included by the runtime package
|
|
|
|
// as well as the compilers.
|
|
|
|
|
2013-07-19 14:04:09 -06:00
|
|
|
#define PCDATA_ArgSize 0 /* argument size at CALL instruction */
|
cmd/5g, cmd/5l, cmd/6g, cmd/6l, cmd/8g, cmd/8l, cmd/gc, runtime: generate pointer maps by liveness analysis
This change allows the garbage collector to examine stack
slots that are determined as live and containing a pointer
value by the garbage collector. This results in a mean
reduction of 65% in the number of stack slots scanned during
an invocation of "GOGC=1 all.bash".
Unfortunately, this does not yet allow garbage collection to
be precise for the stack slots computed as live. Pointers
confound the determination of what definitions reach a given
instruction. In general, this problem is not solvable without
runtime cost but some advanced cooperation from the compiler
might mitigate common cases.
R=golang-dev, rsc, cshapiro
CC=golang-dev
https://golang.org/cl/14430048
2013-12-05 18:35:22 -07:00
|
|
|
#define PCDATA_StackMapIndex 1
|
2013-07-19 14:04:09 -06:00
|
|
|
|
2014-08-28 20:08:09 -06:00
|
|
|
#define FUNCDATA_ArgsPointerMaps 0 /* garbage collector blocks */
|
|
|
|
#define FUNCDATA_LocalsPointerMaps 1
|
|
|
|
#define FUNCDATA_DeadValueMaps 2
|
2013-07-16 14:24:09 -06:00
|
|
|
|
|
|
|
// To be used in assembly.
|
|
|
|
#define ARGSIZE(n) PCDATA $PCDATA_ArgSize, $n
|
2013-07-19 12:19:18 -06:00
|
|
|
|
|
|
|
// ArgsSizeUnknown is set in Func.argsize to mark all functions
|
|
|
|
// whose argument size is unknown (C vararg functions, and
|
|
|
|
// assembly code without an explicit specification).
|
|
|
|
// This value is generated by the compiler, assembler, or linker.
|
|
|
|
#define ArgsSizeUnknown 0x80000000
|
2014-07-02 13:41:29 -06:00
|
|
|
|
|
|
|
/*c2go
|
|
|
|
enum {
|
|
|
|
PCDATA_ArgSize = 0,
|
|
|
|
PCDATA_StackMapIndex = 1,
|
2014-08-28 20:08:09 -06:00
|
|
|
FUNCDATA_ArgsPointerMaps = 0,
|
|
|
|
FUNCDATA_LocalsPointerMaps = 1,
|
|
|
|
FUNCDATA_DeadValueMaps = 2,
|
2014-07-02 13:41:29 -06:00
|
|
|
ArgsSizeUnknown = 0x80000000,
|
|
|
|
};
|
|
|
|
*/
|