node-linux-armv7l 17.7.1 → 18.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +219 -1330
- package/LICENSE +111 -9
- package/README.md +17 -21
- package/bin/node +0 -0
- package/include/node/common.gypi +7 -3
- package/include/node/config.gypi +12 -10
- package/include/node/js_native_api.h +35 -46
- package/include/node/js_native_api_types.h +3 -6
- package/include/node/libplatform/libplatform.h +0 -11
- package/include/node/libplatform/v8-tracing.h +0 -1
- package/include/node/node.h +7 -3
- package/include/node/node_api.h +70 -60
- package/include/node/node_api_types.h +1 -2
- package/include/node/node_version.h +4 -4
- package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/BSD-x86/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN32/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix-gcc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/aix-gcc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/aix-gcc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/aix-gcc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/aix-gcc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-aarch64/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-armv4/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-elf/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-elf/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc64/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc64/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-x86_64/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux32-s390x/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-mips64/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-s390x/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/progs.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/progs.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/bio.h +3 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crypto.h +2 -2
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ssl.h +4 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/progs.h +1 -1
- package/include/node/openssl/asn1_asm.h +2 -0
- package/include/node/openssl/asn1_no-asm.h +2 -0
- package/include/node/openssl/asn1t_asm.h +2 -0
- package/include/node/openssl/asn1t_no-asm.h +2 -0
- package/include/node/openssl/bio_asm.h +2 -0
- package/include/node/openssl/bio_no-asm.h +2 -0
- package/include/node/openssl/bn_conf_asm.h +2 -0
- package/include/node/openssl/bn_conf_no-asm.h +2 -0
- package/include/node/openssl/cmp_asm.h +2 -0
- package/include/node/openssl/cmp_no-asm.h +2 -0
- package/include/node/openssl/cms_asm.h +2 -0
- package/include/node/openssl/cms_no-asm.h +2 -0
- package/include/node/openssl/conf_asm.h +2 -0
- package/include/node/openssl/conf_no-asm.h +2 -0
- package/include/node/openssl/configuration_asm.h +2 -0
- package/include/node/openssl/configuration_no-asm.h +2 -0
- package/include/node/openssl/crmf_asm.h +2 -0
- package/include/node/openssl/crmf_no-asm.h +2 -0
- package/include/node/openssl/crypto_asm.h +2 -0
- package/include/node/openssl/crypto_no-asm.h +2 -0
- package/include/node/openssl/ct_asm.h +2 -0
- package/include/node/openssl/ct_no-asm.h +2 -0
- package/include/node/openssl/dso_conf_asm.h +2 -0
- package/include/node/openssl/dso_conf_no-asm.h +2 -0
- package/include/node/openssl/ec.h +4 -1
- package/include/node/openssl/engine.h +2 -1
- package/include/node/openssl/err_asm.h +2 -0
- package/include/node/openssl/err_no-asm.h +2 -0
- package/include/node/openssl/ess_asm.h +2 -0
- package/include/node/openssl/ess_no-asm.h +2 -0
- package/include/node/openssl/evp.h +3 -3
- package/include/node/openssl/fipskey_asm.h +2 -0
- package/include/node/openssl/fipskey_no-asm.h +2 -0
- package/include/node/openssl/lhash_asm.h +2 -0
- package/include/node/openssl/lhash_no-asm.h +2 -0
- package/include/node/openssl/ocsp_asm.h +2 -0
- package/include/node/openssl/ocsp_no-asm.h +2 -0
- package/include/node/openssl/opensslv_asm.h +2 -0
- package/include/node/openssl/opensslv_no-asm.h +2 -0
- package/include/node/openssl/pkcs12_asm.h +2 -0
- package/include/node/openssl/pkcs12_no-asm.h +2 -0
- package/include/node/openssl/pkcs7_asm.h +2 -0
- package/include/node/openssl/pkcs7_no-asm.h +2 -0
- package/include/node/openssl/safestack_asm.h +2 -0
- package/include/node/openssl/safestack_no-asm.h +2 -0
- package/include/node/openssl/self_test.h +4 -5
- package/include/node/openssl/srp_asm.h +2 -0
- package/include/node/openssl/srp_no-asm.h +2 -0
- package/include/node/openssl/ssl_asm.h +2 -0
- package/include/node/openssl/ssl_no-asm.h +2 -0
- package/include/node/openssl/ui_asm.h +2 -0
- package/include/node/openssl/ui_no-asm.h +2 -0
- package/include/node/openssl/x509_asm.h +2 -0
- package/include/node/openssl/x509_no-asm.h +2 -0
- package/include/node/openssl/x509_vfy_asm.h +2 -0
- package/include/node/openssl/x509_vfy_no-asm.h +2 -0
- package/include/node/openssl/x509v3_asm.h +2 -0
- package/include/node/openssl/x509v3_no-asm.h +2 -0
- package/include/node/v8-array-buffer.h +2 -2
- package/include/node/v8-callbacks.h +26 -6
- package/include/node/v8-context.h +3 -14
- package/include/node/v8-data.h +15 -0
- package/include/node/v8-debug.h +21 -4
- package/include/node/v8-embedder-heap.h +10 -30
- package/include/node/v8-embedder-state-scope.h +51 -0
- package/include/node/v8-exception.h +0 -7
- package/include/node/v8-function.h +3 -0
- package/include/node/v8-initialization.h +64 -31
- package/include/node/v8-internal.h +189 -102
- package/include/node/v8-isolate.h +49 -2
- package/include/node/v8-local-handle.h +0 -4
- package/include/node/v8-locker.h +2 -1
- package/include/node/v8-message.h +19 -44
- package/include/node/v8-object.h +11 -6
- package/include/node/v8-platform.h +365 -6
- package/include/node/v8-primitive.h +14 -6
- package/include/node/v8-profiler.h +78 -2
- package/include/node/v8-script.h +27 -51
- package/include/node/v8-snapshot.h +0 -2
- package/include/node/v8-statistics.h +2 -0
- package/include/node/v8-template.h +31 -4
- package/include/node/v8-traced-handle.h +39 -224
- package/include/node/v8-unwinder.h +10 -7
- package/include/node/v8-value-serializer.h +32 -2
- package/include/node/v8-version.h +4 -4
- package/include/node/v8-wasm.h +13 -1
- package/include/node/v8-weak-callback-info.h +20 -6
- package/include/node/v8.h +0 -1
- package/include/node/v8config.h +56 -11
- package/package.json +1 -1
- package/share/doc/node/gdbinit +14 -6
- package/share/man/man1/node.1 +7 -3
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/err.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/err.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/err.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/err.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/err.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/err.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/ess.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/ess.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/ess.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/ess.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/ess.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/ess.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright 1995-
|
|
2
|
+
* Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
5
5
|
* this file except in compliance with the License. You can obtain a copy
|
|
@@ -205,8 +205,8 @@ int (*EVP_MD_meth_get_ctrl(const EVP_MD *md))(EVP_MD_CTX *ctx, int cmd,
|
|
|
205
205
|
* don't accidentally reuse the values for other purposes.
|
|
206
206
|
*/
|
|
207
207
|
|
|
208
|
-
|
|
209
|
-
|
|
208
|
+
/* This flag has no effect from openssl-3.0 onwards */
|
|
209
|
+
# define EVP_MD_CTX_FLAG_NON_FIPS_ALLOW 0x0008
|
|
210
210
|
|
|
211
211
|
/*
|
|
212
212
|
* The following PAD options are also currently ignored in 1.0.0, digest
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/fipskey.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/fipskey.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/fipskey.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/fipskey.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/fipskey.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/fipskey.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/lhash.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/lhash.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/lhash.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/lhash.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/lhash.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/lhash.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/ocsp.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/ocsp.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/ocsp.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/ocsp.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/ocsp.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/ocsp.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/opensslv.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/opensslv.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/opensslv.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/opensslv.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/opensslv.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/opensslv.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/pkcs12.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/pkcs12.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/pkcs12.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/pkcs12.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/pkcs12.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/pkcs12.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/pkcs7.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/pkcs7.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/pkcs7.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/pkcs7.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/pkcs7.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/pkcs7.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/safestack.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/safestack.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/safestack.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/safestack.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/safestack.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/safestack.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright 2019-
|
|
2
|
+
* Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
5
5
|
* this file except in compliance with the License. You can obtain a copy
|
|
@@ -73,10 +73,6 @@ extern "C" {
|
|
|
73
73
|
# define OSSL_SELF_TEST_DESC_KDF_TLS13_EXPAND "TLS13_KDF_EXPAND"
|
|
74
74
|
# define OSSL_SELF_TEST_DESC_RNG "RNG"
|
|
75
75
|
|
|
76
|
-
# ifdef __cplusplus
|
|
77
|
-
}
|
|
78
|
-
# endif
|
|
79
|
-
|
|
80
76
|
void OSSL_SELF_TEST_set_callback(OSSL_LIB_CTX *libctx, OSSL_CALLBACK *cb,
|
|
81
77
|
void *cbarg);
|
|
82
78
|
void OSSL_SELF_TEST_get_callback(OSSL_LIB_CTX *libctx, OSSL_CALLBACK **cb,
|
|
@@ -90,4 +86,7 @@ void OSSL_SELF_TEST_onbegin(OSSL_SELF_TEST *st, const char *type,
|
|
|
90
86
|
int OSSL_SELF_TEST_oncorrupt_byte(OSSL_SELF_TEST *st, unsigned char *bytes);
|
|
91
87
|
void OSSL_SELF_TEST_onend(OSSL_SELF_TEST *st, int ret);
|
|
92
88
|
|
|
89
|
+
# ifdef __cplusplus
|
|
90
|
+
}
|
|
91
|
+
# endif
|
|
93
92
|
#endif /* OPENSSL_SELF_TEST_H */
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/srp.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/srp.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/srp.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/srp.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/srp.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/srp.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/ssl.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/ssl.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/ssl.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/ssl.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/ssl.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/ssl.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/ui.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/ui.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/ui.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/ui.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/ui.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/ui.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/x509.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/x509.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/x509.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/x509.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/x509.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/x509.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/x509_vfy.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/x509_vfy.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/x509_vfy.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/x509_vfy.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/x509_vfy.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/x509_vfy.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/include/openssl/x509v3.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/asm/include/openssl/x509v3.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/asm/include/openssl/x509v3.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/include/openssl/x509v3.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
+
# include "./archs/linux-x32/no-asm/include/openssl/x509v3.h"
|
|
8
10
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
11
|
# include "./archs/linux-x86_64/no-asm/include/openssl/x509v3.h"
|
|
10
12
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -175,8 +175,8 @@ class V8_EXPORT ArrayBuffer : public Object {
|
|
|
175
175
|
/**
|
|
176
176
|
* Convenience allocator.
|
|
177
177
|
*
|
|
178
|
-
* When the
|
|
179
|
-
*
|
|
178
|
+
* When the sandbox is enabled, this allocator will allocate its backing
|
|
179
|
+
* memory inside the sandbox. Otherwise, it will rely on malloc/free.
|
|
180
180
|
*
|
|
181
181
|
* Caller takes ownership, i.e. the returned object needs to be freed using
|
|
182
182
|
* |delete allocator| once it is no longer in use.
|
|
@@ -148,11 +148,13 @@ using JitCodeEventHandler = void (*)(const JitCodeEvent* event);
|
|
|
148
148
|
*/
|
|
149
149
|
enum GCType {
|
|
150
150
|
kGCTypeScavenge = 1 << 0,
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
151
|
+
kGCTypeMinorMarkCompact = 1 << 1,
|
|
152
|
+
kGCTypeMarkSweepCompact = 1 << 2,
|
|
153
|
+
kGCTypeIncrementalMarking = 1 << 3,
|
|
154
|
+
kGCTypeProcessWeakCallbacks = 1 << 4,
|
|
155
|
+
kGCTypeAll = kGCTypeScavenge | kGCTypeMinorMarkCompact |
|
|
156
|
+
kGCTypeMarkSweepCompact | kGCTypeIncrementalMarking |
|
|
157
|
+
kGCTypeProcessWeakCallbacks
|
|
156
158
|
};
|
|
157
159
|
|
|
158
160
|
/**
|
|
@@ -316,7 +318,7 @@ using SharedArrayBufferConstructorEnabledCallback =
|
|
|
316
318
|
bool (*)(Local<Context> context);
|
|
317
319
|
|
|
318
320
|
/**
|
|
319
|
-
*
|
|
321
|
+
* HostImportModuleDynamicallyCallback is called when we
|
|
320
322
|
* require the embedder to load a module. This is used as part of the dynamic
|
|
321
323
|
* import syntax.
|
|
322
324
|
*
|
|
@@ -346,6 +348,10 @@ using HostImportModuleDynamicallyWithImportAssertionsCallback =
|
|
|
346
348
|
Local<ScriptOrModule> referrer,
|
|
347
349
|
Local<String> specifier,
|
|
348
350
|
Local<FixedArray> import_assertions);
|
|
351
|
+
using HostImportModuleDynamicallyCallback = MaybeLocal<Promise> (*)(
|
|
352
|
+
Local<Context> context, Local<Data> host_defined_options,
|
|
353
|
+
Local<Value> resource_name, Local<String> specifier,
|
|
354
|
+
Local<FixedArray> import_assertions);
|
|
349
355
|
|
|
350
356
|
/**
|
|
351
357
|
* HostInitializeImportMetaObjectCallback is called the first time import.meta
|
|
@@ -361,6 +367,20 @@ using HostInitializeImportMetaObjectCallback = void (*)(Local<Context> context,
|
|
|
361
367
|
Local<Module> module,
|
|
362
368
|
Local<Object> meta);
|
|
363
369
|
|
|
370
|
+
/**
|
|
371
|
+
* HostCreateShadowRealmContextCallback is called each time a ShadowRealm is
|
|
372
|
+
* being constructed in the initiator_context.
|
|
373
|
+
*
|
|
374
|
+
* The method combines Context creation and implementation defined abstract
|
|
375
|
+
* operation HostInitializeShadowRealm into one.
|
|
376
|
+
*
|
|
377
|
+
* The embedder should use v8::Context::New or v8::Context:NewFromSnapshot to
|
|
378
|
+
* create a new context. If the creation fails, the embedder must propagate
|
|
379
|
+
* that exception by returning an empty MaybeLocal.
|
|
380
|
+
*/
|
|
381
|
+
using HostCreateShadowRealmContextCallback =
|
|
382
|
+
MaybeLocal<Context> (*)(Local<Context> initiator_context);
|
|
383
|
+
|
|
364
384
|
/**
|
|
365
385
|
* PrepareStackTraceCallback is called when the stack property of an error is
|
|
366
386
|
* first accessed. The return value will be used as the stack value. If this
|
|
@@ -313,17 +313,6 @@ class V8_EXPORT Context : public Data {
|
|
|
313
313
|
explicit BackupIncumbentScope(Local<Context> backup_incumbent_context);
|
|
314
314
|
~BackupIncumbentScope();
|
|
315
315
|
|
|
316
|
-
/**
|
|
317
|
-
* Returns address that is comparable with JS stack address. Note that JS
|
|
318
|
-
* stack may be allocated separately from the native stack. See also
|
|
319
|
-
* |TryCatch::JSStackComparableAddressPrivate| for details.
|
|
320
|
-
*/
|
|
321
|
-
V8_DEPRECATE_SOON(
|
|
322
|
-
"This is private V8 information that should not be exposed in the API.")
|
|
323
|
-
uintptr_t JSStackComparableAddress() const {
|
|
324
|
-
return JSStackComparableAddressPrivate();
|
|
325
|
-
}
|
|
326
|
-
|
|
327
316
|
private:
|
|
328
317
|
friend class internal::Isolate;
|
|
329
318
|
|
|
@@ -379,7 +368,7 @@ Local<Value> Context::GetEmbedderData(int index) {
|
|
|
379
368
|
}
|
|
380
369
|
|
|
381
370
|
void* Context::GetAlignedPointerFromEmbedderData(int index) {
|
|
382
|
-
#
|
|
371
|
+
#if !defined(V8_ENABLE_CHECKS)
|
|
383
372
|
using A = internal::Address;
|
|
384
373
|
using I = internal::Internals;
|
|
385
374
|
A ctx = *reinterpret_cast<const A*>(this);
|
|
@@ -387,10 +376,10 @@ void* Context::GetAlignedPointerFromEmbedderData(int index) {
|
|
|
387
376
|
I::ReadTaggedPointerField(ctx, I::kNativeContextEmbedderDataOffset);
|
|
388
377
|
int value_offset =
|
|
389
378
|
I::kEmbedderDataArrayHeaderSize + (I::kEmbedderDataSlotSize * index);
|
|
390
|
-
#ifdef
|
|
379
|
+
#ifdef V8_SANDBOXED_EXTERNAL_POINTERS
|
|
391
380
|
value_offset += I::kEmbedderDataSlotRawPayloadOffset;
|
|
392
381
|
#endif
|
|
393
|
-
internal::Isolate* isolate = I::
|
|
382
|
+
internal::Isolate* isolate = I::GetIsolateForSandbox(ctx);
|
|
394
383
|
return reinterpret_cast<void*>(
|
|
395
384
|
I::ReadExternalPointerField(isolate, embedder_data, value_offset,
|
|
396
385
|
internal::kEmbedderDataSlotPayloadTag));
|
package/include/node/v8-data.h
CHANGED
|
@@ -27,6 +27,11 @@ class V8_EXPORT Data {
|
|
|
27
27
|
*/
|
|
28
28
|
bool IsModule() const;
|
|
29
29
|
|
|
30
|
+
/**
|
|
31
|
+
* Returns tru if this data is a |v8::FixedArray|
|
|
32
|
+
*/
|
|
33
|
+
bool IsFixedArray() const;
|
|
34
|
+
|
|
30
35
|
/**
|
|
31
36
|
* Returns true if this data is a |v8::Private|.
|
|
32
37
|
*/
|
|
@@ -58,6 +63,16 @@ class V8_EXPORT FixedArray : public Data {
|
|
|
58
63
|
public:
|
|
59
64
|
int Length() const;
|
|
60
65
|
Local<Data> Get(Local<Context> context, int i) const;
|
|
66
|
+
|
|
67
|
+
V8_INLINE static FixedArray* Cast(Data* data) {
|
|
68
|
+
#ifdef V8_ENABLE_CHECKS
|
|
69
|
+
CheckCast(data);
|
|
70
|
+
#endif
|
|
71
|
+
return reinterpret_cast<FixedArray*>(data);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
private:
|
|
75
|
+
static void CheckCast(Data* obj);
|
|
61
76
|
};
|
|
62
77
|
|
|
63
78
|
} // namespace v8
|
package/include/node/v8-debug.h
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
#include <stdint.h>
|
|
9
9
|
|
|
10
|
-
#include "v8-
|
|
11
|
-
#include "v8config.h"
|
|
10
|
+
#include "v8-script.h" // NOLINT(build/include_directory)
|
|
11
|
+
#include "v8config.h" // NOLINT(build/include_directory)
|
|
12
12
|
|
|
13
13
|
namespace v8 {
|
|
14
14
|
|
|
@@ -20,13 +20,18 @@ class String;
|
|
|
20
20
|
*/
|
|
21
21
|
class V8_EXPORT StackFrame {
|
|
22
22
|
public:
|
|
23
|
+
/**
|
|
24
|
+
* Returns the source location, 0-based, for the associated function call.
|
|
25
|
+
*/
|
|
26
|
+
Location GetLocation() const;
|
|
27
|
+
|
|
23
28
|
/**
|
|
24
29
|
* Returns the number, 1-based, of the line for the associate function call.
|
|
25
30
|
* This method will return Message::kNoLineNumberInfo if it is unable to
|
|
26
31
|
* retrieve the line number, or if kLineNumber was not passed as an option
|
|
27
32
|
* when capturing the StackTrace.
|
|
28
33
|
*/
|
|
29
|
-
int GetLineNumber() const;
|
|
34
|
+
int GetLineNumber() const { return GetLocation().GetLineNumber() + 1; }
|
|
30
35
|
|
|
31
36
|
/**
|
|
32
37
|
* Returns the 1-based column offset on the line for the associated function
|
|
@@ -35,7 +40,7 @@ class V8_EXPORT StackFrame {
|
|
|
35
40
|
* the column number, or if kColumnOffset was not passed as an option when
|
|
36
41
|
* capturing the StackTrace.
|
|
37
42
|
*/
|
|
38
|
-
int GetColumn() const;
|
|
43
|
+
int GetColumn() const { return GetLocation().GetColumnNumber() + 1; }
|
|
39
44
|
|
|
40
45
|
/**
|
|
41
46
|
* Returns the id of the script for the function for this StackFrame.
|
|
@@ -144,6 +149,18 @@ class V8_EXPORT StackTrace {
|
|
|
144
149
|
*/
|
|
145
150
|
static Local<StackTrace> CurrentStackTrace(
|
|
146
151
|
Isolate* isolate, int frame_limit, StackTraceOptions options = kDetailed);
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Returns the first valid script name or source URL starting at the top of
|
|
155
|
+
* the JS stack. The returned string is either an empty handle if no script
|
|
156
|
+
* name/url was found or a non-zero-length string.
|
|
157
|
+
*
|
|
158
|
+
* This method is equivalent to calling StackTrace::CurrentStackTrace and
|
|
159
|
+
* walking the resulting frames from the beginning until a non-empty script
|
|
160
|
+
* name/url is found. The difference is that this method won't allocate
|
|
161
|
+
* a stack trace.
|
|
162
|
+
*/
|
|
163
|
+
static Local<String> CurrentScriptNameOrSourceURL(Isolate* isolate);
|
|
147
164
|
};
|
|
148
165
|
|
|
149
166
|
} // namespace v8
|
|
@@ -34,24 +34,21 @@ class V8_EXPORT EmbedderRootsHandler {
|
|
|
34
34
|
virtual ~EmbedderRootsHandler() = default;
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
|
-
* Returns true if the
|
|
38
|
-
* the currently running non-tracing garbage collection and false
|
|
39
|
-
* The default implementation will keep all
|
|
37
|
+
* Returns true if the |TracedReference| handle should be considered as root
|
|
38
|
+
* for the currently running non-tracing garbage collection and false
|
|
39
|
+
* otherwise. The default implementation will keep all |TracedReference|
|
|
40
|
+
* references as roots.
|
|
40
41
|
*
|
|
41
42
|
* If this returns false, then V8 may decide that the object referred to by
|
|
42
|
-
* such a handle is reclaimed. In that case
|
|
43
|
-
*
|
|
44
|
-
* using |TracedGlobal|.
|
|
45
|
-
* - When run without destructors, i.e., by using |TracedReference|, V8 calls
|
|
46
|
-
* |ResetRoot|.
|
|
43
|
+
* such a handle is reclaimed. In that case, V8 calls |ResetRoot()| for the
|
|
44
|
+
* |TracedReference|.
|
|
47
45
|
*
|
|
48
|
-
* Note that the
|
|
46
|
+
* Note that the `handle` is different from the handle that the embedder holds
|
|
49
47
|
* for retaining the object. The embedder may use |WrapperClassId()| to
|
|
50
48
|
* distinguish cases where it wants handles to be treated as roots from not
|
|
51
49
|
* being treated as roots.
|
|
52
50
|
*/
|
|
53
51
|
virtual bool IsRoot(const v8::TracedReference<v8::Value>& handle) = 0;
|
|
54
|
-
virtual bool IsRoot(const v8::TracedGlobal<v8::Value>& handle) = 0;
|
|
55
52
|
|
|
56
53
|
/**
|
|
57
54
|
* Used in combination with |IsRoot|. Called by V8 when an
|
|
@@ -83,12 +80,11 @@ class V8_EXPORT EmbedderHeapTracer {
|
|
|
83
80
|
};
|
|
84
81
|
|
|
85
82
|
/**
|
|
86
|
-
* Interface for iterating through
|
|
83
|
+
* Interface for iterating through |TracedReference| handles.
|
|
87
84
|
*/
|
|
88
85
|
class V8_EXPORT TracedGlobalHandleVisitor {
|
|
89
86
|
public:
|
|
90
87
|
virtual ~TracedGlobalHandleVisitor() = default;
|
|
91
|
-
virtual void VisitTracedGlobalHandle(const TracedGlobal<Value>& handle) {}
|
|
92
88
|
virtual void VisitTracedReference(const TracedReference<Value>& handle) {}
|
|
93
89
|
};
|
|
94
90
|
|
|
@@ -113,8 +109,8 @@ class V8_EXPORT EmbedderHeapTracer {
|
|
|
113
109
|
virtual ~EmbedderHeapTracer() = default;
|
|
114
110
|
|
|
115
111
|
/**
|
|
116
|
-
* Iterates all
|
|
117
|
-
* attached to.
|
|
112
|
+
* Iterates all |TracedReference| handles created for the |v8::Isolate| the
|
|
113
|
+
* tracer is attached to.
|
|
118
114
|
*/
|
|
119
115
|
void IterateTracedGlobalHandles(TracedGlobalHandleVisitor* visitor);
|
|
120
116
|
|
|
@@ -124,14 +120,6 @@ class V8_EXPORT EmbedderHeapTracer {
|
|
|
124
120
|
*/
|
|
125
121
|
void SetStackStart(void* stack_start);
|
|
126
122
|
|
|
127
|
-
/**
|
|
128
|
-
* Called by the embedder to notify V8 of an empty execution stack.
|
|
129
|
-
*/
|
|
130
|
-
V8_DEPRECATE_SOON(
|
|
131
|
-
"This call only optimized internal caches which V8 is able to figure out "
|
|
132
|
-
"on its own now.")
|
|
133
|
-
void NotifyEmptyEmbedderStack();
|
|
134
|
-
|
|
135
123
|
/**
|
|
136
124
|
* Called by v8 to register internal fields of found wrappers.
|
|
137
125
|
*
|
|
@@ -197,7 +185,6 @@ class V8_EXPORT EmbedderHeapTracer {
|
|
|
197
185
|
*/
|
|
198
186
|
virtual bool IsRootForNonTracingGC(
|
|
199
187
|
const v8::TracedReference<v8::Value>& handle);
|
|
200
|
-
virtual bool IsRootForNonTracingGC(const v8::TracedGlobal<v8::Value>& handle);
|
|
201
188
|
|
|
202
189
|
/**
|
|
203
190
|
* See documentation on EmbedderRootsHandler.
|
|
@@ -205,13 +192,6 @@ class V8_EXPORT EmbedderHeapTracer {
|
|
|
205
192
|
virtual void ResetHandleInNonTracingGC(
|
|
206
193
|
const v8::TracedReference<v8::Value>& handle);
|
|
207
194
|
|
|
208
|
-
/*
|
|
209
|
-
* Called by the embedder to immediately perform a full garbage collection.
|
|
210
|
-
*
|
|
211
|
-
* Should only be used in testing code.
|
|
212
|
-
*/
|
|
213
|
-
void GarbageCollectionForTesting(EmbedderStackState stack_state);
|
|
214
|
-
|
|
215
195
|
/*
|
|
216
196
|
* Called by the embedder to signal newly allocated or freed memory. Not bound
|
|
217
197
|
* to tracing phases. Embedders should trade off when increments are reported
|