Lines Matching defs:thisFunc
1298 JSTaggedValue thisFunc = InterpreterAssembly::GetFunction(sp);
1299 return RuntimeLdSuperByValue(thread, obj, key, thisFunc).GetRawData();
1307 JSTaggedValue thisFunc = GetArg(argv, argc, 2); // 2: means the second parameter
1308 return RuntimeLdSuperByValue(thread, obj, key, thisFunc).GetRawData();
1318 JSTaggedValue thisFunc = InterpreterAssembly::GetFunction(sp);
1319 return RuntimeStSuperByValue(thread, obj, key, value, thisFunc).GetRawData();
1328 JSTaggedValue thisFunc = GetArg(argv, argc, 3); // 3: means the third parameter
1329 return RuntimeStSuperByValue(thread, obj, key, value, thisFunc).GetRawData();
1548 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1550 JSHandle<Method> method(thread, thisFunc->GetMethod());
1551 auto profileTypeInfo = thisFunc->GetProfileTypeInfo();
1554 auto res = RuntimeNotifyInlineCache(thread, thisFunc, slotSize);
1563 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1564 thread->GetEcmaVM()->GetPGOProfiler()->PGODump(thisFunc.GetTaggedType());
1571 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1572 thread->GetEcmaVM()->GetPGOProfiler()->PGOPreDump(thisFunc.GetTaggedType());
1579 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1581 auto profileTypeInfo = thisFunc->GetProfileTypeInfo();
1583 uint32_t slotSize = thisFunc->GetCallTarget()->GetSlotSize();
1584 auto res = RuntimeNotifyInlineCache(thread, thisFunc, slotSize);
1593 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1595 Jit::Compile(thread->GetEcmaVM(), thisFunc, CompilerTier::FAST, offset.GetInt(), JitCompileMode::ASYNC);
1602 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1603 Jit::Compile(thread->GetEcmaVM(), thisFunc, CompilerTier::BASELINE,
1611 JSHandle thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
1612 Jit::CountInterpExecFuncs(thisFunc);
2067 JSHandle<JSFunction> thisFunc = GetHArg<JSFunction>(argv, argc, 0); // 0: means the zeroth parameter
2070 return factory->NewJSPrimitiveRef(thisFunc, obj).GetTaggedValue().GetRawData();
4032 JSHandle<JSTaggedValue> thisFunc = GetHArg<JSTaggedValue>(argv, argc, 0); // 0: means the zeroth parameter
4035 JSTaggedValue result = builtins::BuiltinsFunction::FunctionPrototypeApplyInternal(thread, thisFunc,
4054 JSHandle<JSTaggedValue> thisFunc = GetHArg<JSTaggedValue>(argv, argc, 0); // 0: means the zeroth parameter
4056 if (!thisFunc->IsCallable()) {
4060 uint32_t argsLength = argc - 2; // 2: thisFunc and thisArg
4061 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, thisFunc, thisArg, undefined, argsLength);
4064 for (uint32_t i = 2; i < argc; ++i) { // 2: thisFunc and thisArg