Home
last modified time | relevance | path

Searched refs:CompilationSubCache (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/codegen/
Dcompilation-cache.h25 class CompilationSubCache {
27 CompilationSubCache(Isolate* isolate, int generations) in CompilationSubCache() function
68 static void AgeByGeneration(CompilationSubCache* c);
69 static void AgeCustom(CompilationSubCache* c);
76 DISALLOW_IMPLICIT_CONSTRUCTORS(CompilationSubCache);
80 class CompilationCacheScript : public CompilationSubCache {
117 class CompilationCacheEval : public CompilationSubCache {
120 : CompilationSubCache(isolate, 1) {} in CompilationCacheEval()
139 class CompilationCacheRegExp : public CompilationSubCache {
142 : CompilationSubCache(isolate, generations) {} in CompilationCacheRegExp()
[all …]
Dcompilation-cache.cc34 CompilationSubCache* subcaches[kSubCacheCount] = { in CompilationCache()
41 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) { in GetTable()
56 void CompilationSubCache::AgeByGeneration(CompilationSubCache* c) { in AgeByGeneration()
69 void CompilationSubCache::AgeCustom(CompilationSubCache* c) { in AgeCustom()
87 void CompilationSubCache::Iterate(RootVisitor* v) { in Iterate()
93 void CompilationSubCache::Clear() { in Clear()
99 void CompilationSubCache::Remove(Handle<SharedFunctionInfo> function_info) { in Remove()
112 : CompilationSubCache(isolate, 1) {} in CompilationCacheScript()