From f437a4b099315ea7ae92fb8016581f3c172cad93 Mon Sep 17 00:00:00 2001 From: klzgrad Date: Sat, 5 Aug 2023 23:35:21 +0800 Subject: [PATCH] allocator: Disable PartitionAlloc memory tagging --- src/base/allocator/partition_allocator/partition_alloc.gni | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/base/allocator/partition_allocator/partition_alloc.gni b/src/base/allocator/partition_allocator/partition_alloc.gni index e491604e44..2dd9411170 100644 --- a/src/base/allocator/partition_allocator/partition_alloc.gni +++ b/src/base/allocator/partition_allocator/partition_alloc.gni @@ -33,8 +33,13 @@ if (is_nacl) { # Increases the size of the empty slot span ring. use_large_empty_slot_span_ring = is_mac +# Disables for Android ARM64 because it actually requires API 31+. +# See partition_alloc/tagging.cc: +# mallopt can be loaded after API 26. +# mallopt M_BIONIC_SET_HEAP_TAGGING_LEVEL can be called after API 31. +# Disables for OpenWrt Musl which lacks the required ifunc support. has_memory_tagging = - current_cpu == "arm64" && is_clang && !is_asan && (is_linux || is_android) + current_cpu == "arm64" && is_clang && !is_asan && is_linux && current_os != "openwrt" declare_args() { # Causes all the allocations to be routed via allocator_shim.cc. Usually,