Home
last modified time | relevance | path

Searched refs:Float64Constant (Results 1 – 25 of 32) sorted by relevance

12

/external/v8/src/compiler/
Dmachine-graph.cc70 Node* MachineGraph::Float64Constant(double value) { in Float64Constant() function in v8::internal::compiler::MachineGraph
73 *loc = graph()->NewNode(common()->Float64Constant(value)); in Float64Constant()
Dmachine-operator-reducer.h36 Node* Float64Constant(volatile double value); in NON_EXPORTED_BASE()
65 return Replace(Float64Constant(value)); in NON_EXPORTED_BASE()
Deffect-control-linearizer.cc1160 Node* fzero = __ Float64Constant(0.0); in TruncateTaggedPointerToBit()
2239 Node* check = __ Float64Equal(diff, __ Float64Constant(0)); in LowerNumberIsInteger()
2262 Node* check = __ Float64Equal(diff, __ Float64Constant(0)); in LowerObjectIsInteger()
2276 Node* check = __ Float64Equal(diff, __ Float64Constant(0)); in LowerNumberIsSafeInteger()
2279 __ Float64Abs(trunc), __ Float64Constant(kMaxSafeInteger)); in LowerNumberIsSafeInteger()
2305 Node* check = __ Float64Equal(diff, __ Float64Constant(0)); in LowerObjectIsSafeInteger()
2308 __ Float64Abs(trunc), __ Float64Constant(kMaxSafeInteger)); in LowerObjectIsSafeInteger()
2333 __ Float64Div(__ Float64Constant(1.0), value_value), in LowerObjectIsMinusZero()
2334 __ Float64Constant(-std::numeric_limits<double>::infinity()))); in LowerObjectIsMinusZero()
3813 Node* result = __ Float64Constant(0.0); in BuildReverseBytes()
[all …]
Dmachine-graph.h55 Node* Float64Constant(double value); in NON_EXPORTED_BASE()
Dmachine-operator-reducer.cc33 Node* MachineOperatorReducer::Float64Constant(volatile double value) { in Float64Constant() function in v8::internal::compiler::MachineOperatorReducer
34 return mcgraph()->Float64Constant(value); in Float64Constant()
53 graph()->NewNode(machine()->Float64Add(), Float64Constant(0.0), value); in Float64PowHalf()
56 Float64Constant(-V8_INFINITY)), in Float64PowHalf()
58 return d.Phi(MachineRepresentation::kFloat64, Float64Constant(V8_INFINITY), in Float64PowHalf()
402 node->ReplaceInput(0, Float64Constant(-0.0)); in Reduce()
446 node->ReplaceInput(1, Float64Constant(1.0 / m.right().Value())); in Reduce()
564 node->ReplaceInput(0, Float64Constant(1.0)); in Reduce()
574 node->ReplaceInput(0, Float64Constant(1.0)); in Reduce()
Dgraph-assembler.cc41 Node* GraphAssembler::Float64Constant(double value) { in Float64Constant() function in v8::internal::compiler::GraphAssembler
42 return jsgraph()->Float64Constant(value); in Float64Constant()
Dsimplified-lowering.cc2879 lowering->jsgraph()->Float64Constant(1.0), input)); in VisitNode()
2881 jsgraph_->Float64Constant( in VisitNode()
3496 Node* const one = jsgraph()->Float64Constant(1.0); in Float64Round()
3497 Node* const one_half = jsgraph()->Float64Constant(0.5); in Float64Round()
3512 Node* const minus_one = jsgraph()->Float64Constant(-1.0); in Float64Sign()
3513 Node* const zero = jsgraph()->Float64Constant(0.0); in Float64Sign()
3514 Node* const one = jsgraph()->Float64Constant(1.0); in Float64Sign()
3853 jsgraph()->Float64Constant(0.0))); in DoOrderedNumberToBit()
3861 node->ReplaceInput(0, jsgraph()->Float64Constant(0.0)); in DoNumberToBit()
3869 Node* const min = jsgraph()->Float64Constant(0.0); in DoIntegerToUint8Clamped()
[all …]
Dsimplified-operator-reducer.cc243 return Replace(jsgraph()->Float64Constant(value)); in ReplaceFloat64()
Drepresentation-change.cc545 return jsgraph()->Float64Constant(OpParameter<double>(node->op())); in GetFloat64RepresentationFor()
576 return jsgraph()->Float64Constant( in GetFloat64RepresentationFor()
832 jsgraph()->Float64Constant(0.0), node); in GetBitRepresentationFor()
Dcommon-operator.h484 const Operator* Float64Constant(volatile double); in NON_EXPORTED_BASE()
Dgraph-assembler.h181 Node* Float64Constant(double value);
Dsimd-scalar-lowering.cc698 Node* double_zero = graph()->NewNode(common()->Float64Constant(0.0)); in LowerConvertFromFloat()
700 common()->Float64Constant(static_cast<double>(is_signed ? kMinInt : 0))); in LowerConvertFromFloat()
701 Node* max = graph()->NewNode(common()->Float64Constant( in LowerConvertFromFloat()
Draw-machine-assembler.h97 Node* Float64Constant(double value) { in Float64Constant() function
98 return AddNode(common()->Float64Constant(value)); in Float64Constant()
Dwasm-compiler.h161 Node* Float64Constant(double value);
Dopcodes.h43 V(Float64Constant) \
Dcode-assembler.cc307 TNode<Float64T> CodeAssembler::Float64Constant(double value) { in Float64Constant() function in v8::internal::compiler::CodeAssembler
308 return UncheckedCast<Float64T>(raw_assembler()->Float64Constant(value)); in Float64Constant()
Dwasm-compiler.cc875 Node* WasmGraphBuilder::Float64Constant(double value) { in Float64Constant() function in v8::internal::compiler::WasmGraphBuilder
876 return mcgraph()->Float64Constant(value); in Float64Constant()
1573 return builder->Float64Constant(0.0); in Zero()
3293 return mcgraph->Float64Constant(std::numeric_limits<double>::quiet_NaN()); in GetAsmJsOOBValue()
4259 mcgraph()->Float64Constant(std::numeric_limits<double>::quiet_NaN()); in BuildChangeTaggedToFloat64()
/external/v8/src/builtins/
Dbuiltins-math-gen.cc162 result.Bind(Float64Constant(default_val)); in MathMaxMin()
449 GotoIf(Float64LessThan(x_value, Float64Constant(0.0)), &if_xisnegative); in TF_BUILTIN()
450 GotoIf(Float64LessThan(Float64Constant(0.0), x_value), &if_xispositive); in TF_BUILTIN()
Dbuiltins-conversion-gen.cc303 GotoIfNot(Float64GreaterThan(len_value, Float64Constant(0.0)), in TF_BUILTIN()
308 Float64Constant(kMaxSafeInteger)), in TF_BUILTIN()
Dbuiltins-number-gen.cc208 Branch(Float64Equal(input_value, Float64Constant(0.0)), in TF_BUILTIN()
275 GotoIfNot(Float64LessThan(input_value_abs, Float64Constant(1u << 31)), in TF_BUILTIN()
277 Branch(Float64LessThanOrEqual(Float64Constant(1), input_value_abs), in TF_BUILTIN()
785 Node* value = Float64Mul(var_input_double.value(), Float64Constant(-1)); in TF_BUILTIN()
Dbuiltins-string-gen.cc1265 GotoIf(Float64Equal(number_value, Float64Constant(V8_INFINITY)), in TF_BUILTIN()
1267 GotoIf(Float64LessThan(number_value, Float64Constant(0.0)), in TF_BUILTIN()
2070 TNode<Float64T> const float_zero = Float64Constant(0.); in TF_BUILTIN()
2133 TNode<Float64T> const float_zero = Float64Constant(0.); in ToSmiBetweenZeroAnd()
Dbase.tq406 extern macro Float64Constant(constexpr int31): float64;
436 return Float64Constant(i);
/external/v8/src/
Dcode-stub-assembler.cc366 Node* one = Float64Constant(1.0); in Float64Round()
367 Node* one_half = Float64Constant(0.5); in Float64Round()
388 Node* one = Float64Constant(1.0); in Float64Ceil()
389 Node* zero = Float64Constant(0.0); in Float64Ceil()
390 Node* two_52 = Float64Constant(4503599627370496.0E0); in Float64Ceil()
391 Node* minus_two_52 = Float64Constant(-4503599627370496.0E0); in Float64Ceil()
440 Node* one = Float64Constant(1.0); in Float64Floor()
441 Node* zero = Float64Constant(0.0); in Float64Floor()
442 Node* two_52 = Float64Constant(4503599627370496.0E0); in Float64Floor()
443 Node* minus_two_52 = Float64Constant(-4503599627370496.0E0); in Float64Floor()
[all …]
/external/v8/src/wasm/
Dfunction-body-decoder.cc229 result->node = builder_->Float64Constant(value); in F64Const()
594 return builder_->Float64Constant(0); in DefaultValue()
/external/v8/src/interpreter/
Dinterpreter-generator.cc1347 ? Float64Add(float_value, Float64Constant(1.0)) in FloatOp()
1348 : Float64Sub(float_value, Float64Constant(1.0)); in FloatOp()

12