Searched defs:builtin_index (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/snapshot/
H A Dcode-serializer.cc72 SerializeBuiltin(code_object->builtin_index(), how_to_code,
114 void CodeSerializer::SerializeBuiltin(int builtin_index, HowToCode how_to_code, argument
119 DCHECK_LT(builtin_index, Builtins::builtin_count);
120 DCHECK_LE(0, builtin_index);
124 isolate()->builtins()->name(builtin_index));
128 sink_.PutInt(builtin_index, "builtin_index");
/external/v8/src/
H A Dbootstrapper.cc2909 int builtin_index = Natives::GetDebuggerCount(); local
2911 DCHECK_EQ(builtin_index, Natives::GetIndex("prologue"));
2912 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
2913 DCHECK_EQ(builtin_index, Natives::GetIndex("runtime"));
2914 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
2945 while (builtin_index < Natives::GetBuiltinsCount()) {
2946 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc1711 int strong_index = 0, all_index = 0, tags_index = 0, builtin_index = 0; local
1723 builtins->name(builtin_index++));

Completed in 73 milliseconds