Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/bytecode_optimizer/tests/js/
H A DconstantProgagation.js419 let doubleVal = 1.1;
424 print(a === doubleVal);
425 print(a !== doubleVal);
426 print(a > doubleVal);
427 print(a >= doubleVal);
428 print(a < doubleVal);
429 print(a <= doubleVal);
430 print(a == doubleVal);
431 print(a != doubleVal);
490 let doubleVal
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H A Dglobal_tables.cpp229 MIRDoubleConst *FPConstTable::GetOrCreateDoubleConst(double doubleVal)
231 if (std::isnan(doubleVal)) {
234 if (std::isinf(doubleVal)) {
235 return (doubleVal < 0) ? minusInfDoubleConst : infDoubleConst;
237 if (doubleVal == 0.0 && std::signbit(doubleVal)) {
240 return DoGetOrCreateDoubleConst(doubleVal);
243 MIRDoubleConst *FPConstTable::DoGetOrCreateDoubleConst(double doubleVal)
245 const auto it = doubleConstTable.find(doubleVal);
251 new MIRDoubleConst(doubleVal, *GlobalTable
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dmcr_lowering.cpp445 GateRef doubleVal = builder_.GetDoubleOfTDouble(gate); in ConvertTaggedNumberToBool() local
446 result = ConvertFloat64ToBool(doubleVal); in ConvertTaggedNumberToBool()
1248 GateRef doubleVal = builder_.CastInt64ToFloat64(value); in LowerMigrateFromHoleNumberToHoleInt() local
1249 GateRef convertedValue = builder_.SExtInt32ToInt64(builder_.ChangeFloat64ToInt32(doubleVal)); in LowerMigrateFromHoleNumberToHoleInt()
H A Dtyped_native_inline_lowering.cpp1912 GateRef doubleVal = builder_.GetDoubleOfTDouble(value); in BuildTaggedIsInteger() local
1913 BRANCH_CIR(BuildDoubleIsFinite(doubleVal), &isFinite, &exit); in BuildTaggedIsInteger()
1916 GateRef doubleTrunc = builder_.DoubleTrunc(gate, doubleVal); in BuildTaggedIsInteger()
1917 result = builder_.Equal(doubleVal, doubleTrunc); in BuildTaggedIsInteger()
H A Dstub_builder.cpp10063 GateRef doubleVal = CastInt64ToFloat64(value); in MigrateFromHoleNumberToHoleInt() local
10064 GateRef convertedValue = SExtInt32ToInt64(ChangeFloat64ToInt32(doubleVal)); in MigrateFromHoleNumberToHoleInt()
/arkcompiler/ets_runtime/ecmascript/tests/
H A Ddump_test.cpp184 JSTaggedValue doubleVal = JSTaggedValue(b); in HWTEST_F_L0() local
185 loopVal.push_back(JSHandle<JSTaggedValue>(thread, doubleVal)); in HWTEST_F_L0()

Completed in 29 milliseconds