HomeSort by relevance Sort by last modified time
    Searched refs:Float64Constant (Results 1 - 25 of 26) sorted by null

1 2

  /external/v8/src/compiler/
machine-operator-reducer.h 35 Node* Float64Constant(volatile double value);
64 return Replace(Float64Constant(value));
js-graph.h 118 // Creates a Float64Constant node, usually canonicalized.
119 Node* Float64Constant(double value);
js-graph.cc 249 Node* JSGraph::Float64Constant(double value) {
252 *loc = graph()->NewNode(common()->Float64Constant(value));
effect-control-linearizer.cc     [all...]
graph-assembler.cc 42 Node* GraphAssembler::Float64Constant(double value) {
43 return jsgraph()->Float64Constant(value);
machine-operator-reducer.cc 33 Node* MachineOperatorReducer::Float64Constant(volatile double value) {
34 return jsgraph()->Float64Constant(value);
53 graph()->NewNode(machine()->Float64Add(), Float64Constant(0.0), value);
56 Float64Constant(-V8_INFINITY)),
58 return d.Phi(MachineRepresentation::kFloat64, Float64Constant(V8_INFINITY),
406 node->ReplaceInput(0, Float64Constant(-0.0));
450 node->ReplaceInput(1, Float64Constant(1.0 / m.right().Value()));
568 node->ReplaceInput(0, Float64Constant(1.0));
578 node->ReplaceInput(0, Float64Constant(1.0));
    [all...]
common-operator.h 340 const Operator* Float64Constant(volatile double);
representation-change.cc 502 return jsgraph()->Float64Constant(OpParameter<double>(node));
517 return jsgraph()->Float64Constant(0.0);
533 return jsgraph()->Float64Constant(
747 jsgraph()->Float64Constant(0.0), node);
    [all...]
simplified-operator-reducer.cc 237 return Replace(jsgraph()->Float64Constant(value));
simplified-lowering.cc     [all...]
code-assembler.cc 203 Node* CodeAssembler::Float64Constant(double value) {
204 return raw_assembler()->Float64Constant(value);
code-assembler.h 222 Node* Float64Constant(double value);
graph-assembler.h 241 Node* Float64Constant(double value);
wasm-compiler.h 149 Node* Float64Constant(double value);
raw-machine-assembler.h 99 Node* Float64Constant(double value) {
100 return AddNode(common()->Float64Constant(value));
opcodes.h 43 V(Float64Constant) \
common-operator.cc     [all...]
wasm-compiler.cc 276 return jsgraph()->Float64Constant(bit_cast<double>(0xdeadbeefdeadbeef));
    [all...]
  /external/v8/src/builtins/
builtins-math.cc 456 GotoIf(Float64LessThan(x_value, Float64Constant(0.0)), &if_xisnegative);
457 GotoIf(Float64LessThan(Float64Constant(0.0), x_value), &if_xispositive);
builtins-number.cc 99 Branch(Float64Equal(Float64Sub(number_value, integer), Float64Constant(0.0)),
152 Float64Equal(Float64Sub(number_value, integer), Float64Constant(0.0)),
157 Float64Constant(kMaxSafeInteger)),
239 Branch(Float64Equal(input_value, Float64Constant(0.0)),
305 GotoIfNot(Float64LessThan(input_value_abs, Float64Constant(1e9)),
307 Branch(Float64LessThan(Float64Constant(0.01), input_value_abs),
    [all...]
builtins-conversion.cc 371 len_value, assembler.Float64Constant(0.0)),
377 len_value, assembler.Float64Constant(kMaxSafeInteger)),
builtins-string.cc     [all...]
  /external/v8/src/
code-stub-assembler.cc 209 Node* one = Float64Constant(1.0);
210 Node* one_half = Float64Constant(0.5);
231 Node* one = Float64Constant(1.0);
232 Node* zero = Float64Constant(0.0);
233 Node* two_52 = Float64Constant(4503599627370496.0E0);
234 Node* minus_two_52 = Float64Constant(-4503599627370496.0E0);
283 Node* one = Float64Constant(1.0);
284 Node* zero = Float64Constant(0.0);
285 Node* two_52 = Float64Constant(4503599627370496.0E0);
286 Node* minus_two_52 = Float64Constant(-4503599627370496.0E0)
    [all...]
  /external/v8/src/wasm/
function-body-decoder.cc 661 return builder_->Float64Constant(0);
    [all...]
  /external/v8/src/interpreter/
interpreter.cc     [all...]

Completed in 850 milliseconds

1 2