mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 10:36:38 -04:00
27 lines
982 B
C++
27 lines
982 B
C++
--- v8/src/execution/isolate.cc.orig 2025-04-04 08:52:13 UTC
|
|
+++ v8/src/execution/isolate.cc
|
|
@@ -172,6 +172,10 @@
|
|
#include "src/execution/simulator-base.h"
|
|
#endif
|
|
|
|
+#if defined(V8_OS_OPENBSD)
|
|
+#include <sys/mman.h>
|
|
+#endif
|
|
+
|
|
extern "C" const uint8_t v8_Default_embedded_blob_code_[];
|
|
extern "C" uint32_t v8_Default_embedded_blob_code_size_;
|
|
extern "C" const uint8_t v8_Default_embedded_blob_data_[];
|
|
@@ -5062,6 +5066,13 @@ void Isolate::InitializeDefaultEmbeddedBlob() {
|
|
uint32_t code_size = DefaultEmbeddedBlobCodeSize();
|
|
const uint8_t* data = DefaultEmbeddedBlobData();
|
|
uint32_t data_size = DefaultEmbeddedBlobDataSize();
|
|
+
|
|
+#if defined(V8_OS_OPENBSD) && !defined(V8_TARGET_ARCH_IA32)
|
|
+ if (code_size > 0) {
|
|
+ mprotect(reinterpret_cast<void *>(const_cast<uint8_t *>(code)),
|
|
+ code_size, PROT_READ | PROT_EXEC);
|
|
+ }
|
|
+#endif
|
|
|
|
if (StickyEmbeddedBlobCode() != nullptr) {
|
|
base::MutexGuard guard(current_embedded_blob_refcount_mutex_.Pointer());
|