mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
pull in ncruces/go-sqlite3 v0.20.3 with tetratelabs/wazero v1.8.2 (#3574)
This commit is contained in:
5
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid.go
generated
vendored
5
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid.go
generated
vendored
@ -28,3 +28,8 @@ const (
|
||||
CpuExtraFeatureAmd64ABM CpuFeature = 1 << 5
|
||||
// Note: when adding new features, ensure that the feature is included in CpuFeatureFlags.Raw.
|
||||
)
|
||||
|
||||
const (
|
||||
// CpuFeatureArm64Atomic is the flag to query CpuFeatureFlags.Has for Large System Extensions capabilities on arm64
|
||||
CpuFeatureArm64Atomic CpuFeature = 1 << 21
|
||||
)
|
||||
|
9
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_amd64.go
generated
vendored
9
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_amd64.go
generated
vendored
@ -1,4 +1,4 @@
|
||||
//go:build amd64 && !tinygo
|
||||
//go:build gc
|
||||
|
||||
package platform
|
||||
|
||||
@ -12,7 +12,7 @@ type cpuFeatureFlags struct {
|
||||
}
|
||||
|
||||
// cpuid exposes the CPUID instruction to the Go layer (https://www.amd.com/system/files/TechDocs/25481.pdf)
|
||||
// implemented in impl_amd64.s
|
||||
// implemented in cpuid_amd64.s
|
||||
func cpuid(arg1, arg2 uint32) (eax, ebx, ecx, edx uint32)
|
||||
|
||||
// cpuidAsBitmap combines the result of invoking cpuid to uint64 bitmap.
|
||||
@ -60,8 +60,9 @@ func (f *cpuFeatureFlags) HasExtra(cpuFeature CpuFeature) bool {
|
||||
|
||||
// Raw implements the same method on the CpuFeatureFlags interface.
|
||||
func (f *cpuFeatureFlags) Raw() uint64 {
|
||||
// Below, we only set the first 4 bits for the features we care about,
|
||||
// instead of setting all the unnecessary bits obtained from the CPUID instruction.
|
||||
// Below, we only set bits for the features we care about,
|
||||
// instead of setting all the unnecessary bits obtained from the
|
||||
// CPUID instruction.
|
||||
var ret uint64
|
||||
if f.Has(CpuFeatureAmd64SSE3) {
|
||||
ret = 1 << 0
|
||||
|
4
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_amd64.s
generated
vendored
4
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_amd64.s
generated
vendored
@ -1,6 +1,9 @@
|
||||
//go:build gc
|
||||
|
||||
#include "textflag.h"
|
||||
|
||||
// lifted from github.com/intel-go/cpuid and src/internal/cpu/cpu_x86.s
|
||||
|
||||
// func cpuid(arg1, arg2 uint32) (eax, ebx, ecx, edx uint32)
|
||||
TEXT ·cpuid(SB), NOSPLIT, $0-24
|
||||
MOVL arg1+0(FP), AX
|
||||
@ -11,4 +14,3 @@ TEXT ·cpuid(SB), NOSPLIT, $0-24
|
||||
MOVL CX, ecx+16(FP)
|
||||
MOVL DX, edx+20(FP)
|
||||
RET
|
||||
|
||||
|
71
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_arm64.go
generated
vendored
Normal file
71
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_arm64.go
generated
vendored
Normal file
@ -0,0 +1,71 @@
|
||||
//go:build gc
|
||||
|
||||
package platform
|
||||
|
||||
import "runtime"
|
||||
|
||||
// CpuFeatures exposes the capabilities for this CPU, queried via the Has, HasExtra methods.
|
||||
var CpuFeatures = loadCpuFeatureFlags()
|
||||
|
||||
// cpuFeatureFlags implements CpuFeatureFlags interface.
|
||||
type cpuFeatureFlags struct {
|
||||
isar0 uint64
|
||||
isar1 uint64
|
||||
}
|
||||
|
||||
// implemented in cpuid_arm64.s
|
||||
func getisar0() uint64
|
||||
|
||||
// implemented in cpuid_arm64.s
|
||||
func getisar1() uint64
|
||||
|
||||
func loadCpuFeatureFlags() CpuFeatureFlags {
|
||||
switch runtime.GOOS {
|
||||
case "darwin", "windows":
|
||||
// These OSes do not allow userland to read the instruction set attribute registers,
|
||||
// but basically require atomic instructions:
|
||||
// - "darwin" is the desktop version (mobile version is "ios"),
|
||||
// and the M1 is a ARMv8.4.
|
||||
// - "windows" requires them from Windows 11, see page 12
|
||||
// https://download.microsoft.com/download/7/8/8/788bf5ab-0751-4928-a22c-dffdc23c27f2/Minimum%20Hardware%20Requirements%20for%20Windows%2011.pdf
|
||||
return &cpuFeatureFlags{
|
||||
isar0: uint64(CpuFeatureArm64Atomic),
|
||||
isar1: 0,
|
||||
}
|
||||
case "linux", "freebsd":
|
||||
// These OSes allow userland to read the instruction set attribute registers,
|
||||
// which is otherwise restricted to EL0:
|
||||
// https://kernel.org/doc/Documentation/arm64/cpu-feature-registers.txt
|
||||
// See these for contents of the registers:
|
||||
// https://developer.arm.com/documentation/ddi0601/latest/AArch64-Registers/ID-AA64ISAR0-EL1--AArch64-Instruction-Set-Attribute-Register-0
|
||||
// https://developer.arm.com/documentation/ddi0601/latest/AArch64-Registers/ID-AA64ISAR1-EL1--AArch64-Instruction-Set-Attribute-Register-1
|
||||
return &cpuFeatureFlags{
|
||||
isar0: getisar0(),
|
||||
isar1: getisar1(),
|
||||
}
|
||||
default:
|
||||
return &cpuFeatureFlags{}
|
||||
}
|
||||
}
|
||||
|
||||
// Has implements the same method on the CpuFeatureFlags interface.
|
||||
func (f *cpuFeatureFlags) Has(cpuFeature CpuFeature) bool {
|
||||
return (f.isar0 & uint64(cpuFeature)) != 0
|
||||
}
|
||||
|
||||
// HasExtra implements the same method on the CpuFeatureFlags interface.
|
||||
func (f *cpuFeatureFlags) HasExtra(cpuFeature CpuFeature) bool {
|
||||
return (f.isar1 & uint64(cpuFeature)) != 0
|
||||
}
|
||||
|
||||
// Raw implements the same method on the CpuFeatureFlags interface.
|
||||
func (f *cpuFeatureFlags) Raw() uint64 {
|
||||
// Below, we only set bits for the features we care about,
|
||||
// instead of setting all the unnecessary bits obtained from the
|
||||
// instruction set attribute registers.
|
||||
var ret uint64
|
||||
if f.Has(CpuFeatureArm64Atomic) {
|
||||
ret = 1 << 0
|
||||
}
|
||||
return ret
|
||||
}
|
21
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_arm64.s
generated
vendored
Normal file
21
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_arm64.s
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
//go:build gc
|
||||
|
||||
#include "textflag.h"
|
||||
|
||||
// lifted from github.com/golang/sys and cpu/cpu_arm64.s
|
||||
|
||||
// func getisar0() uint64
|
||||
TEXT ·getisar0(SB), NOSPLIT, $0-8
|
||||
// get Instruction Set Attributes 0 into x0
|
||||
// mrs x0, ID_AA64ISAR0_EL1 = d5380600
|
||||
WORD $0xd5380600
|
||||
MOVD R0, ret+0(FP)
|
||||
RET
|
||||
|
||||
// func getisar1() uint64
|
||||
TEXT ·getisar1(SB), NOSPLIT, $0-8
|
||||
// get Instruction Set Attributes 1 into x0
|
||||
// mrs x0, ID_AA64ISAR1_EL1 = d5380620
|
||||
WORD $0xd5380620
|
||||
MOVD R0, ret+0(FP)
|
||||
RET
|
2
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_unsupported.go
generated
vendored
2
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_unsupported.go
generated
vendored
@ -1,4 +1,4 @@
|
||||
//go:build !amd64 || tinygo
|
||||
//go:build !(amd64 || arm64) || !gc
|
||||
|
||||
package platform
|
||||
|
||||
|
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_other.go
generated
vendored
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_other.go
generated
vendored
@ -1,5 +1,5 @@
|
||||
// Separated from linux which has support for huge pages.
|
||||
//go:build darwin || freebsd
|
||||
//go:build darwin || freebsd || netbsd || dragonfly || solaris
|
||||
|
||||
package platform
|
||||
|
||||
|
17
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_unix.go
generated
vendored
17
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_unix.go
generated
vendored
@ -1,10 +1,9 @@
|
||||
//go:build (darwin || linux || freebsd) && !tinygo
|
||||
//go:build (linux || darwin || freebsd || netbsd || dragonfly || solaris) && !tinygo
|
||||
|
||||
package platform
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -31,17 +30,3 @@ func mmapCodeSegmentARM64(size int) ([]byte, error) {
|
||||
// The region must be RW: RW for writing native codes.
|
||||
return mmapCodeSegment(size, mmapProtARM64)
|
||||
}
|
||||
|
||||
// MprotectRX is like syscall.Mprotect with RX permission, defined locally so that freebsd compiles.
|
||||
func MprotectRX(b []byte) (err error) {
|
||||
var _p0 unsafe.Pointer
|
||||
if len(b) > 0 {
|
||||
_p0 = unsafe.Pointer(&b[0])
|
||||
}
|
||||
const prot = syscall.PROT_READ | syscall.PROT_EXEC
|
||||
_, _, e1 := syscall.Syscall(syscall.SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))
|
||||
if e1 != 0 {
|
||||
err = syscall.Errno(e1)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_unsupported.go
generated
vendored
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_unsupported.go
generated
vendored
@ -1,4 +1,4 @@
|
||||
//go:build !(darwin || linux || freebsd || windows) || tinygo
|
||||
//go:build !(linux || darwin || freebsd || netbsd || dragonfly || solaris || windows) || tinygo
|
||||
|
||||
package platform
|
||||
|
||||
|
22
vendor/github.com/tetratelabs/wazero/internal/platform/mprotect_bsd.go
generated
vendored
Normal file
22
vendor/github.com/tetratelabs/wazero/internal/platform/mprotect_bsd.go
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
//go:build (freebsd || netbsd || dragonfly) && !tinygo
|
||||
|
||||
package platform
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
// MprotectRX is like syscall.Mprotect with RX permission, defined locally so that BSD compiles.
|
||||
func MprotectRX(b []byte) (err error) {
|
||||
var _p0 unsafe.Pointer
|
||||
if len(b) > 0 {
|
||||
_p0 = unsafe.Pointer(&b[0])
|
||||
}
|
||||
const prot = syscall.PROT_READ | syscall.PROT_EXEC
|
||||
_, _, e1 := syscall.Syscall(syscall.SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))
|
||||
if e1 != 0 {
|
||||
err = syscall.Errno(e1)
|
||||
}
|
||||
return
|
||||
}
|
10
vendor/github.com/tetratelabs/wazero/internal/platform/mprotect_syscall.go
generated
vendored
Normal file
10
vendor/github.com/tetratelabs/wazero/internal/platform/mprotect_syscall.go
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
//go:build (linux || darwin) && !tinygo
|
||||
|
||||
package platform
|
||||
|
||||
import "syscall"
|
||||
|
||||
// MprotectRX is like syscall.Mprotect with RX permission.
|
||||
func MprotectRX(b []byte) (err error) {
|
||||
return syscall.Mprotect(b, syscall.PROT_READ|syscall.PROT_EXEC)
|
||||
}
|
9
vendor/github.com/tetratelabs/wazero/internal/platform/mprotect_unsupported.go
generated
vendored
Normal file
9
vendor/github.com/tetratelabs/wazero/internal/platform/mprotect_unsupported.go
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
//go:build solaris && !tinygo
|
||||
|
||||
package platform
|
||||
|
||||
import "syscall"
|
||||
|
||||
func MprotectRX(b []byte) error {
|
||||
return syscall.ENOTSUP
|
||||
}
|
9
vendor/github.com/tetratelabs/wazero/internal/platform/platform.go
generated
vendored
9
vendor/github.com/tetratelabs/wazero/internal/platform/platform.go
generated
vendored
@ -11,15 +11,16 @@ import (
|
||||
// archRequirementsVerified is set by platform-specific init to true if the platform is supported
|
||||
var archRequirementsVerified bool
|
||||
|
||||
// CompilerSupported is exported for tests and includes constraints here and also the assembler.
|
||||
// CompilerSupported includes constraints here and also the assembler.
|
||||
func CompilerSupported() bool {
|
||||
switch runtime.GOOS {
|
||||
case "darwin", "windows", "linux", "freebsd":
|
||||
case "linux", "darwin", "freebsd", "netbsd", "dragonfly", "windows":
|
||||
return archRequirementsVerified
|
||||
case "solaris", "illumos":
|
||||
return runtime.GOARCH == "amd64" && archRequirementsVerified
|
||||
default:
|
||||
return false
|
||||
}
|
||||
|
||||
return archRequirementsVerified
|
||||
}
|
||||
|
||||
// MmapCodeSegment copies the code into the executable region and returns the byte slice of the region.
|
||||
|
4
vendor/github.com/tetratelabs/wazero/internal/platform/platform_arm64.go
generated
vendored
4
vendor/github.com/tetratelabs/wazero/internal/platform/platform_arm64.go
generated
vendored
@ -2,6 +2,6 @@ package platform
|
||||
|
||||
// init verifies that the current CPU supports the required ARM64 features
|
||||
func init() {
|
||||
// No further checks currently needed.
|
||||
archRequirementsVerified = true
|
||||
// Ensure atomic instructions are supported.
|
||||
archRequirementsVerified = CpuFeatures.Has(CpuFeatureArm64Atomic)
|
||||
}
|
||||
|
Reference in New Issue
Block a user