/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | argumentsReferenceInConstructor7_Js.ts | 26 this.callee = arguments.callee; 27 AssertType(this.callee = arguments.callee, "Function"); 28 AssertType(this.callee, "Function"); 30 AssertType(arguments.callee, "Function");
|
D | argumentsReferenceInMethod7_Js.ts | 26 this.callee = arguments.callee; 27 AssertType(this.callee = arguments.callee, "Function"); 28 AssertType(this.callee, "Function"); 30 AssertType(arguments.callee, "Function");
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-new-expression-expected.txt | 8 "callee": { 49 "callee": { 119 "callee": { 121 "callee": { 123 "callee": { 217 "callee": { 219 "callee": { 302 "callee": { 304 "callee": { 306 "callee": { [all …]
|
D | test-call-expression-expected.txt | 25 "callee": { 27 "callee": { 29 "callee": { 181 "callee": { 238 "callee": { 280 "callee": { 364 "callee": { 421 "callee": { 506 "callee": {
|
D | test-incomplete-hex-unicode-escape-expected.txt | 8 "callee": { 95 "callee": {
|
D | test-array-expression-expected.txt | 158 "callee": { 325 "callee": { 330 "callee": {
|
D | test-for-expected.txt | 179 "callee": { 277 "callee": { 394 "callee": { 459 "callee": { 519 "callee": { 579 "callee": { 1161 "callee": { 1274 "callee": { 1303 "callee": {
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
D | taggedTemplateExpression.cpp | 51 compiler::VReg callee = pg->AllocReg(); in Compile() local 64 pg->StoreAccumulator(this, callee); in Compile() 78 … pg->CallThis(this, callee, static_cast<int64_t>(quasi_->Expressions().size() + extraParams)); in Compile() 83 pg->Call(this, callee, quasi_->Expressions().size() + extraParams); in Compile()
|
D | callExpression.cpp | 126 compiler::VReg callee = pg->AllocReg(); in Compile() local 143 pg->StoreAccumulator(this, callee); in Compile() 144 pg->GetOptionalChain()->CheckNullish(optional_, callee); in Compile() 154 pg->CallSpread(this, callee, thisReg, argsObj); in Compile() 165 pg->CallThis(this, callee, static_cast<int64_t>(arguments_.size() + 1)); in Compile() 169 pg->Call(this, callee, arguments_.size()); in Compile()
|
D | newExpression.h | 36 explicit NewExpression(Expression *callee, TSTypeParameterInstantiation *typeParams, in NewExpression() argument 38 : Expression(AstNodeType::NEW_EXPRESSION), callee_(callee), in NewExpression()
|
D | callExpression.h | 37 explicit CallExpression(Expression *callee, ArenaVector<Expression *> &&arguments, in CallExpression() argument 40 callee_(callee), in CallExpression()
|
/arkcompiler/ets_frontend/ts2panda/src/expression/ |
D | callExpression.ts | 119 let callee = expr.expression; 121 switch (callee.kind) { 123 debugNode = (<ts.ElementAccessExpression>callee).argumentExpression; 127 debugNode = (<ts.PropertyAccessExpression>callee).name;
|
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/ |
D | function_call_timer.cpp | 41 auto callee = &callTimer_[id]; in StopCount() local 42 if (callee != currentTimer_) { in StopCount() 48 PandaRuntimeTimer *callerTimer = callee->Stop(); in StopCount()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | invoke_cache.cpp | 122 JSTaggedValue callee) in SetMonoInlineCallCacheSlot() argument 124 ASSERT(callee.IsJSFunction()); in SetMonoInlineCallCacheSlot() 125 Method *calleeMethod = JSFunction::Cast(callee.GetTaggedObject())->GetCallTarget(); in SetMonoInlineCallCacheSlot() 127 profileTypeInfo->Set(thread, slotId, callee); in SetMonoInlineCallCacheSlot()
|
/arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferisview_fuzzer/ |
D | builtinsarraybufferisview_fuzzer.cpp | 37 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() local 40 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|
/arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferarraybufferconstructor_fuzzer/ |
D | builtinsarraybufferarraybufferconstructor_fuzzer.cpp | 37 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() local 40 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|
/arkcompiler/ets_frontend/es2panda/compiler/function/ |
D | generatorFunctionBuilder.cpp | 26 VReg callee = FunctionReg(node); in Prepare() local 30 pg_->CreateGeneratorObj(node, callee); in Prepare()
|
/arkcompiler/ets_runtime/test/fuzztest/containersprivatecommon_fuzzer/ |
D | containersprivatecommon_fuzzer.h | 42 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() 45 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_function_test.cpp | 138 JSHandle<JSTaggedValue> callee( in HWTEST_F_L0() local 140 EXPECT_TRUE(*callee != nullptr); in HWTEST_F_L0() 148 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(callee), calleeKey, calleeValue); in HWTEST_F_L0() 150 …EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefin… in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
D | functionCall-expected.txt | 107 "callee": { 468 "callee": { 630 "callee": { 647 "callee": { 664 "callee": { 899 "callee": { 1015 "callee": { 1087 "callee": { 1312 "callee": { 1383 "callee": { [all …]
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | llvm_ir_builder.cpp | 526 …LLVMValueRef callee = LLVMBuildIntToPtr(builder_, llvmAddr, rtfuncTypePtr, (name + "-cast").c_str(… in GetFunction() local 527 ASSERT(callee != nullptr); in GetFunction() 528 return callee; in GetFunction() 536 LLVMValueRef callee = LLVMBuildIntToPtr(builder_, reloc, rtfuncTypePtr, "cast"); in GetFunctionFromGlobalValue() local 537 assert(callee != nullptr); in GetFunctionFromGlobalValue() 538 return callee; in GetFunctionFromGlobalValue() 585 LLVMValueRef callee = GetFunction(glue, signature, rtbaseoffset, targetName); in VisitRuntimeCall() local 586 callee = LLVMBuildPointerCast(builder_, callee, LLVMPointerType(funcType, 0), ""); in VisitRuntimeCall() 593 runtimeCall = LLVMBuildCall3(builder_, funcType, callee, params.data(), actualNumArgs, in VisitRuntimeCall() 596 runtimeCall = LLVMBuildCall2(builder_, funcType, callee, params.data(), actualNumArgs, ""); in VisitRuntimeCall() [all …]
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapconstructor_fuzzer/ |
D | containerstreemapconstructor_fuzzer.cpp | 43 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() local 46 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightmap_fuzzer/ |
D | containerslightweightmap_fuzzer.cpp | 44 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() local 47 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetindexof_fuzzer/ |
D | containerslightweightsetgetindexof_fuzzer.cpp | 44 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() local 47 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetclear_fuzzer/ |
D | containerslightweightsetclear_fuzzer.cpp | 44 …JSHandle<JSTaggedValue> callee(factory->NewJSObjectByConstructor(JSHandle<JSFunction>::Cast(hclass… in CreateEcmaRuntimeCallInfo() local 47 EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, callee, undefined, numArgs); in CreateEcmaRuntimeCallInfo()
|