/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | argument_accessor.h | 29 FUNC, enumerator 37 FUNC, enumerator 43 FUNC = 0, enumerator 83 … return static_cast<size_t>(CommonArgIdx::NUM_OF_ARGS) - static_cast<size_t>(CommonArgIdx::FUNC); in GetFixArgsNum()
|
D | argument_accessor.cpp | 62 if (argIndex == static_cast<size_t>(TypedArgIdx::FUNC)) { in GetTypedArgGate() 63 return GetCommonArgGate(CommonArgIdx::FUNC); in GetTypedArgGate() 93 return static_cast<size_t>(CommonArgIdx::FUNC); in GetFunctionArgIndex() 99 return static_cast<size_t>(CommonArgIdx::FUNC); in GetFunctionArgIndex() 108 return static_cast<size_t>(CommonArgIdx::FUNC); in GetFunctionArgIndex()
|
D | type_recorder.h | 27 FUNC = 0, enumerator
|
D | slowpath_lowering.cpp | 121 GateRef func = args[static_cast<size_t>(CommonArgIdx::FUNC)]; in LowerToJSCall() 708 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerCallStubWithIC() 805 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in SaveFrameToContext() 1101 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerThrowUndefinedIfHoleWithName() 1464 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerCreateArrayWithBuffer() 1474 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerCreateObjectWithBuffer() 1487 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerStModuleVar() 1498 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerSetGeneratorState() 1530 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerLdBigInt() 1560 GateRef jsFunc = argAcc_.GetFrameArgsIn(gate, FrameArgIdx::FUNC); in LowerDynamicImport() [all …]
|
D | type_mcr_lowering.cpp | 393 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in BuildCompareSubTyping() 437 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in BuildCompareHClass() 988 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in LowerJSCallTargetTypeCheck() 1012 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in LowerJSFastCallTargetTypeCheck() 1137 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in LowerTypedNewAllocateThis() 1310 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in LowerInlineAccessorCheck()
|
D | ntype_mcr_lowering.cpp | 103 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in LowerCreateArrayWithBuffer()
|
D | bytecode_circuit_builder.cpp | 518 auto funcIdx = static_cast<size_t>(CommonArgIdx::FUNC); in BuildCircuitArgs() 525 auto funcIdx = static_cast<size_t>(FastCallArgIdx::FUNC); in BuildCircuitArgs() 545 args[idx++] = argAcc_.GetCommonArgGate(CommonArgIdx::FUNC); in BuildFrameArgs() 864 gate = argAcc_.GetCommonArgGate(CommonArgIdx::FUNC); in NewConst() 1352 ans = gateAcc_.GetInitialEnvGate(argAcc_.GetCommonArgGate(CommonArgIdx::FUNC)); in ResolveDef() 1452 … defVreg = gateAcc_.GetInitialEnvGate(argAcc_.GetCommonArgGate(CommonArgIdx::FUNC)); in BuildCircuit()
|
D | type_recorder.cpp | 196 argTypes_[static_cast<size_t>(TypedArgIdx::FUNC)] = TryGetFuncType(funcGT); in LoadArgTypes()
|
D | ts_inline_lowering.cpp | 457 inlineFunc = args.at(static_cast<size_t>(FastCallArgIdx::FUNC)); in LowerToInlineCall() 459 inlineFunc = args.at(static_cast<size_t>(CommonArgIdx::FUNC)); in LowerToInlineCall()
|
D | llvm_ir_builder.cpp | 368 funcIndex = static_cast<int>(FastCallArgIdx::FUNC); in GenPrologue() 370 funcIndex = static_cast<int>(CommonArgIdx::FUNC); in GenPrologue() 2342 GateRef jsFunc = argAcc.GetFrameArgsIn(frameState, FrameArgIdx::FUNC); in VisitDeoptCheck() 2542 auto funcIndex = static_cast<uint32_t>(CommonArgIdx::FUNC); in AddFunc() 2548 auto funcIndex = static_cast<uint32_t>(FastCallArgIdx::FUNC); in AddFunc()
|
/arkcompiler/ets_frontend/ts2panda/src/base/ |
D | vregisterCache.ts | 39 FUNC, // load function enumerator 61 [CacheList.FUNC, expandFunc],
|
D | builtIn.ts | 106 let vreg = getVregisterCache(pandaGen, CacheList.FUNC);
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | scope.cpp | 222 case DeclType::FUNC: { in AddLocal() 309 case DeclType::FUNC: { in AddBinding() 347 case DeclType::FUNC: { in AddBinding() 412 case DeclType::FUNC: { in AddBinding()
|
D | variableFlags.h | 29 _(FUNC, FunctionDecl) \
|
D | declaration.h | 320 return DeclType::FUNC; in Type()
|
D | scope.h | 850 case DeclType::FUNC: { in AddVar() 886 case DeclType::FUNC: { in AddFunction()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
D | builtins_call_signature.h | 182 FUNC, enumerator
|
D | builtins_stubs.cpp | 38 … GateRef func = TaggedArgument(static_cast<size_t>(BuiltinsArgs::FUNC)); \ 53 … GateRef func = TaggedArgument(static_cast<size_t>(BuiltinsArgs::FUNC)); \
|
/arkcompiler/ets_runtime/ecmascript/deoptimizer/ |
D | deoptimizer.h | 136 return static_cast<size_t>(index) - static_cast<size_t>(CommonArgIdx::FUNC); in GetFrameIndex()
|
/arkcompiler/ets_frontend/ts2panda/src/function/ |
D | generatorFunctionBuilder.ts | 50 pandaGen.createGeneratorObj(node, getVregisterCache(pandaGen, CacheList.FUNC));
|
D | asyncGeneratorFunctionBuilder.ts | 62 pg.createAsyncGeneratorObj(node, getVregisterCache(pg, CacheList.FUNC));
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
D | helpers.cpp | 405 case binder::DeclType::FUNC: { in GetTypeOfVariable()
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | compiler.ts | 196 getVregisterCache(this.pandaGen, CacheList.FUNC)); 227 let vreg = arg === MandatoryFuncObj ? getVregisterCache(this.pandaGen, CacheList.FUNC) :
|
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/ |
D | optimized_call.cpp | 619 const int64_t argoffsetSlot = static_cast<int64_t>(CommonArgIdx::FUNC) - 1; in JSBoundFunctionCallInternal() 787 const int64_t argoffsetSlot = static_cast<int64_t>(CommonArgIdx::FUNC) - 1; in PopJSFunctionArgs()
|
/arkcompiler/ets_frontend/ts2panda/src/statement/ |
D | classStatement.ts | 405 pandaGen.loadAccumulator(node, getVregisterCache(pandaGen, CacheList.FUNC));
|