Home | History | Annotate | Download | only in src

Lines Matching refs:table

19 // Initial size of each compilation cache table allocated.
47 CompilationCacheTable* table =
49 result = Handle<CompilationCacheTable>(table, isolate());
99 Handle<CompilationCacheTable> table = GetTable(generation);
100 table->Remove(*function_info);
151 Handle<CompilationCacheTable> table = GetTable(generation);
152 InfoVectorPair probe = table->LookupScript(source, context, language_mode);
190 Handle<CompilationCacheTable> table = GetFirstTable();
192 table, source, context, language_mode, function_info, literals));
199 // Make sure not to leak the table into the surrounding handle
205 Handle<CompilationCacheTable> table = GetTable(generation);
206 result = table->LookupEval(source, outer_info, native_context, language_mode,
222 Handle<CompilationCacheTable> table = GetFirstTable();
223 table =
224 CompilationCacheTable::PutEval(table, source, outer_info, function_info,
226 SetFirstTable(table);
234 // Make sure not to leak the table into the surrounding handle
240 Handle<CompilationCacheTable> table = GetTable(generation);
241 result = table->LookupRegExp(source, flags);
262 Handle<CompilationCacheTable> table = GetFirstTable();
263 SetFirstTable(CompilationCacheTable::PutRegExp(table, source, flags, data));