Searched refs:IsJsProxy (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | containers_stub_builder.cpp | 51 BRANCH(IsJsProxy(*thisObj), &objIsJSProxy, &objNotJSProxy);
in ContainersCommonFuncCall() 174 BRANCH(IsJsProxy(*thisObj), &objIsJSProxy, &objNotJSProxy);
in QueueCommonFuncCall() 283 BRANCH(IsJsProxy(*thisObj), &objIsJSProxy, &objNotJSProxy);
in DequeCommonFuncCall() 394 BRANCH(IsJsProxy(*thisObj), &objIsJSProxy, &objNotJSProxy);
in ContainersLightWeightCall() 509 BRANCH(IsJsProxy(*thisObj), &objIsJSProxy, &objNotJSProxy);
in ContainersHashCall() 643 BRANCH(IsJsProxy(*thisObj), &objIsJSProxy, &objNotJSProxy);
in ContainersLinkedListCall()
|
H A D | builtins_object_stub_builder.cpp | 1298 BRANCH(IsJsProxy(obj), slowPath, ¬JsProxy);
in GetPrototypeOf() 1343 GateRef isSpecialobj = LogicOrBuilder(env).Or(IsJsProxy(obj)).Or(TaggedIsSharedObj(obj))
in SetPrototypeOf() 1446 BRANCH(IsJsProxy(*tempProto), &loopExit, &protoNotProxy);
in ObjectSetPrototype() 2135 BRANCH(IsJsProxy(obj), slowPath, &isNotJsProxy);
in TestIntegrityLevel()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | hcr_circuit_builder.h | 101 GateRef CircuitBuilder::IsJsProxy(GateRef obj) in IsJsProxy() function in panda::ecmascript::kungfu::CircuitBuilder
|
H A D | call_stub_builder.cpp | 215 BRANCH(IsJsProxy(func_), &methodNotAot, &checkAot);
in JSCallJSFunction()
|
H A D | circuit_builder.cpp | 1260 BRANCH_CIR2(IsJsProxy(object), &objectIsJsProxy, &objectNotIsJsProxy); in GetPrototype()
|
H A D | circuit_builder.h | 481 inline GateRef IsJsProxy(GateRef obj);
|
H A D | stub_builder.h | 419 GateRef IsJsProxy(GateRef obj);
|
H A D | stub_builder-inl.h | 1453 inline GateRef StubBuilder::IsJsProxy(GateRef obj) in IsJsProxy() function in panda::ecmascript::kungfu::StubBuilder
|
H A D | typed_hcr_lowering.cpp | 2932 BRANCH_CIR(builder_.IsJsProxy(*object), &objectIsJsProxy, &objectNotIsJsProxy); in LowerOrdinaryHasInstance()
|
H A D | stub_builder.cpp | 8075 result = LogicOrBuilder(env).Or(IsJSGlobalObject(obj)).Or(IsJsProxy(obj)).Or(IsSpecialKeysObject(obj)).Done(); in IsSlowKeysObject()
|
Completed in 58 milliseconds