inet.af/netstack@v0.0.0-20220214151720-7585b01ddccf/hostarch/hostarch_arm64.go (about)

     1  // Copyright 2019 The gVisor Authors.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  //go:build arm64
    16  // +build arm64
    17  
    18  package hostarch
    19  
    20  import (
    21  	"encoding/binary"
    22  
    23  	"golang.org/x/sys/unix"
    24  )
    25  
    26  const (
    27  	// PageSize is the system page size.
    28  	// arm64 support 4K/16K/64K page size,
    29  	// which can be get by unix.Getpagesize().
    30  	// Currently, only 4K page size is supported.
    31  	PageSize = 1 << PageShift
    32  
    33  	// HugePageSize is the system huge page size.
    34  	HugePageSize = 1 << HugePageShift
    35  
    36  	// PageShift is the binary log of the system page size.
    37  	PageShift = 12
    38  
    39  	// HugePageShift is the binary log of the system huge page size.
    40  	// Should be calculated by "PageShift + (PageShift - 3)"
    41  	// when multiple page size support is ready.
    42  	HugePageShift = 21
    43  )
    44  
    45  var (
    46  	// ByteOrder is the native byte order (little endian).
    47  	ByteOrder = binary.LittleEndian
    48  )
    49  
    50  func init() {
    51  	// Make sure the page size is 4K on arm64 platform.
    52  	if size := unix.Getpagesize(); size != PageSize {
    53  		panic("Only 4K page size is supported on arm64!")
    54  	}
    55  }