github.com/razvanm/vanadium-go-1.3@v0.0.0-20160721203343-4a65068e5915/src/runtime/arch_amd64.h (about)

     1  // Copyright 2011 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  enum {
     6  	thechar = '6',
     7  	BigEndian = 0,
     8  	CacheLineSize = 64,
     9  #ifdef GOOS_solaris
    10  	RuntimeGogoBytes = 80,
    11  #else
    12  #ifdef GOOS_windows
    13  	RuntimeGogoBytes = 80,
    14  #else
    15  #ifdef GOOS_plan9
    16  	RuntimeGogoBytes = 80,
    17  #else
    18  	RuntimeGogoBytes = 64,
    19  #endif	// Plan 9
    20  #endif	// Windows
    21  #endif	// Solaris
    22  	PhysPageSize = 4096,
    23  	PCQuantum = 1,
    24  	Int64Align = 8
    25  };