Home
last modified time | relevance | path

Searched refs:convertedValue (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
H A Delement_accessor.cpp89 JSTaggedValue convertedValue = JSTaggedValue::Hole(); in GetTaggedValueWithElementsKind() local
91 return convertedValue; in GetTaggedValueWithElementsKind()
96 convertedValue = JSTaggedValue(static_cast<int>(rawValue)); in GetTaggedValueWithElementsKind()
100 convertedValue = JSTaggedValue(base::bit_cast<double>(rawValue)); in GetTaggedValueWithElementsKind()
108 convertedValue = JSTaggedValue(rawValue); in GetTaggedValueWithElementsKind()
115 return convertedValue; in GetTaggedValueWithElementsKind()
120 JSTaggedType convertedValue = base::SPECIAL_HOLE; in ConvertTaggedValueWithElementsKind() local
122 return convertedValue; in ConvertTaggedValueWithElementsKind()
127 convertedValue = static_cast<JSTaggedType>(rawValue.GetInt()); in ConvertTaggedValueWithElementsKind()
133 convertedValue in ConvertTaggedValueWithElementsKind()
[all...]
H A Delements.cpp234 int convertedValue = static_cast<int>(value); in MigrateFromRawValueToHeapValue() local
235 newElements->Set(thread, i, JSTaggedValue(convertedValue)); in MigrateFromRawValueToHeapValue()
237 double convertedValue = base::bit_cast<double>(value); in MigrateFromRawValueToHeapValue() local
238 newElements->Set(thread, i, JSTaggedValue(convertedValue)); in MigrateFromRawValueToHeapValue()
258 JSTaggedType convertedValue = 0; in MigrateFromHeapValueToRawValue() local
261 convertedValue = base::SPECIAL_HOLE; in MigrateFromHeapValueToRawValue()
263 convertedValue = static_cast<JSTaggedType>(value.GetInt()); in MigrateFromHeapValueToRawValue()
266 convertedValue = base::bit_cast<JSTaggedType>(static_cast<double>(intValue)); in MigrateFromHeapValueToRawValue()
268 convertedValue = base::bit_cast<JSTaggedType>(value.GetDouble()); in MigrateFromHeapValueToRawValue()
270 newElements->Set<false>(thread, i, JSTaggedValue(convertedValue)); in MigrateFromHeapValueToRawValue()
285 double convertedValue = static_cast<double>(intValue); MigrateFromHoleIntToHoleNumber() local
300 int64_t convertedValue = static_cast<int64_t>(intValue); MigrateFromHoleNumberToHoleInt() local
[all...]
H A Delement_accessor-inl.h50 JSTaggedType convertedValue = ConvertTaggedValueWithElementsKind(value.GetTaggedValue(), kind); in Set() local
53 Barriers::SetObject<true>(thread, elements->GetData(), offset, convertedValue); in Set()
55 Barriers::SetPrimitive<JSTaggedType>(elements->GetData(), offset, convertedValue); in Set()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dmcr_lowering.cpp1201 GateRef convertedValue = builder_.CastDoubleToInt64(builder_.ChangeInt32ToFloat64(intVal)); in LowerMigrateFromHoleIntToHoleNumber() local
1203 convertedValue); in LowerMigrateFromHoleIntToHoleNumber() local
1249 GateRef convertedValue = builder_.SExtInt32ToInt64(builder_.ChangeFloat64ToInt32(doubleVal)); in LowerMigrateFromHoleNumberToHoleInt() local
1251 convertedValue); in LowerMigrateFromHoleNumberToHoleInt() local
H A Dstub_builder.cpp10015 GateRef convertedValue = CastDoubleToInt64(ChangeInt32ToFloat64(intVal)); in MigrateFromHoleIntToHoleNumber() local
10017 convertedValue); in MigrateFromHoleIntToHoleNumber() local
10064 GateRef convertedValue = SExtInt32ToInt64(ChangeFloat64ToInt32(doubleVal)); in MigrateFromHoleNumberToHoleInt() local
10066 convertedValue); in MigrateFromHoleNumberToHoleInt() local
H A Dtyped_hcr_lowering.cpp1293 GateRef convertedValue = builder_.ZExtInt32ToInt64(value); in LowerArrayStoreElement() local
1294 builder_.SetValueToTaggedArray(VariableType::INT64(), glue, element, index, convertedValue); in LowerArrayStoreElement() local

Completed in 27 milliseconds