Home
last modified time | relevance | path

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

/external/v8/src/
Dcompilation-cache.h22 class CompilationSubCache {
24 CompilationSubCache(Isolate* isolate, int generations) in CompilationSubCache() function
30 ~CompilationSubCache() { DeleteArray(tables_); } in ~CompilationSubCache()
72 DISALLOW_IMPLICIT_CONSTRUCTORS(CompilationSubCache);
77 class CompilationCacheScript : public CompilationSubCache {
111 class CompilationCacheEval: public CompilationSubCache {
114 : CompilationSubCache(isolate, 1) {} in CompilationCacheEval()
131 class CompilationCacheRegExp: public CompilationSubCache {
134 : CompilationSubCache(isolate, generations) { } in CompilationCacheRegExp()
232 CompilationSubCache* subcaches_[kSubCacheCount];
Dcompilation-cache.cc29 CompilationSubCache* subcaches[kSubCacheCount] = in CompilationCache()
40 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) { in GetTable()
55 void CompilationSubCache::Age() { in Age()
74 void CompilationSubCache::IterateFunctions(ObjectVisitor* v) { in IterateFunctions()
84 void CompilationSubCache::Iterate(ObjectVisitor* v) { in Iterate()
89 void CompilationSubCache::Clear() { in Clear()
94 void CompilationSubCache::Remove(Handle<SharedFunctionInfo> function_info) { in Remove()
106 : CompilationSubCache(isolate, 1) {} in CompilationCacheScript()