mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[chore] Upgrade wasm-sqlite to v0.16.2 (#2997)
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
@ -6,6 +6,9 @@ type CpuFeatureFlags interface {
|
||||
Has(cpuFeature CpuFeature) bool
|
||||
// HasExtra returns true when the specified extraFlag (represented as uint64) is supported
|
||||
HasExtra(cpuFeature CpuFeature) bool
|
||||
// Raw returns the raw bitset that represents CPU features used by wazero. This can be used for cache keying.
|
||||
// For now, we only use four features, so uint64 is enough.
|
||||
Raw() uint64
|
||||
}
|
||||
|
||||
type CpuFeature uint64
|
||||
@ -17,9 +20,11 @@ const (
|
||||
CpuFeatureAmd64SSE4_1 CpuFeature = 1 << 19
|
||||
// CpuFeatureAmd64SSE4_2 is the flag to query CpuFeatureFlags.Has for SSEv4.2 capabilities on amd64
|
||||
CpuFeatureAmd64SSE4_2 CpuFeature = 1 << 20
|
||||
// Note: when adding new features, ensure that the feature is included in CpuFeatureFlags.Raw.
|
||||
)
|
||||
|
||||
const (
|
||||
// CpuExtraFeatureAmd64ABM is the flag to query CpuFeatureFlags.HasExtra for Advanced Bit Manipulation capabilities (e.g. LZCNT) on amd64
|
||||
CpuExtraFeatureAmd64ABM CpuFeature = 1 << 5
|
||||
// Note: when adding new features, ensure that the feature is included in CpuFeatureFlags.Raw.
|
||||
)
|
||||
|
36
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_amd64.go
generated
vendored
36
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_amd64.go
generated
vendored
@ -2,10 +2,10 @@
|
||||
|
||||
package platform
|
||||
|
||||
// CpuFeatures exposes the capabilities for this CPU, queried via the Has, HasExtra methods
|
||||
var CpuFeatures CpuFeatureFlags = loadCpuFeatureFlags()
|
||||
// CpuFeatures exposes the capabilities for this CPU, queried via the Has, HasExtra methods.
|
||||
var CpuFeatures = loadCpuFeatureFlags()
|
||||
|
||||
// cpuFeatureFlags implements CpuFeatureFlags interface
|
||||
// cpuFeatureFlags implements CpuFeatureFlags interface.
|
||||
type cpuFeatureFlags struct {
|
||||
flags uint64
|
||||
extraFlags uint64
|
||||
@ -15,13 +15,13 @@ type cpuFeatureFlags struct {
|
||||
// implemented in impl_amd64.s
|
||||
func cpuid(arg1, arg2 uint32) (eax, ebx, ecx, edx uint32)
|
||||
|
||||
// cpuidAsBitmap combines the result of invoking cpuid to uint64 bitmap
|
||||
// cpuidAsBitmap combines the result of invoking cpuid to uint64 bitmap.
|
||||
func cpuidAsBitmap(arg1, arg2 uint32) uint64 {
|
||||
_ /* eax */, _ /* ebx */, ecx, edx := cpuid(arg1, arg2)
|
||||
return (uint64(edx) << 32) | uint64(ecx)
|
||||
}
|
||||
|
||||
// loadStandardRange load flags from the standard range, panics otherwise
|
||||
// loadStandardRange load flags from the standard range, panics otherwise.
|
||||
func loadStandardRange(id uint32) uint64 {
|
||||
// ensure that the id is in the valid range, returned by cpuid(0,0)
|
||||
maxRange, _, _, _ := cpuid(0, 0)
|
||||
@ -31,7 +31,7 @@ func loadStandardRange(id uint32) uint64 {
|
||||
return cpuidAsBitmap(id, 0)
|
||||
}
|
||||
|
||||
// loadStandardRange load flags from the extended range, panics otherwise
|
||||
// loadStandardRange load flags from the extended range, panics otherwise.
|
||||
func loadExtendedRange(id uint32) uint64 {
|
||||
// ensure that the id is in the valid range, returned by cpuid(0x80000000,0)
|
||||
maxRange, _, _, _ := cpuid(0x80000000, 0)
|
||||
@ -48,12 +48,32 @@ func loadCpuFeatureFlags() CpuFeatureFlags {
|
||||
}
|
||||
}
|
||||
|
||||
// Has implements the same method on the CpuFeatureFlags interface
|
||||
// Has implements the same method on the CpuFeatureFlags interface.
|
||||
func (f *cpuFeatureFlags) Has(cpuFeature CpuFeature) bool {
|
||||
return (f.flags & uint64(cpuFeature)) != 0
|
||||
}
|
||||
|
||||
// HasExtra implements the same method on the CpuFeatureFlags interface
|
||||
// HasExtra implements the same method on the CpuFeatureFlags interface.
|
||||
func (f *cpuFeatureFlags) HasExtra(cpuFeature CpuFeature) bool {
|
||||
return (f.extraFlags & uint64(cpuFeature)) != 0
|
||||
}
|
||||
|
||||
// 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.
|
||||
var ret uint64
|
||||
if f.Has(CpuFeatureAmd64SSE3) {
|
||||
ret = 1 << 0
|
||||
}
|
||||
if f.Has(CpuFeatureAmd64SSE4_1) {
|
||||
ret |= 1 << 1
|
||||
}
|
||||
if f.Has(CpuFeatureAmd64SSE4_2) {
|
||||
ret |= 1 << 2
|
||||
}
|
||||
if f.HasExtra(CpuExtraFeatureAmd64ABM) {
|
||||
ret |= 1 << 3
|
||||
}
|
||||
return ret
|
||||
}
|
||||
|
9
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_unsupported.go
generated
vendored
9
vendor/github.com/tetratelabs/wazero/internal/platform/cpuid_unsupported.go
generated
vendored
@ -4,11 +4,14 @@ package platform
|
||||
|
||||
var CpuFeatures CpuFeatureFlags = &cpuFeatureFlags{}
|
||||
|
||||
// cpuFeatureFlags implements CpuFeatureFlags for unsupported platforms
|
||||
// cpuFeatureFlags implements CpuFeatureFlags for unsupported platforms.
|
||||
type cpuFeatureFlags struct{}
|
||||
|
||||
// Has implements the same method on the CpuFeatureFlags interface
|
||||
// Has implements the same method on the CpuFeatureFlags interface.
|
||||
func (c *cpuFeatureFlags) Has(cpuFeature CpuFeature) bool { return false }
|
||||
|
||||
// HasExtra implements the same method on the CpuFeatureFlags interface
|
||||
// HasExtra implements the same method on the CpuFeatureFlags interface.
|
||||
func (c *cpuFeatureFlags) HasExtra(cpuFeature CpuFeature) bool { return false }
|
||||
|
||||
// Raw implements the same method on the CpuFeatureFlags interface.
|
||||
func (c *cpuFeatureFlags) Raw() uint64 { return 0 }
|
||||
|
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_unix.go
generated
vendored
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_unix.go
generated
vendored
@ -12,8 +12,6 @@ const (
|
||||
mmapProtARM64 = syscall.PROT_READ | syscall.PROT_WRITE
|
||||
)
|
||||
|
||||
const MmapSupported = true
|
||||
|
||||
func munmapCodeSegment(code []byte) error {
|
||||
return syscall.Munmap(code)
|
||||
}
|
||||
|
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
@ -9,8 +9,6 @@ import (
|
||||
|
||||
var errUnsupported = fmt.Errorf("mmap unsupported on GOOS=%s. Use interpreter instead.", runtime.GOOS)
|
||||
|
||||
const MmapSupported = false
|
||||
|
||||
func munmapCodeSegment(code []byte) error {
|
||||
panic(errUnsupported)
|
||||
}
|
||||
|
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_windows.go
generated
vendored
2
vendor/github.com/tetratelabs/wazero/internal/platform/mmap_windows.go
generated
vendored
@ -21,8 +21,6 @@ const (
|
||||
windows_PAGE_EXECUTE_READWRITE uintptr = 0x00000040
|
||||
)
|
||||
|
||||
const MmapSupported = true
|
||||
|
||||
func munmapCodeSegment(code []byte) error {
|
||||
return freeMemory(code)
|
||||
}
|
||||
|
Reference in New Issue
Block a user