blob: 1fc89be9805228ef5c5c08affaf7a649e0b50430 [file]
/*
* Copyright (C) 2025 The Android Open Source Project
*
* 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
*
* http://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.
*/
#ifndef SRC_PROTOVM_ALLOCATOR_H_
#define SRC_PROTOVM_ALLOCATOR_H_
#include <algorithm>
#include <cstdlib>
#include "perfetto/protozero/field.h"
#include "src/protovm/error_handling.h"
#include "src/protovm/node.h"
#include "src/protovm/slab_allocator.h"
namespace perfetto {
namespace protovm {
// A centralized allocator to manage all the memory requests from RwProto. It
// enforces a strict memory usage limit, thus allowing fine-grained control of
// the overall proto VM's memory footprint.
class Allocator {
public:
static constexpr size_t kNodeSize = std::max(sizeof(Node), sizeof(MapNode));
static constexpr size_t kNodeAlign =
std::max(alignof(Node), alignof(MapNode));
explicit Allocator(size_t memory_limit_bytes);
template <class T, class... Args>
StatusOr<OwnedPtr<Node>> CreateNode(Args&&... args) {
auto p = Allocate();
PROTOVM_RETURN_IF_NOT_OK(p);
// 1. Construct node's inner value T passing args (struct aggregate
// initialization)
// 2. Construct node passing T (struct aggregate initialization)
new (*p) Node{T{std::forward<Args>(args)...}};
return OwnedPtr<Node>(static_cast<Node*>(*p));
}
StatusOr<OwnedPtr<MapNode>> CreateMapNode(uint64_t key, OwnedPtr<Node> value);
StatusOr<Node::Bytes> AllocateAndCopyBytes(protozero::ConstBytes data);
// Deeply delete a node and all the referenced data. E.g. if the node holds a
// Node::Message, recursively delete the message fields and finally delete the
// node.
void Delete(Node* node);
void Delete(MapNode* node);
// Deeply delete a node's referenced data, but do not delete the node itself.
// E.g. if the node holds a Node::Message, recursively delete the message
// fields.
void DeleteReferencedData(Node* node);
// Recursively delete a message's fields, but do not delete the message
// itself.
void DeleteReferencedData(Node::Message* message);
// Delete the blob referenced by the Bytes struct, but do not delete the Bytes
// struct itself.
void DeleteReferencedData(Node::Bytes* bytes);
size_t GetMemoryUsageBytes() const { return used_memory_bytes_; }
private:
void DeallocateBytes(OwnedPtr<void> p, size_t size);
StatusOr<void*> Allocate();
size_t memory_limit_bytes_{0};
size_t used_memory_bytes_{0};
SlabAllocator<kNodeSize, kNodeAlign> slab_allocator_;
};
} // namespace protovm
} // namespace perfetto
#endif // SRC_PROTOVM_ALLOCATOR_H_