Searched refs:indexValue (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | ntype_bytecode_lowering.cpp | 133 uint32_t indexValue = static_cast<uint32_t>(acc_.GetConstantValue(index)); in LowerThrowIfSuperNotCorrectCall() local 134 if (indexValue == CALL_SUPER_BEFORE_THIS_CHECK) { in LowerThrowIfSuperNotCorrectCall() 136 } else if (indexValue == FORBIDDEN_SUPER_REBIND_THIS_CHECK) { in LowerThrowIfSuperNotCorrectCall() 160 uint32_t indexValue = static_cast<uint32_t>(acc_.GetConstantValue(index)); in LowerLdLexVar() local 161 indexValue += LexicalEnv::RESERVED_ENV_LENGTH; in LowerLdLexVar() 164 result = builder_.LoadFromTaggedArray(currentEnv, indexValue); in LowerLdLexVar() 167 result = builder_.LoadFromTaggedArray(parentEnv, indexValue); in LowerLdLexVar() 184 uint32_t indexValue = static_cast<uint32_t>(acc_.GetConstantValue(index)); in LowerStLexVar() local 185 indexValue += LexicalEnv::RESERVED_ENV_LENGTH; in LowerStLexVar() 188 result = builder_.StoreToTaggedArray(currentEnv, indexValue, valu in LowerStLexVar() 271 uint32_t indexValue = static_cast<uint32_t>(acc_.GetConstantValue(index)); LowerNTypedStownByIndex() local [all...] |
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | tagged_array_test.cpp | 152 JSHandle<JSTaggedValue> indexValue(thread, JSTaggedValue(6)); in HWTEST_F_L0() 164 EXPECT_EQ(JSObject::GetProperty(thread, TaggedArrayObj, indexValue).GetValue(), indexValue); in HWTEST_F_L0() 172 EXPECT_EQ(JSObject::GetProperty(thread, TaggedArrayObj, indexValue).GetValue(), undefinedValue); in HWTEST_F_L0()
|
H A D | js_api_tree_map_iterator_test.cpp | 274 JSHandle<JSTaggedValue> indexValue(thread, JSTaggedValue(index)); in HWTEST_F_L0() 276 JSObject::GetProperty(thread, keyValueArr, indexValue).GetValue(), value), true); in HWTEST_F_L0()
|
H A D | js_api_tree_set_iterator_test.cpp | 259 JSHandle<JSTaggedValue> indexValue(thread, JSTaggedValue(index)); in HWTEST_F_L0() 261 JSObject::GetProperty(thread, keyValueArr, indexValue).GetValue(), key), true); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_segmenter_test.cpp | 202 JSHandle<JSTaggedValue> indexValue(JSObject::GetProperty(thread, result, indexKey).GetValue()); in SegmentsPrototypeCommon() 206 values.push_back(indexValue); in SegmentsPrototypeCommon()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_regexp.cpp | 2004 JSHandle<JSTaggedValue> indexValue(thread, globalTable->GetStartOfCaptureIndex(0)); in RegExpBuiltinExec() 2007 results->SetPropertyInlinedPropsWithRep(thread, EXEC_RESULT_INDEX_OFFSET, indexValue.GetTaggedValue()); in RegExpBuiltinExec() 2012 JSObject::CreateDataProperty(thread, results, indexKey, indexValue); in RegExpBuiltinExec()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs.cpp | 264 JSTaggedValue indexValue = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local 265 uint32_t index = static_cast<uint32_t>(indexValue.GetInt()); in DEF_RUNTIME_STUBS() 3984 JSTaggedValue indexValue = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local 3985 uint32_t index = static_cast<uint32_t>(indexValue.GetInt()); in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_ir_builder.cpp | 1336 Expr indexValue = in VisitRuntimeCall() local 1338 params.push_back(indexValue); // target in VisitRuntimeCall()
|
Completed in 25 milliseconds