Home
last modified time | relevance | path

Searched refs:Float64Neg (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/
Dcode-stub-assembler.cc133 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/
Dmachine-operator-unittest.cc329 OPTIONAL_ENTRY(Float64Neg, 1, 0, 1), // --
/external/v8/src/compiler/
Dcode-assembler.h120 V(Float64Neg) \
Dmachine-operator.h369 const OptionalOperator Float64Neg();
Dopcodes.h379 V(Float64Neg) \
Dmachine-operator.cc385 V(Float64Neg, Operator::kNoProperties, 1, 0, 1)
Draw-machine-assembler.h462 Node* Float64Neg(Node* a) { return Float64Sub(Float64Constant(-0.0), a); } in Float64Neg() function
Dwasm-compiler.cc663 if (m->Float64Neg().IsSupported()) { in Unop()
664 op = m->Float64Neg().op(); in Unop()
/external/v8/test/unittests/compiler/arm/
Dinstruction-selector-arm-unittest.cc3077 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/
Dinstruction-selector-arm64-unittest.cc3927 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/
Dtest-run-wasm.cc648 WASM_EXEC_TEST(Float64Neg) { in WASM_EXEC_TEST() argument
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc3624 if (!m.machine()->Float64Neg().IsSupported()) return; in TEST()
3625 m.Return(m.AddNode(m.machine()->Float64Neg().op(), m.Parameter(0))); in TEST()