Home
last modified time | relevance | path

Searched refs:IsStableJSArguments (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_function.cpp71 if (arrayObj->IsStableJSArguments(thread)) { in BuildArgumentsListFast()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h883 inline bool JSTaggedValue::IsStableJSArguments(JSThread *thread) const in IsStableJSArguments() function
885 return IsHeapObject() && GetTaggedObject()->GetClass()->IsStableJSArguments() && in IsStableJSArguments()
Djs_tagged_value.h541 bool IsStableJSArguments(JSThread *thread) const;
Djs_hclass.h1524 inline bool IsStableJSArguments() const in IsStableJSArguments() function
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_stubs.cpp919 … Branch(IsStableJSArguments(glue, arrayObj), &taggedIsStableJsArg, &taggedNotStableJsArg); in DECLARE_BUILTINS()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h371 GateRef IsStableJSArguments(GateRef glue, GateRef obj);
Dstub_builder.cpp4888 …Branch(IsStableJSArguments(glue, arrayObj), &targetIsStableJSArguments, &targetNotStableJSArgument… in BuildArgumentsListFastElements()
6446 GateRef StubBuilder::IsStableJSArguments(GateRef glue, GateRef obj) in IsStableJSArguments() function in panda::ecmascript::kungfu::StubBuilder