perf: use v8::Local<v8::Object> as the key in ObjectCache (#43519)

* perf: use v8::Object* as direct keys instead of using hash + a linked list

* refactor: use v8::Local<v8::Object> as the key
This commit is contained in:
Charles Kerr 2024-09-04 22:53:06 -05:00 committed by GitHub
parent 0467790aee
commit 2d868ecb8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 34 deletions

View file

@ -5,19 +5,18 @@
#ifndef ELECTRON_SHELL_RENDERER_API_CONTEXT_BRIDGE_OBJECT_CACHE_H_
#define ELECTRON_SHELL_RENDERER_API_CONTEXT_BRIDGE_OBJECT_CACHE_H_
#include <forward_list>
#include <unordered_map>
#include <utility>
#include "content/public/renderer/render_frame.h"
#include "content/public/renderer/render_frame_observer.h"
#include "shell/renderer/electron_render_frame_observer.h"
#include "third_party/blink/public/web/web_local_frame.h"
#include "v8/include/v8-local-handle.h"
#include "v8/include/v8-object.h"
namespace electron::api::context_bridge {
using ObjectCachePair = std::pair<v8::Local<v8::Value>, v8::Local<v8::Value>>;
/**
* NB: This is designed for context_bridge. Beware using it elsewhere!
* Since it's a v8::Local-to-v8::Local cache, be careful to destroy it
* before destroying the HandleScope that keeps the locals alive.
*/
class ObjectCache final {
public:
ObjectCache();
@ -29,8 +28,15 @@ class ObjectCache final {
v8::Local<v8::Value> from) const;
private:
// object_identity ==> [from_value, proxy_value]
std::unordered_map<int, std::forward_list<ObjectCachePair>> proxy_map_;
struct Hash {
std::size_t operator()(const v8::Local<v8::Object>& obj) const {
return obj->GetIdentityHash();
}
};
// from_object ==> proxy_value
std::unordered_map<v8::Local<v8::Object>, v8::Local<v8::Value>, Hash>
proxy_map_;
};
} // namespace electron::api::context_bridge