Home | History | Annotate | Download | only in src

Lines Matching refs:table

23 // Initial size of each compilation cache table allocated.
52 CompilationCacheTable* table =
54 result = Handle<CompilationCacheTable>(table, isolate());
96 Handle<CompilationCacheTable> table = GetTable(generation);
97 table->Remove(*function_info);
157 Handle<CompilationCacheTable> table = GetTable(generation);
158 Handle<Object> probe = table->Lookup(source, context);
217 Handle<CompilationCacheTable> table = GetFirstTable();
219 CompilationCacheTable::Put(table, source, context, function_info));
229 // Make sure not to leak the table into the surrounding handle
235 Handle<CompilationCacheTable> table = GetTable(generation);
236 result = table->LookupEval(source, context, strict_mode, scope_position);
259 Handle<CompilationCacheTable> table = GetFirstTable();
260 table = CompilationCacheTable::PutEval(table, source, context,
262 SetFirstTable(table);
270 // Make sure not to leak the table into the surrounding handle
276 Handle<CompilationCacheTable> table = GetTable(generation);
277 result = table->LookupRegExp(source, flags);
298 Handle<CompilationCacheTable> table = GetFirstTable();
299 SetFirstTable(CompilationCacheTable::PutRegExp(table, source, flags, data));