Searched refs:Float64Min (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 244 machine()->Float64Min().IsSupported()) { in ReducePhi() 247 return Change(node, machine()->Float64Min().op(), vtrue, vfalse); in ReducePhi() 350 machine()->Float64Min().IsSupported()) { in ReduceSelect() 351 return Change(node, machine()->Float64Min().op(), vtrue, vfalse); in ReduceSelect()
|
D | machine-operator.h | 275 const OptionalOperator Float64Min();
|
D | opcodes.h | 307 V(Float64Min) \
|
D | raw-machine-assembler.h | 397 Node* Float64Min(Node* a, Node* b) { in Float64Min() function 398 return AddNode(machine()->Float64Min().op(), a, b); in Float64Min()
|
D | machine-operator.cc | 199 V(Float64Min, Operator::kNoProperties, 2, 0, 1) \
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 326 OPTIONAL_ENTRY(Float64Min, 2, 0, 1), // --
|
D | node-test-utils.cc | 2078 IS_BINOP_MATCHER(Float64Min)
|
/external/v8/test/unittests/compiler/mips/ |
D | instruction-selector-mips-unittest.cc | 1204 TEST_F(InstructionSelectorTest, Float64Min) { in TEST_F() argument 1209 Node* const n = m.Float64Min(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/mips64/ |
D | instruction-selector-mips64-unittest.cc | 1465 TEST_F(InstructionSelectorTest, Float64Min) { in TEST_F() argument 1470 Node* const n = m.Float64Min(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/arm64/ |
D | instruction-selector-arm64-unittest.cc | 3329 TEST_F(InstructionSelectorTest, Float64Min) { in TEST_F() argument 3334 Node* const n = m.Float64Min(p0, p1); in TEST_F()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3854 if (!m.machine()->Float64Min().IsSupported()) return; in TEST() 3856 bt.AddReturn(m.Float64Min(bt.param0, bt.param1)); in TEST()
|