aboutsummaryrefslogtreecommitdiff
path: root/pw_allocator/allocator_metric_proxy.cc
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-03-12 23:07:32 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-03-12 23:07:32 +0000
commit47562fa92998f8f4289ae9a8048349067754d52e (patch)
treec1643be8ab17fc607cea748a8bb1d621a5964873 /pw_allocator/allocator_metric_proxy.cc
parenteeec55b65fe2c3c7647bb70ea44b3c839eb1267c (diff)
parent646563934a3e2ee26f50171f94d95173a1662e2c (diff)
downloadpigweed-47562fa92998f8f4289ae9a8048349067754d52e.tar.gz
Snap for 11566117 from 646563934a3e2ee26f50171f94d95173a1662e2c to sdk-releaseplatform-tools-35.0.1sdk-release
Change-Id: Iec629b181a2c6905754a4c340e334884e13fd3b4
Diffstat (limited to 'pw_allocator/allocator_metric_proxy.cc')
-rw-r--r--pw_allocator/allocator_metric_proxy.cc78
1 files changed, 78 insertions, 0 deletions
diff --git a/pw_allocator/allocator_metric_proxy.cc b/pw_allocator/allocator_metric_proxy.cc
new file mode 100644
index 000000000..10ca68d3a
--- /dev/null
+++ b/pw_allocator/allocator_metric_proxy.cc
@@ -0,0 +1,78 @@
+// Copyright 2023 The Pigweed Authors
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy of
+// the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+
+#include "pw_allocator/allocator_metric_proxy.h"
+
+#include <cstddef>
+
+#include "pw_assert/check.h"
+#include "pw_metric/metric.h"
+
+namespace pw::allocator {
+
+void AllocatorMetricProxy::Initialize(Allocator& allocator) {
+ PW_DCHECK(allocator_ == nullptr);
+ allocator_ = &allocator;
+ // Manually add the metrics to the metric group to allow the constructor to
+ // remain constexpr.
+ memusage_.Add(used_);
+ memusage_.Add(peak_);
+ memusage_.Add(count_);
+}
+
+Status AllocatorMetricProxy::DoQuery(const void* ptr, Layout layout) const {
+ PW_DCHECK_NOTNULL(allocator_);
+ return allocator_->Query(ptr, layout);
+}
+
+void* AllocatorMetricProxy::DoAllocate(Layout layout) {
+ PW_DCHECK_NOTNULL(allocator_);
+ void* ptr = allocator_->Allocate(layout);
+ if (ptr == nullptr) {
+ return nullptr;
+ }
+ used_.Increment(layout.size());
+ if (used_.value() > peak_.value()) {
+ peak_.Set(used_.value());
+ }
+ count_.Increment();
+ return ptr;
+}
+
+void AllocatorMetricProxy::DoDeallocate(void* ptr, Layout layout) {
+ PW_DCHECK_NOTNULL(allocator_);
+ allocator_->Deallocate(ptr, layout);
+ if (ptr == nullptr) {
+ return;
+ }
+ PW_DCHECK_UINT_GE(used_.value(), layout.size());
+ PW_DCHECK_UINT_NE(count_.value(), 0);
+ used_.Set(used_.value() - layout.size());
+ count_.Set(count_.value() - 1);
+}
+
+bool AllocatorMetricProxy::DoResize(void* ptr, Layout layout, size_t new_size) {
+ PW_DCHECK_NOTNULL(allocator_);
+ if (!allocator_->Resize(ptr, layout, new_size)) {
+ return false;
+ }
+ PW_DCHECK_UINT_GE(used_.value(), layout.size());
+ used_.Set(used_.value() - layout.size() + new_size);
+ if (used_.value() > peak_.value()) {
+ peak_.Set(used_.value());
+ }
+ return true;
+}
+
+} // namespace pw::allocator