[heap] V8_OS_MACOSX -> V8_OS_MACOS

This renaming was missed in
https://chromium-review.googlesource.com/c/v8/v8/+/3468577, because the
code adding these #ifdef blocks landed in-between the renaming change
being uploaded and landed.

Bug: chromium:1298417
Change-Id: I8c2e951099dafcce7e19a59e40e36f308e2ed867
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3498349
Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
Commit-Queue: Benoit Lize <lizeb@chromium.org>
Cr-Commit-Position: refs/heads/main@{#79345}
This commit is contained in:
Benoît Lizé 2022-03-03 11:09:58 +01:00 committed by V8 LUCI CQ
parent 31abbcfb4d
commit bceaab28a2
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ constexpr size_t kPageSize = 1 << kPageSizeLog2;
constexpr size_t kPageOffsetMask = kPageSize - 1;
constexpr size_t kPageBaseMask = ~kPageOffsetMask;
#if defined(V8_TARGET_ARCH_ARM64) && defined(V8_OS_MACOSX)
#if defined(V8_TARGET_ARCH_ARM64) && defined(V8_OS_MACOS)
// No guard pages on ARM64 macOS. This target has 16 kiB pages, meaning that
// the guard pages do not protect anything, since there is no inaccessible
// region surrounding the allocation.

View File

@ -116,7 +116,7 @@ TEST(PageMemoryRegionTest, LargePageMemoryRegion) {
}
// See the comment in globals.h when setting |kGuardPageSize| for details.
#if !(defined(V8_TARGET_ARCH_ARM64) && defined(V8_OS_MACOSX))
#if !(defined(V8_TARGET_ARCH_ARM64) && defined(V8_OS_MACOS))
TEST(PageMemoryRegionTest, PlatformUsesGuardPages) {
// This tests that the testing allocator actually uses protected guard
// regions.
@ -134,7 +134,7 @@ TEST(PageMemoryRegionTest, PlatformUsesGuardPages) {
EXPECT_TRUE(SupportsCommittingGuardPages(allocator));
#endif
}
#endif // !(defined(V8_TARGET_ARCH_ARM64) && defined(V8_OS_MACOSX))
#endif // !(defined(V8_TARGET_ARCH_ARM64) && defined(V8_OS_MACOS))
namespace {