Lines Matching defs:generation
41 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) {
42 DCHECK_LT(generation, generations());
44 if (tables_[generation].IsUndefined(isolate())) {
46 tables_[generation] = *result;
49 CompilationCacheTable::cast(tables_[generation]);
64 // Set the first generation as unborn.
94 // Probe the script generation tables. Make sure not to leak handles
98 for (int generation = 0; generation < generations(); generation++) {
99 Handle<CompilationCacheTable> table = GetTable(generation);
165 // be cached in the same script generation. Currently the first use
173 // Probe the script generation tables. Make sure not to leak handles
177 const int generation = 0;
179 Handle<CompilationCacheTable> table = GetTable(generation);
227 const int generation = 0;
229 Handle<CompilationCacheTable> table = GetTable(generation);
261 int generation;
262 for (generation = 0; generation < generations(); generation++) {
263 Handle<CompilationCacheTable> table = GetTable(generation);
269 if (generation != 0) {