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

1 2

  /external/v8/src/compiler/
machine-operator-reducer.h 31 Node* Float64Constant(volatile double value);
55 return Replace(Float64Constant(value));
js-graph.cc 211 Node* JSGraph::Float64Constant(double value) {
214 *loc = graph()->NewNode(common()->Float64Constant(value));
js-graph.h 112 // Creates a Float64Constant node, usually canonicalized.
113 Node* Float64Constant(double value);
representation-change.cc 309 return jsgraph()->Float64Constant(OpParameter<double>(node));
313 return jsgraph()->Float64Constant(value);
317 return jsgraph()->Float64Constant(static_cast<double>(value));
322 return jsgraph()->Float64Constant(OpParameter<float>(node));
340 return jsgraph()->Float64Constant(
simplified-lowering.cc     [all...]
common-operator.h 191 const Operator* Float64Constant(volatile double);
simplified-operator-reducer.cc 225 return Replace(jsgraph()->Float64Constant(value));
raw-machine-assembler.h 95 Node* Float64Constant(double value) {
96 return AddNode(common()->Float64Constant(value));
462 Node* Float64Neg(Node* a) { return Float64Sub(Float64Constant(-0.0), a); }
wasm-compiler.cc 166 return jsgraph()->Float64Constant(
908 Node* WasmGraphBuilder::Float64Constant(double value) {
909 return jsgraph()->Float64Constant(value);
    [all...]
machine-operator-reducer.cc 32 Node* MachineOperatorReducer::Float64Constant(volatile double value) {
33 return jsgraph()->Float64Constant(value);
312 node->ReplaceInput(0, Float64Constant(-0.0));
    [all...]
code-assembler.h 216 Node* Float64Constant(double value);
opcodes.h 39 V(Float64Constant) \
wasm-compiler.h 126 Node* Float64Constant(double value);
  /external/v8/test/unittests/compiler/
graph-unittest.h 37 Node* Float64Constant(volatile double value);
graph-unittest.cc 35 Node* GraphTest::Float64Constant(volatile double value) {
36 return graph()->NewNode(common()->Float64Constant(value));
machine-operator-reducer-unittest.cc 296 machine()->ChangeFloat64ToInt32(), Float64Constant(FastI2D(x))));
321 machine()->ChangeFloat64ToUint32(), Float64Constant(FastUI2D(x))));
405 machine()->TruncateFloat64ToFloat32(), Float64Constant(x)));
429 machine()->TruncateFloat64ToWord32(), Float64Constant(x)));
478 graph()->NewNode(machine()->RoundFloat64ToInt32(), Float64Constant(x)));
    [all...]
common-operator-unittest.cc 322 TEST_F(CommonOperatorTest, Float64Constant) {
324 const Operator* op = common()->Float64Constant(value);
334 const Operator* op1 = common()->Float64Constant(v1);
335 const Operator* op2 = common()->Float64Constant(v2);
effect-control-linearizer-unittest.cc 99 Node* vfalse = Float64Constant(2);
common-operator-reducer-unittest.cc 309 Node* c0 = Float64Constant(0.0);
507 Node* c0 = Float64Constant(0.0);
instruction-selector-unittest.cc 429 m.Float64Constant(0.5));
543 m.Float64Constant(0.25));
  /external/v8/test/cctest/compiler/
test-js-constant-cache.cc 69 CHECK_NE(zero, T.Float64Constant(0));
123 CHECK_NE(zero, T.Float64Constant(0));
148 CHECK_NE(one, T.Float64Constant(1.0));
173 CHECK_NE(one, T.Float64Constant(1.0));
363 Node* n = T.Float64Constant(constants[i]);
462 T.Float64Constant(0.9),
463 T.Float64Constant(V8_INFINITY),
test-representation-change.cc 161 Node* n = r.jsgraph()->Float64Constant(*i);
221 Node* n = r.jsgraph()->Float64Constant(*i);
311 Node* n = r.jsgraph()->Float64Constant(*i);
374 Node* n = r.jsgraph()->Float64Constant(*i);
424 Node* n = r.jsgraph()->Float64Constant(*i);
test-instruction.cc 60 Node* Float64Constant(double val) {
61 Node* node = graph.NewNode(common.Float64Constant(val));
test-run-machops.cc     [all...]
  /external/v8/src/
code-stub-assembler.cc 77 Node* one = Float64Constant(1.0);
78 Node* one_half = Float64Constant(0.5);
100 Node* one = Float64Constant(1.0);
101 Node* zero = Float64Constant(0.0);
102 Node* two_52 = Float64Constant(4503599627370496.0E0);
103 Node* minus_two_52 = Float64Constant(-4503599627370496.0E0);
153 Node* one = Float64Constant(1.0);
154 Node* zero = Float64Constant(0.0);
155 Node* two_52 = Float64Constant(4503599627370496.0E0);
156 Node* minus_two_52 = Float64Constant(-4503599627370496.0E0)
    [all...]

Completed in 1871 milliseconds

1 2