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

/external/v8/src/debug/
H A Ddebug-evaluate.cc545 int builtin_index = info->code()->builtin_index(); local
546 if (builtin_index >= 0 && builtin_index < Builtins::builtin_count &&
547 BuiltinHasNoSideEffect(static_cast<Builtins::Name>(builtin_index))) {
/external/v8/src/snapshot/
H A Dcode-serializer.cc86 SerializeBuiltin(code_object->builtin_index(), how_to_code,
93 if (code_object->builtin_index() == -1) {
96 SerializeBuiltin(code_object->builtin_index(), how_to_code,
141 void CodeSerializer::SerializeBuiltin(int builtin_index, HowToCode how_to_code, argument
146 DCHECK_LT(builtin_index, Builtins::builtin_count);
147 DCHECK_LE(0, builtin_index);
151 isolate()->builtins()->name(builtin_index));
155 sink_.PutInt(builtin_index, "builtin_index");
/external/v8/src/compiler/
H A Djs-typed-lowering.cc1885 int builtin_index, int arity, CallDescriptor::Flags flags) {
1906 DCHECK(Builtins::HasCppImplementation(builtin_index));
1916 const bool has_builtin_exit_frame = Builtins::IsCpp(builtin_index);
1940 Address entry = Builtins::CppEntryOf(builtin_index);
1948 const char* debug_name = Builtins::name(builtin_index);
1981 const int builtin_index = shared->construct_stub()->builtin_index(); local
1982 const bool is_builtin = (builtin_index != -1);
1986 if (is_builtin && Builtins::HasCppImplementation(builtin_index) &&
1999 ReduceBuiltin(isolate(), jsgraph(), node, builtin_index, arit local
1884 ReduceBuiltin(Isolate* isolate, JSGraph* jsgraph, Node* node, int builtin_index, int arity, CallDescriptor::Flags flags) argument
2093 const int builtin_index = shared->code()->builtin_index(); local
2143 ReduceBuiltin(isolate(), jsgraph(), node, builtin_index, arity, flags); local
[all...]
/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++));
/external/v8/src/
H A Dbootstrapper.cc3913 int builtin_index = Natives::GetDebuggerCount(); local
3915 DCHECK_EQ(builtin_index, Natives::GetIndex("prologue"));
3916 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
3917 DCHECK_EQ(builtin_index, Natives::GetIndex("runtime"));
3918 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;
3949 while (builtin_index < Natives::GetBuiltinsCount()) {
3950 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false;

Completed in 314 milliseconds