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

/external/v8/src/snapshot/
H A Dcode-serializer.cc84 SerializeBuiltin(code_object->builtin_index(), how_to_code,
128 void CodeSerializer::SerializeBuiltin(int builtin_index, HowToCode how_to_code, argument
133 DCHECK_LT(builtin_index, Builtins::builtin_count);
134 DCHECK_LE(0, builtin_index);
138 isolate()->builtins()->name(builtin_index));
142 sink_.PutInt(builtin_index, "builtin_index");
/external/v8/src/compiler/
H A Djs-typed-lowering.cc1748 int builtin_index, int arity, CallDescriptor::Flags flags) {
1769 DCHECK(Builtins::HasCppImplementation(builtin_index));
1779 const bool has_builtin_exit_frame = Builtins::IsCpp(builtin_index);
1803 Address entry = Builtins::CppEntryOf(builtin_index);
1811 const char* debug_name = Builtins::name(builtin_index);
1844 const int builtin_index = shared->construct_stub()->builtin_index(); local
1845 const bool is_builtin = (builtin_index != -1);
1849 if (is_builtin && Builtins::HasCppImplementation(builtin_index) &&
1862 ReduceBuiltin(isolate(), jsgraph(), node, builtin_index, arit local
1747 ReduceBuiltin(Isolate* isolate, JSGraph* jsgraph, Node* node, int builtin_index, int arity, CallDescriptor::Flags flags) argument
1929 const int builtin_index = shared->code()->builtin_index(); local
1979 ReduceBuiltin(isolate(), jsgraph(), node, builtin_index, arity, flags); local
[all...]
/external/v8/src/
H A Dbootstrapper.cc3433 int builtin_index = Natives::GetDebuggerCount(); local
3435 DCHECK_EQ(builtin_index, Natives::GetIndex("prologue"));
3436 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
3437 DCHECK_EQ(builtin_index, Natives::GetIndex("runtime"));
3438 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
3469 while (builtin_index < Natives::GetBuiltinsCount()) {
3470 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc1710 int strong_index = 0, all_index = 0, tags_index = 0, builtin_index = 0; local
1722 builtins->name(builtin_index++));

Completed in 164 milliseconds