/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/connection/ |
H A D | server.h | 35 virtual void Call(const std::string &sessionId, const char *method, 38 void Call(const char *method, std::function<void(JsonObjectBuilder &)> &¶ms) in Call() function in ark::tooling::inspector::Server 40 Call({}, method, std::move(params)); in Call() 43 void Call(const std::string &sessionId, const char *method) in Call() function in ark::tooling::inspector::Server 45 Call(sessionId, method, [](JsonObjectBuilder & /* builder */) {}); in Call() 48 void Call(const char *method) in Call() function in ark::tooling::inspector::Server 50 Call({}, method, [](JsonObjectBuilder & /* builder */) {}); in Call()
|
H A D | server_endpoint_base.cpp | 21 void ServerEndpointBase::Call(const std::string &sessionId, const char *method, in Call() function in ark::tooling::inspector::ServerEndpointBase 24 EndpointBase::Call(sessionId, std::nullopt, method, std::move(params)); in Call()
|
H A D | server_endpoint_base.h | 45 using Server::Call; 46 void Call(const std::string &sessionId, const char *method,
|
H A D | endpoint_base.h | 53 void Call(
|
H A D | endpoint_base.cpp | 73 void EndpointBase::Call(const std::string &sessionId, std::optional<Id> id, const char *method, in Call() function in ark::tooling::inspector::EndpointBase
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_async_from_sync_iterator.cpp | 102 ret = JSFunction::Call(callInfo); in Throw() 109 ret = JSFunction::Call(callInfo); in Throw() 115 // a.Perform ! Call(promiseCapability.[[Reject]], undefined, « a newly created TypeError object »). in Throw() 123 JSFunction::Call(info); in Throw() 180 ret = JSFunction::Call(callInfo); in Return() 187 ret = JSFunction::Call(callInfo); in Return() 193 // a.Perform ! Call(promiseCapability.[[Reject]], undefined, « a newly created TypeError object »). in Return() 201 JSFunction::Call(info); in Return()
|
H A D | builtins_promise_job.cpp | 65 // 6. Else, let handlerResult be Call(handler, undefined, «argument»). in PromiseReactionJob() 70 JSTaggedValue taggedValue = JSFunction::Call(info); in PromiseReactionJob() 72 // a. Let status be Call(promiseCapability.[[Reject]], undefined, «handlerResult.[[value]]»). in PromiseReactionJob() 83 // 8. Let status be Call(promiseCapability.[[Resolve]], undefined, «handlerResult.[[value]]»). in PromiseReactionJob() 84 return JSFunction::Call(runtimeInfo); in PromiseReactionJob() 101 // 2. Let thenCallResult be Call(then, thenable, «resolvingFunctions.[[Resolve]], resolvingFunctions.[[Reject]]»). in PromiseResolveThenableJob() 107 JSTaggedValue result = JSFunction::Call(info); in PromiseResolveThenableJob() 110 // a. Let status be Call(resolvingFunctions.[[Reject]], undefined, «thenCallResult.[[value]]»). in PromiseResolveThenableJob() 120 return JSFunction::Call(runtimeInfo); in PromiseResolveThenableJob() 251 return JSFunction::Call(inf in DynamicImportJob() [all...] |
H A D | builtins_promise_handler.cpp | 201 // b. Return Call(promiseCapability.[[Resolve]], undefined, «valuesArray»). in ResolveElementFunction() 208 return JSFunction::Call(info); in ResolveElementFunction() 268 // 4. Let result be ? Call(onFinally, undefined). in ThenFinally() 272 JSTaggedValue result = JSFunction::Call(taggedInfo); in ThenFinally() 309 // 4. Let result be ? Call(onFinally, undefined). in CatchFinally() 313 JSTaggedValue result = JSFunction::Call(info); in CatchFinally() 363 // 6. Let resolveResult be Call(promiseCapability.[[Resolve]], undefined, «x»). in PromiseResolve() 371 JSTaggedValue resolveResult = JSFunction::Call(info); in PromiseResolve() 431 // b. Return ? Call(promiseCapability.[[Resolve]], undefined, « valuesArray »). in AllSettledResolveElementFunction() 438 return JSFunction::Call(inf in AllSettledResolveElementFunction() [all...] |
H A D | builtins_function.cpp | 140 // a. Return Call(func, thisArg). in FunctionPrototypeApplyInternal() 142 return JSFunction::Call(info); in FunctionPrototypeApplyInternal() 156 return JSFunction::Call(info); in FunctionPrototypeApplyInternal() 158 // 6. Return Call(func, thisArg, argList). in FunctionPrototypeApplyInternal() 163 return JSFunction::Call(info); in FunctionPrototypeApplyInternal() 330 // 5. Return Call(func, thisArg, argList). in FunctionPrototypeCall() 335 return JSFunction::Call(info); in FunctionPrototypeCall()
|
H A D | builtins_async_iterator.cpp | 58 JSFunction::Call(info); in Return()
|
H A D | builtins_set.cpp | 87 JSFunction::Call(info); in SetConstructor() 88 // Let status be Call(adder, set, «nextValue.[[value]]»). in SetConstructor() 212 // i. Let funcResult be Call(callbackfn, T, «e, e, S»). in ForEach() 213 JSTaggedValue ret = JSFunction::Call(info); // 3: three args in ForEach()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_iterator.cpp | 56 // 3.Let iterator be Call(method,obj). in GetIterator() 59 JSTaggedValue ret = JSFunction::Call(info); in GetIterator() 95 // 4.Let iterator be Call(method,obj). in GetAsyncIterator() 98 JSTaggedValue ret = JSFunction::Call(info); in GetAsyncIterator() 120 JSTaggedValue ret = JSFunction::Call(info); in IteratorNext() 143 JSTaggedValue ret = JSFunction::Call(info); in IteratorNext() 165 JSTaggedValue ret = JSFunction::Call(info); in IteratorNext() 184 JSTaggedValue ret = JSFunction::Call(info); in IteratorNext() 263 // 6.Let innerResult be Call(return, iterator, « »). in IteratorClose() 266 JSTaggedValue ret = JSFunction::Call(inf in IteratorClose() [all...] |
H A D | js_proxy.cpp | 40 // 6. If IsCallable(target) is true, then P.[[Call]] as specified in 9.5.12. in ProxyCreate() 72 // 8. Let handlerProto be Call(trap, handler, «target»). in GetPrototype() 77 JSTaggedValue handlerProto = JSFunction::Call(info); in GetPrototype() 140 JSTaggedValue trapResult = JSFunction::Call(info); in SetPrototype() 142 // 9. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target, V»)). in SetPrototype() 195 // 8. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target»)). in IsExtensible() 202 JSTaggedValue trapResult = JSFunction::Call(info); in IsExtensible() 232 // 8. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target»)). in PreventExtensions() 253 JSTaggedValue trapResult = JSFunction::Call(info); in PreventExtensions() 285 // 9. Let trapResultObj be Call(tra in GetOwnProperty() [all...] |
H A D | js_async_generator_object.cpp | 64 // 8. Perform ! Call(promiseCapability.[[Resolve]], undefined, « iteratorResult »). in AsyncGeneratorResolve() 71 [[maybe_unused]] JSTaggedValue res = JSFunction::Call(info); in AsyncGeneratorResolve() 101 // 7. Perform ! Call(promiseCapability.[[Reject]], undefined, ? exception ?). in AsyncGeneratorReject() 110 [[maybe_unused]] JSTaggedValue res = JSFunction::Call(info); in AsyncGeneratorReject() 258 // b. Perform ! Call(promiseCapability.[[Reject]], undefined, « badGeneratorError »). in AsyncGeneratorEnqueue() 268 [[maybe_unused]] JSTaggedValue res = JSFunction::Call(info); in AsyncGeneratorEnqueue() 325 [[maybe_unused]] JSTaggedValue res = JSFunction::Call(info); in PromiseResolve()
|
H A D | js_stable_array.cpp | 608 callResult = JSFunction::Call(info); in HandleFindIndexOfStable() 650 callResult = JSFunction::Call(info); in HandleFindLastIndexOfStable() 686 callResult = JSFunction::Call(info); in HandleEveryOfStable() 698 callResult = JSFunction::Call(info); in HandleEveryOfStable() 731 callResult = JSFunction::Call(info); in HandleSomeOfStable() 740 callResult = JSFunction::Call(info); in HandleSomeOfStable() 778 JSTaggedValue funcResult = JSFunction::Call(info); in HandleforEachOfStable() 791 JSTaggedValue funcResult = JSFunction::Call(info); in HandleforEachOfStable() 1059 JSTaggedValue callResult = JSFunction::Call(info); 1106 JSTaggedValue mapResult = JSFunction::Call(inf [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | hcr_circuit_builder.cpp | 69 result = Call(cs, glue, target, depend, args, hirGate, comment); in CallStub() 71 result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment); in CallStub() 93 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), name.c_str()); in CallBuiltinRuntime() 111 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), name.c_str()); in CallBuiltinRuntimeWithNewTarget() 115 GateRef CircuitBuilder::Call(const CallSignature* cs, GateRef glue, GateRef target, GateRef depend, in Call() function in panda::ecmascript::kungfu::CircuitBuilder 132 meta = circuit_->Call(numValuesIn); in Call() 177 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment); in CallBCHandler() 189 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment); in CallBuiltin() 201 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment); in CallBuiltinWithArgv() 213 GateRef result = Call(c in CallBCDebugger() [all...] |
H A D | post_schedule.cpp | 296 GateRef slowResult = builder_.Call(cs, glue, target, builder_.GetDepend(), in LoweringHeapAllocAndPrepareScheduleGate() 355 GateRef result = builder_.Call(cs, glue, target, builder_.GetDepend(), in LoweringHeapAllocate() 487 GateRef storeBarrier = builder_.Call(cs, glue, target, builder_.GetDepend(), in LoweringStoreWithBarrierAndPrepareScheduleGate() 555 GateRef verifyBarrier = builder_.Call(verifyBarrierCs, glue, verifyTarget, builder_.GetDepend(), in LoweringStoreUnknownBarrierAndPrepareScheduleGate() 559 GateRef storeBarrier = builder_.Call(cs, glue, target, builder_.GetDepend(), in LoweringStoreUnknownBarrierAndPrepareScheduleGate()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | inspector_server.cpp | 92 server_.Call(sessionId, "Debugger.paused", [&](auto ¶ms) { in CallDebuggerPaused() 111 server_.Call(sessionManager_.GetSessionIdByThread(thread), "Debugger.resumed"); in CallDebuggerResumed() 117 server_.Call(sessionId, "Debugger.scriptParsed", [&sourceFile, &thread, &scriptId](auto ¶ms) { in CallDebuggerScriptParsed() 134 server_.Call(sessionId, "Runtime.consoleAPICalled", [&](auto ¶ms) { in CallRuntimeConsoleApiCalled() 175 server_.Call(sessionId, "Runtime.executionContextCreated", [&](auto ¶ms) { in CallRuntimeExecutionContextCreated() 187 server_.Call("Runtime.executionContextsCleared"); in CallRuntimeExecutionContextsCleared() 212 server_.Call("Target.detachedFromTarget", in CallTargetDetachedFromTarget() 563 server_.Call("Target.attachedToTarget", [&sessionId](auto ¶ms) { in SendTargetAttachedToTarget()
|
/arkcompiler/runtime_core/static_core/irtoc/backend/compiler/tests/ |
H A D | dangling_pointers_checker_test.cpp | 73 INST(3U, Opcode::Call).TypeId(0U).ptr(); in TEST_F() 123 INST(3U, Opcode::Call).TypeId(0U).Inputs({{compiler::DataType::INT64, 7U}}).ptr(); in TEST_F() 170 INST(3U, Opcode::Call).TypeId(0U).ptr(); in TEST_F() 217 INST(3U, Opcode::Call).TypeId(0U).ptr(); in TEST_F() 266 INST(3U, Opcode::Call).TypeId(0U).ptr(); in TEST_F() 317 INST(3U, Opcode::Call).TypeId(0U).Inputs({{compiler::DataType::INT64, 7U}}).ptr(); in TEST_F() 365 INST(3U, Opcode::Call).TypeId(0U).ptr(); in TEST_F() 416 INST(3U, Opcode::Call).TypeId(0U).Inputs({{compiler::DataType::INT64, 7U}}).ptr(); in TEST_F() 427 // Use old accumulator after Call 458 INST(3U, Opcode::Call) in TEST_F() [all...] |
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_promise_test.cpp | 85 JSFunction::Call(info); in HWTEST_F_L0() 104 JSFunction::Call(info); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/test/fuzztest/functionrefcall_fuzzer/ |
H A D | functionrefcall_fuzzer.cpp | 47 func->Call(vm, thisObj, argv, argvLen); in FunctionRefCallFuzzTest()
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/ |
H A D | js_mode_launch.cpp | 71 TEST_F(JsModeLaunchTest, Call) in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_dynamic_import.cpp | 79 return JSFunction::Call(info); in ExecuteNativeOrJsonModule()
|
/arkcompiler/ets_frontend/ets2panda/ir/ets/ |
H A D | etsLaunchExpression.h | 65 [[nodiscard]] const CallExpression *Call() const noexcept
|
/arkcompiler/ets_runtime/ecmascript/jobs/ |
H A D | pending_job.h | 53 return JSFunction::Call(info); in ExecutePendingJob()
|