Home
last modified time | relevance | path

Searched refs:IsJSObjectType (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_collection_stub_builder.cpp31 GateRef isJsCollectionObj = IsJSObjectType(thisValue_, jsType); in CheckCollectionObj()
Dbuiltins_object_stub_builder.cpp210 BRANCH(IsJSObjectType(thisValue_, JSType::JS_OBJECT), &objectTag, slowPath); in ToString()
582 BRANCH(IsJSObjectType(source, JSType::JS_OBJECT), &fastAssign, &slowAssign); in Assign()
604 BRANCH(IsJSObjectType(target, JSType::JS_OBJECT), &jsObject, slowPath); in Assign()
Dbuiltins_typedarray_stub_builder.cpp1669 BRANCH(LogicOrBuilder(env).Or(IsJSObjectType(buffer, JSType::JS_ARRAY_BUFFER)) in SubArray()
1670 .Or(IsJSObjectType(buffer, JSType::JS_SHARED_ARRAY_BUFFER)).Done(), in SubArray()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h467 GateRef IsJSObjectType(GateRef obj, JSType jsType);
Dstub_builder-inl.h1587 inline GateRef StubBuilder::IsJSObjectType(GateRef obj, JSType jsType) in IsJSObjectType() function