Home | History | Annotate | Download | only in src

Lines Matching refs:table

19 // Initial size of each compilation cache table allocated.
48 CompilationCacheTable* table =
50 result = Handle<CompilationCacheTable>(table, isolate());
100 Handle<CompilationCacheTable> table = GetTable(generation);
101 table->Remove(*function_info);
155 Handle<CompilationCacheTable> table = GetTable(generation);
156 Handle<Object> probe = table->Lookup(source, context, language_mode);
196 Handle<CompilationCacheTable> table = GetFirstTable();
197 SetFirstTable(CompilationCacheTable::Put(table, source, context,
206 // Make sure not to leak the table into the surrounding handle
212 Handle<CompilationCacheTable> table = GetTable(generation);
214 table->LookupEval(source, outer_info, language_mode, scope_position);
237 Handle<CompilationCacheTable> table = GetFirstTable();
238 table = CompilationCacheTable::PutEval(table, source, outer_info,
240 SetFirstTable(table);
248 // Make sure not to leak the table into the surrounding handle
254 Handle<CompilationCacheTable> table = GetTable(generation);
255 result = table->LookupRegExp(source, flags);
276 Handle<CompilationCacheTable> table = GetFirstTable();
277 SetFirstTable(CompilationCacheTable::PutRegExp(table, source, flags, data));