perf: optimize data structures in context_bridge::ObjectCache (#27639)
* Use std::forward_list instead of base::LinkedList for better perf, more consistent memory management. Better than std::list because we don't need the double-linked-list behavior of std::list * Use std::unordered_map instead of std::map for the v8 hash table
This commit is contained in:
parent
1bbfa934f0
commit
09870d97b5
2 changed files with 5 additions and 28 deletions
|
@ -14,22 +14,8 @@ namespace api {
|
||||||
|
|
||||||
namespace context_bridge {
|
namespace context_bridge {
|
||||||
|
|
||||||
ObjectCachePairNode::ObjectCachePairNode(ObjectCachePair&& pair) {
|
|
||||||
this->pair = std::move(pair);
|
|
||||||
}
|
|
||||||
|
|
||||||
ObjectCachePairNode::~ObjectCachePairNode() = default;
|
|
||||||
|
|
||||||
ObjectCache::ObjectCache() {}
|
ObjectCache::ObjectCache() {}
|
||||||
ObjectCache::~ObjectCache() {
|
ObjectCache::~ObjectCache() = default;
|
||||||
for (const auto& pair : proxy_map_) {
|
|
||||||
while (!pair.second.empty()) {
|
|
||||||
ObjectCachePairNode* node = pair.second.head()->value();
|
|
||||||
node->RemoveFromList();
|
|
||||||
delete node;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ObjectCache::CacheProxiedObject(v8::Local<v8::Value> from,
|
void ObjectCache::CacheProxiedObject(v8::Local<v8::Value> from,
|
||||||
v8::Local<v8::Value> proxy_value) {
|
v8::Local<v8::Value> proxy_value) {
|
||||||
|
@ -37,8 +23,7 @@ void ObjectCache::CacheProxiedObject(v8::Local<v8::Value> from,
|
||||||
auto obj = v8::Local<v8::Object>::Cast(from);
|
auto obj = v8::Local<v8::Object>::Cast(from);
|
||||||
int hash = obj->GetIdentityHash();
|
int hash = obj->GetIdentityHash();
|
||||||
|
|
||||||
auto* node = new ObjectCachePairNode(std::make_pair(from, proxy_value));
|
proxy_map_[hash].push_front(std::make_pair(from, proxy_value));
|
||||||
proxy_map_[hash].Append(node);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,8 +39,7 @@ v8::MaybeLocal<v8::Value> ObjectCache::GetCachedProxiedObject(
|
||||||
return v8::MaybeLocal<v8::Value>();
|
return v8::MaybeLocal<v8::Value>();
|
||||||
|
|
||||||
auto& list = iter->second;
|
auto& list = iter->second;
|
||||||
for (auto* node = list.head(); node != list.end(); node = node->next()) {
|
for (const auto& pair : list) {
|
||||||
auto& pair = node->value()->pair;
|
|
||||||
auto from_cmp = pair.first;
|
auto from_cmp = pair.first;
|
||||||
if (from_cmp == from) {
|
if (from_cmp == from) {
|
||||||
if (pair.second.IsEmpty())
|
if (pair.second.IsEmpty())
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#ifndef SHELL_RENDERER_API_CONTEXT_BRIDGE_OBJECT_CACHE_H_
|
#ifndef SHELL_RENDERER_API_CONTEXT_BRIDGE_OBJECT_CACHE_H_
|
||||||
#define SHELL_RENDERER_API_CONTEXT_BRIDGE_OBJECT_CACHE_H_
|
#define SHELL_RENDERER_API_CONTEXT_BRIDGE_OBJECT_CACHE_H_
|
||||||
|
|
||||||
#include <map>
|
#include <unordered_map>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
#include "base/containers/linked_list.h"
|
#include "base/containers/linked_list.h"
|
||||||
|
@ -22,13 +22,6 @@ namespace context_bridge {
|
||||||
|
|
||||||
using ObjectCachePair = std::pair<v8::Local<v8::Value>, v8::Local<v8::Value>>;
|
using ObjectCachePair = std::pair<v8::Local<v8::Value>, v8::Local<v8::Value>>;
|
||||||
|
|
||||||
struct ObjectCachePairNode : public base::LinkNode<ObjectCachePairNode> {
|
|
||||||
explicit ObjectCachePairNode(ObjectCachePair&& pair);
|
|
||||||
~ObjectCachePairNode();
|
|
||||||
|
|
||||||
ObjectCachePair pair;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ObjectCache final {
|
class ObjectCache final {
|
||||||
public:
|
public:
|
||||||
ObjectCache();
|
ObjectCache();
|
||||||
|
@ -41,7 +34,7 @@ class ObjectCache final {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// object_identity ==> [from_value, proxy_value]
|
// object_identity ==> [from_value, proxy_value]
|
||||||
std::map<int, base::LinkedList<ObjectCachePairNode>> proxy_map_;
|
std::unordered_map<int, std::forward_list<ObjectCachePair>> proxy_map_;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace context_bridge
|
} // namespace context_bridge
|
||||||
|
|
Loading…
Add table
Reference in a new issue