Home
last modified time | relevance | path

Searched refs:builtin_index (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/snapshot/
Dcode-serializer.cc86 SerializeBuiltin(code_object->builtin_index(), how_to_code, in SerializeObject()
93 if (code_object->builtin_index() == -1) { in SerializeObject()
96 SerializeBuiltin(code_object->builtin_index(), how_to_code, in SerializeObject()
141 void CodeSerializer::SerializeBuiltin(int builtin_index, HowToCode how_to_code, in SerializeBuiltin() argument
146 DCHECK_LT(builtin_index, Builtins::builtin_count); in SerializeBuiltin()
147 DCHECK_LE(0, builtin_index); in SerializeBuiltin()
151 isolate()->builtins()->name(builtin_index)); in SerializeBuiltin()
155 sink_.PutInt(builtin_index, "builtin_index"); in SerializeBuiltin()
Dcode-serializer.h47 void SerializeBuiltin(int builtin_index, HowToCode how_to_code,
/external/v8/src/debug/
Ddebug-evaluate.cc545 int builtin_index = info->code()->builtin_index(); in FunctionHasNoSideEffect() local
546 if (builtin_index >= 0 && builtin_index < Builtins::builtin_count && in FunctionHasNoSideEffect()
547 BuiltinHasNoSideEffect(static_cast<Builtins::Name>(builtin_index))) { in FunctionHasNoSideEffect()
/external/v8/src/wasm/
Dwasm-code-specialization.cc144 code->builtin_index() != Builtins::kIllegal) in ApplyToWholeInstance()
215 old_code->builtin_index() != Builtins::kIllegal) in ApplyToWasmCode()
Dwasm-module.cc185 target->builtin_index() == Builtins::kIllegal) { in CloneOrCompileJSToWasmWrapper()
/external/v8/src/compiler/
Djs-typed-lowering.cc1885 int builtin_index, int arity, CallDescriptor::Flags flags) { in ReduceBuiltin() argument
1906 DCHECK(Builtins::HasCppImplementation(builtin_index)); in ReduceBuiltin()
1916 const bool has_builtin_exit_frame = Builtins::IsCpp(builtin_index); in ReduceBuiltin()
1940 Address entry = Builtins::CppEntryOf(builtin_index); in ReduceBuiltin()
1948 const char* debug_name = Builtins::name(builtin_index); in ReduceBuiltin()
1981 const int builtin_index = shared->construct_stub()->builtin_index(); in ReduceJSConstruct() local
1982 const bool is_builtin = (builtin_index != -1); in ReduceJSConstruct()
1986 if (is_builtin && Builtins::HasCppImplementation(builtin_index) && in ReduceJSConstruct()
1999 ReduceBuiltin(isolate(), jsgraph(), node, builtin_index, arity, flags); in ReduceJSConstruct()
2093 const int builtin_index = shared->code()->builtin_index(); in ReduceJSCall() local
[all …]
Djs-call-reducer.cc517 switch (shared->code()->builtin_index()) { in ReduceJSCall()
/external/v8/src/
Dbootstrapper.cc3913 int builtin_index = Natives::GetDebuggerCount(); in InstallNatives() local
3915 DCHECK_EQ(builtin_index, Natives::GetIndex("prologue")); in InstallNatives()
3916 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false; in InstallNatives()
3917 DCHECK_EQ(builtin_index, Natives::GetIndex("runtime")); in InstallNatives()
3918 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false; in InstallNatives()
3949 while (builtin_index < Natives::GetBuiltinsCount()) { in InstallNatives()
3950 if (!Bootstrapper::CompileBuiltin(isolate(), builtin_index++)) return false; in InstallNatives()
Dlog.cc1507 isolate_->builtins()->name(code_object->GetCode()->builtin_index()); in LogCodeObject()
Dobjects-inl.h5068 int Code::builtin_index() { return READ_INT_FIELD(this, kBuiltinIndexOffset); } in builtin_index() function
5162 switch (builtin_index()) { in is_debug_stub()
Dobjects.h5053 inline int builtin_index();
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1711 int strong_index = 0, all_index = 0, tags_index = 0, builtin_index = 0; in FillReferences() local
1723 builtins->name(builtin_index++)); in FillReferences()