Home
last modified time | relevance | path

Searched refs:firstArgRegIdx (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecodes.cpp781 uint16_t firstArgRegIdx = READ_INST_8_2(); in InitBytecodeInfo() local
783 info.inputs.emplace_back(VirtualRegister(firstArgRegIdx + i)); in InitBytecodeInfo()
789 uint16_t firstArgRegIdx = READ_INST_8_3(); in InitBytecodeInfo() local
791 info.inputs.emplace_back(VirtualRegister(firstArgRegIdx + i)); in InitBytecodeInfo()
797 uint16_t firstArgRegIdx = READ_INST_8_3(); in InitBytecodeInfo() local
799 info.inputs.emplace_back(VirtualRegister(firstArgRegIdx + i)); in InitBytecodeInfo()
1088 uint16_t firstArgRegIdx = READ_INST_8_2(); in InitBytecodeInfo() local
1091 info.inputs.emplace_back(Immediate(firstArgRegIdx)); in InitBytecodeInfo()
1097 uint16_t firstArgRegIdx = READ_INST_8_4(); in InitBytecodeInfo() local
1100 info.inputs.emplace_back(Immediate(firstArgRegIdx)); in InitBytecodeInfo()
Dinterpreter_stub.cpp325 GateRef firstArgRegIdx = ZExtInt8ToInt16(ReadInst8_2(pc)); in DECLARE_ASM_HANDLER() local
327 { Int16ToTaggedInt(numKeys), obj, Int16ToTaggedInt(firstArgRegIdx) }); in DECLARE_ASM_HANDLER()
335 GateRef firstArgRegIdx = ZExtInt8ToInt16(ReadInst8_4(pc)); in DECLARE_ASM_HANDLER() local
337 { Int16ToTaggedInt(numKeys), obj, Int16ToTaggedInt(firstArgRegIdx) }); in DECLARE_ASM_HANDLER()
3887 GateRef firstArgRegIdx = ZExtInt8ToInt16(ReadInst8_2(pc)); in DECLARE_ASM_HANDLER() local
3889 GateRef ctor = GetVregValue(sp, ZExtInt16ToPtr(firstArgRegIdx)); in DECLARE_ASM_HANDLER()
3919 PtrAdd(firstArgRegIdx, firstArgOffset), IntPtr(8))); // 8: skip function in DECLARE_ASM_HANDLER()
3927 GateRef firstArgIdx = Int16Add(firstArgRegIdx, firstArgOffset); in DECLARE_ASM_HANDLER()
3956 GateRef firstArgRegIdx = ZExtInt8ToInt16(ReadInst8_3(pc)); in DECLARE_ASM_HANDLER() local
3958 GateRef ctor = GetVregValue(sp, ZExtInt16ToPtr(firstArgRegIdx)); in DECLARE_ASM_HANDLER()
[all …]
Dslowpath_lowering.cpp1803 GateRef firstArgRegIdx = acc_.GetValueIn(gate, 2); in LowerCreateObjectWithExcludedKeys() local
1814 args.emplace_back(builder_.ToTaggedInt(firstArgRegIdx)); in LowerCreateObjectWithExcludedKeys()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.h3904 uint16_t firstArgRegIdx = READ_INST_8_2(); in RunInternal() local
3905 … LOG_INST() << "intrinsics::createobjectwithexcludedkeys " << numKeys << " v" << firstArgRegIdx; in RunInternal()
3910 …gedValue res = SlowRuntimeStub::CreateObjectWithExcludedKeys(thread, numKeys, obj, firstArgRegIdx); in RunInternal()
3918 uint16_t firstArgRegIdx = READ_INST_8_4(); in RunInternal() local
3919 … LOG_INST() << "intrinsics::createobjectwithexcludedkeys " << numKeys << " v" << firstArgRegIdx; in RunInternal()
3924 …gedValue res = SlowRuntimeStub::CreateObjectWithExcludedKeys(thread, numKeys, obj, firstArgRegIdx); in RunInternal()
3931 uint16_t firstArgRegIdx = READ_INST_8_2(); in RunInternal() local
3932 LOG_INST() << "intrinsics::newobjRange " << numArgs << " v" << firstArgRegIdx; in RunInternal()
3933 JSTaggedValue ctor = GET_VREG_VALUE(firstArgRegIdx); in RunInternal()
3963 newSp[index++] = GET_VREG(firstArgRegIdx + i); in RunInternal()
[all …]
Dinterpreter_assembly.cpp2122 uint16_t firstArgRegIdx = READ_INST_8_2(); in HandleCreateobjectwithexcludedkeysImm8V8V8() local
2123 LOG_INST() << "intrinsics::createobjectwithexcludedkeys " << numKeys << " v" << firstArgRegIdx; in HandleCreateobjectwithexcludedkeysImm8V8V8()
2128 …gedValue res = SlowRuntimeStub::CreateObjectWithExcludedKeys(thread, numKeys, obj, firstArgRegIdx); in HandleCreateobjectwithexcludedkeysImm8V8V8()
3781 uint16_t firstArgRegIdx = READ_INST_8_3(); in HandleWideNewobjrangePrefImm16V8() local
3782 LOG_INST() << "intrinsics::newobjRange " << numArgs << " v" << firstArgRegIdx; in HandleWideNewobjrangePrefImm16V8()
3783 JSTaggedValue ctor = GET_VREG_VALUE(firstArgRegIdx); in HandleWideNewobjrangePrefImm16V8()
3813 newSp[index++] = GET_VREG(firstArgRegIdx + i); in HandleWideNewobjrangePrefImm16V8()
3880 newSp[index++] = GET_VREG(firstArgRegIdx + i); in HandleWideNewobjrangePrefImm16V8()
3906 uint16_t firstArgIdx = firstArgRegIdx + firstArgOffset; in HandleWideNewobjrangePrefImm16V8()
3922 uint16_t firstArgRegIdx = READ_INST_8_4(); in HandleWideCreateobjectwithexcludedkeysPrefImm16V8V8() local
[all …]
Dslow_runtime_stub.h65 uint16_t firstArgRegIdx);
Dslow_runtime_stub.cpp354 uint16_t firstArgRegIdx) in CreateObjectWithExcludedKeys() argument
360 return RuntimeStubs::RuntimeCreateObjectWithExcludedKeys(thread, numKeys, obj, firstArgRegIdx); in CreateObjectWithExcludedKeys()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1964 uint16_t firstArgRegIdx, in RuntimeOptCreateObjectWithExcludedKeys() argument
1967 firstArgRegIdx += 4; // firstArgRegIdx + 4: means the remain parameter in RuntimeOptCreateObjectWithExcludedKeys()
1971 JSTaggedValue excludedKey = GetArg(argv, argc, firstArgRegIdx); in RuntimeOptCreateObjectWithExcludedKeys()
1976 excludedKey = GetArg(argv, argc, firstArgRegIdx + i); in RuntimeOptCreateObjectWithExcludedKeys()
1985 uint16_t firstArgRegIdx) in RuntimeCreateObjectWithExcludedKeys() argument
1991 JSTaggedValue excludedKey = frameHandler.GetVRegValue(firstArgRegIdx); in RuntimeCreateObjectWithExcludedKeys()
1996 excludedKey = frameHandler.GetVRegValue(firstArgRegIdx + i); in RuntimeCreateObjectWithExcludedKeys()
Druntime_stubs.h613 uint16_t firstArgRegIdx);
650 uint16_t firstArgRegIdx,
Druntime_stubs.cpp1136 JSTaggedValue firstArgRegIdx = GetArg(argv, argc, 2); // 2: means the second parameter in DEF_RUNTIME_STUBS() local
1138 static_cast<uint16_t>(firstArgRegIdx.GetInt()), argv, argc).GetRawData(); in DEF_RUNTIME_STUBS()
1682 JSTaggedValue firstArgRegIdx = GetArg(argv, argc, 2); // 2: means the second parameter in DEF_RUNTIME_STUBS() local
1684 static_cast<uint16_t>(firstArgRegIdx.GetInt())).GetRawData(); in DEF_RUNTIME_STUBS()