File tree 2 files changed +4
-4
lines changed
deps/v8/src/base/platform
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 29
29
30
30
# Reset this number to 0 on major V8 upgrades.
31
31
# Increment by one for each non-official patch applied to deps/v8.
32
- 'v8_embedder_string' : '-node.28 ' ,
32
+ 'v8_embedder_string' : '-node.29 ' ,
33
33
34
34
# Enable disassembler for `--print-code` v8 options
35
35
'v8_enable_disassembler' : 1 ,
Original file line number Diff line number Diff line change @@ -246,11 +246,11 @@ void* OS::GetRandomMmapAddr() {
246
246
// Use extra address space to isolate the mmap regions.
247
247
raw_addr += uint64_t {0x400000000000 };
248
248
#elif V8_TARGET_BIG_ENDIAN
249
- // Big-endian Linux: 44 bits of virtual addressing.
249
+ // Big-endian Linux: 42 bits of virtual addressing.
250
250
raw_addr &= uint64_t {0x03FFFFFFF000 };
251
251
#else
252
- // Little-endian Linux: 48 bits of virtual addressing.
253
- raw_addr &= uint64_t {0x3FFFFFFFF000 };
252
+ // Little-endian Linux: 46 bits of virtual addressing.
253
+ raw_addr &= uint64_t {0x3FFFFFFF0000 };
254
254
#endif
255
255
#elif V8_TARGET_ARCH_MIPS64
256
256
// We allocate code in 256 MB aligned segments because of optimizations using
You can’t perform that action at this time.
0 commit comments