Source file src/runtime/stubs_arm.go
1 // Copyright 2018 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 package runtime 6 7 import "unsafe" 8 9 // Called from compiler-generated code; declared for go vet. 10 func udiv() 11 func _div() 12 func _divu() 13 func _mod() 14 func _modu() 15 16 // Called from assembly only; declared for go vet. 17 // 18 // load_g is also called from runtime/cgo. 19 // 20 //go:linknamestd load_g 21 func load_g() 22 func save_g() 23 func emptyfunc() 24 func _initcgo() 25 func read_tls_fallback() 26 func usplitR0() 27 28 //go:noescape 29 func asmcgocall_no_g(fn, arg unsafe.Pointer) 30 31 // getfp returns the frame pointer register of its caller or 0 if not implemented. 32 // TODO: Make this a compiler intrinsic 33 // 34 //go:nosplit 35 func getfp() uintptr { return 0 } 36