Home
last modified time | relevance | path

Searched refs:CompilationCache (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dcompilation-cache.cc27 CompilationCache::CompilationCache(Isolate* isolate) in CompilationCache() function in v8::internal::CompilationCache
288 void CompilationCache::Remove(Handle<SharedFunctionInfo> function_info) { in Remove()
296 MaybeHandle<SharedFunctionInfo> CompilationCache::LookupScript( in LookupScript()
303 InfoCellPair CompilationCache::LookupEval(Handle<String> source, in LookupEval()
333 MaybeHandle<FixedArray> CompilationCache::LookupRegExp(Handle<String> source, in LookupRegExp()
338 void CompilationCache::PutScript(Handle<String> source, in PutScript()
347 void CompilationCache::PutEval(Handle<String> source, in PutEval()
371 void CompilationCache::PutRegExp(Handle<String> source, JSRegExp::Flags flags, in PutRegExp()
376 void CompilationCache::Clear() { in Clear()
382 void CompilationCache::Iterate(RootVisitor* v) { in Iterate()
[all …]
Dcompilation-cache.h152 class V8_EXPORT_PRIVATE CompilationCache {
154 CompilationCache(const CompilationCache&) = delete;
155 CompilationCache& operator=(const CompilationCache&) = delete;
219 explicit CompilationCache(Isolate* isolate);
220 ~CompilationCache() = default;
Dcompiler.cc2321 CompilationCache* compilation_cache = isolate->compilation_cache(); in Compile()
3011 CompilationCache* compilation_cache = isolate->compilation_cache(); in Compile()
3263 CompilationCache* compilation_cache = isolate->compilation_cache(); in Compile()
/third_party/node/deps/v8/src/execution/
Disolate.h102 class CompilationCache; variable
1113 CompilationCache* compilation_cache() { return compilation_cache_; } in compilation_cache()
2092 CompilationCache* compilation_cache_ = nullptr;
Disolate.cc3912 compilation_cache_ = new CompilationCache(this); in ThrowInternal()
/third_party/node/deps/v8/src/regexp/
Dregexp.cc198 CompilationCache* compilation_cache = nullptr; in Compile()