Revert "[arena] Use malloc for pooled allocations" (#33960)

Reverts grpc/grpc#33927
pull/33964/head
Craig Tiller 1 year ago committed by GitHub
parent b8829239b8
commit daa89145ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/BUILD
  2. 2
      src/core/lib/resource_quota/arena.cc
  3. 14
      src/core/lib/resource_quota/arena.h
  4. 11
      src/core/lib/security/transport/client_auth_filter.cc
  5. 6
      test/core/resource_quota/arena_test.cc

@ -1124,6 +1124,10 @@ grpc_cc_library(
hdrs = [
"lib/resource_quota/arena.h",
],
external_deps = [
"absl/meta:type_traits",
"absl/utility",
],
visibility = [
"@grpc:alt_grpc_base_legacy",
],

@ -121,7 +121,6 @@ void Arena::ManagedNewObject::Link(std::atomic<ManagedNewObject*>* head) {
}
}
#ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
void* Arena::AllocPooled(size_t obj_size, size_t alloc_size,
std::atomic<FreePoolNode*>* head) {
// ABA mitigation:
@ -178,6 +177,5 @@ void Arena::FreePooled(void* p, std::atomic<FreePoolNode*>* head) {
node->next, node, std::memory_order_acq_rel, std::memory_order_relaxed)) {
}
}
#endif
} // namespace grpc_core

@ -30,10 +30,14 @@
#include <stddef.h>
#include <atomic>
#include <iosfwd>
#include <limits>
#include <memory>
#include <new>
#include <utility>
#include "absl/meta/type_traits.h"
#include "absl/utility/utility.h"
#include <grpc/event_engine/memory_allocator.h>
#include "src/core/lib/gpr/alloc.h"
@ -41,14 +45,13 @@
#include "src/core/lib/promise/context.h"
#include "src/core/lib/resource_quota/memory_quota.h"
#define GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
// #define GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
// #define GRPC_ARENA_TRACE_POOLED_ALLOCATIONS
namespace grpc_core {
namespace arena_detail {
#ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
struct PoolAndSize {
size_t alloc_size;
size_t pool_index;
@ -110,19 +113,16 @@ PoolAndSize ChoosePoolForAllocationSize(
size_t n, absl::integer_sequence<size_t, kBucketSizes...>) {
return ChoosePoolForAllocationSizeImpl<0, kBucketSizes...>::Fn(n);
}
#endif
} // namespace arena_detail
class Arena {
#ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
// Selected pool sizes.
// How to tune: see tools/codegen/core/optimize_arena_pool_sizes.py
using PoolSizes = absl::integer_sequence<size_t, 80, 304, 528, 1024>;
struct FreePoolNode {
FreePoolNode* next;
};
#endif
public:
// Create an arena, with \a initial_size bytes in the first allocated buffer.
@ -372,11 +372,9 @@ class Arena {
void* AllocZone(size_t size);
#ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
void* AllocPooled(size_t obj_size, size_t alloc_size,
std::atomic<FreePoolNode*>* head);
static void FreePooled(void* p, std::atomic<FreePoolNode*>* head);
#endif
void TracePoolAlloc(size_t size, void* ptr) {
(void)size;

@ -196,13 +196,10 @@ ArenaPromise<ServerMetadataHandle> ClientAuthFilter::MakeCallPromise(
if (host == nullptr) {
return next_promise_factory(std::move(call_args));
}
return TrySeq(
args_.security_connector->CheckCallHost(host->as_string_view(),
args_.auth_context.get()),
[this, call_args = std::move(call_args)]() mutable {
return GetCallCredsMetadata(std::move(call_args));
},
next_promise_factory);
return TrySeq(args_.security_connector->CheckCallHost(
host->as_string_view(), args_.auth_context.get()),
GetCallCredsMetadata(std::move(call_args)),
next_promise_factory);
}
absl::StatusOr<ClientAuthFilter> ClientAuthFilter::Create(

@ -191,7 +191,6 @@ bool IsScribbled(Int* ints, int n, int offset) {
return true;
}
#ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
TEST_F(ArenaTest, PooledObjectsArePooled) {
struct TestObj {
char a[100];
@ -209,7 +208,6 @@ TEST_F(ArenaTest, PooledObjectsArePooled) {
Scribble(obj->a, 100, 2);
EXPECT_TRUE(IsScribbled(obj->a, 100, 2));
}
#endif
TEST_F(ArenaTest, CreateManyObjects) {
struct TestObj {
@ -240,11 +238,7 @@ TEST_F(ArenaTest, CreateManyObjectsWithDestructors) {
TEST_F(ArenaTest, CreatePoolArray) {
auto arena = MakeScopedArena(1024, &memory_allocator_);
auto p = arena->MakePooledArray<int>(1024);
#ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
EXPECT_FALSE(p.get_deleter().has_freelist());
#else
EXPECT_TRUE(p.get_deleter().has_freelist());
#endif
p = arena->MakePooledArray<int>(5);
EXPECT_TRUE(p.get_deleter().has_freelist());
Scribble(p.get(), 5, 1);

Loading…
Cancel
Save