summaryrefslogtreecommitdiff
path: root/src/runtime/mgc0.h
blob: 62726b4f0f2c1e4e15f43d27b78b260dd7a621df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2012 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.

// Used by cmd/gc.

enum {
	gcBits = 4,
	BitsPerPointer = 2,
	BitsDead = 0,
	BitsScalar = 1,
	BitsPointer = 2,
	BitsMask = 3,
	PointersPerByte = 8/BitsPerPointer,
	MaxGCMask = 64,
	insData = 1,
	insArray,
	insArrayEnd,
	insEnd,
};