Home | History | Annotate | Download | only in snapshot

Lines Matching full:builtin_index

2383         SerializeBuiltin(code_object->builtin_index(), how_to_code,
2427 void CodeSerializer::SerializeBuiltin(int builtin_index, HowToCode how_to_code,
2432 DCHECK_LT(builtin_index, Builtins::builtin_count);
2433 DCHECK_LE(0, builtin_index);
2437 isolate()->builtins()->name(builtin_index));
2441 sink_->PutInt(builtin_index, "builtin_index");
2477 // actual builtin_index value attached (otherwise it's just garbage).
2479 int builtin_index = ic->builtin_index();
2480 if (builtin_index < Builtins::builtin_count) {
2481 Builtins::Name name = static_cast<Builtins::Name>(builtin_index);
2489 SerializeBuiltin(builtin_index, how_to_code, where_to_point);