Searched refs:Float64Neg (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/ |
D | code-stub-assembler.cc | 133 Node* minus_x = Float64Neg(x); in Float64Ceil() 141 var_x.Bind(Float64Neg(var_x.value())); in Float64Ceil() 186 Node* minus_x = Float64Neg(x); in Float64Floor() 194 var_x.Bind(Float64Neg(var_x.value())); in Float64Floor() 247 Node* minus_x = Float64Neg(x); in Float64Trunc() 256 var_x.Bind(Float64Neg(var_x.value())); in Float64Trunc()
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 329 OPTIONAL_ENTRY(Float64Neg, 1, 0, 1), // --
|
/external/v8/src/compiler/ |
D | code-assembler.h | 120 V(Float64Neg) \
|
D | machine-operator.h | 369 const OptionalOperator Float64Neg();
|
D | opcodes.h | 379 V(Float64Neg) \
|
D | machine-operator.cc | 385 V(Float64Neg, Operator::kNoProperties, 1, 0, 1)
|
D | raw-machine-assembler.h | 462 Node* Float64Neg(Node* a) { return Float64Sub(Float64Constant(-0.0), a); } in Float64Neg() function
|
D | wasm-compiler.cc | 663 if (m->Float64Neg().IsSupported()) { in Unop() 664 op = m->Float64Neg().op(); in Unop()
|
/external/v8/test/unittests/compiler/arm/ |
D | instruction-selector-arm-unittest.cc | 3077 TEST_F(InstructionSelectorTest, Float64Neg) { in TEST_F() argument 3081 Node* const n = m.AddNode(m.machine()->Float64Neg().op(), m.Parameter(0)); in TEST_F()
|
/external/v8/test/unittests/compiler/arm64/ |
D | instruction-selector-arm64-unittest.cc | 3927 TEST_F(InstructionSelectorTest, Float64Neg) { in TEST_F() argument 3931 Node* const n = m.AddNode(m.machine()->Float64Neg().op(), m.Parameter(0)); in TEST_F()
|
/external/v8/test/cctest/wasm/ |
D | test-run-wasm.cc | 648 WASM_EXEC_TEST(Float64Neg) { in WASM_EXEC_TEST() argument
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3624 if (!m.machine()->Float64Neg().IsSupported()) return; in TEST() 3625 m.Return(m.AddNode(m.machine()->Float64Neg().op(), m.Parameter(0))); in TEST()
|