Searched refs:Float64Max (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 276 machine()->Float64Max().IsSupported()) { in ReducePhi() 279 return Change(node, machine()->Float64Max().op(), vtrue, vfalse); in ReducePhi() 380 machine()->Float64Max().IsSupported()) { in ReduceSelect() 381 return Change(node, machine()->Float64Max().op(), vtrue, vfalse); in ReduceSelect()
|
D | machine-operator.h | 347 const OptionalOperator Float64Max();
|
D | raw-machine-assembler.h | 455 Node* Float64Max(Node* a, Node* b) { in Float64Max() function 456 return AddNode(machine()->Float64Max().op(), a, b); in Float64Max()
|
D | opcodes.h | 383 V(Float64Max) \
|
D | machine-operator.cc | 373 V(Float64Max, Operator::kNoProperties, 2, 0, 1) \
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 323 OPTIONAL_ENTRY(Float64Max, 2, 0, 1), // --
|
D | node-test-utils.cc | 2283 IS_BINOP_MATCHER(Float64Max)
|
/external/v8/test/unittests/compiler/mips/ |
D | instruction-selector-mips-unittest.cc | 1187 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument 1192 Node* const n = m.Float64Max(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/mips64/ |
D | instruction-selector-mips64-unittest.cc | 1448 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument 1453 Node* const n = m.Float64Max(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/arm/ |
D | instruction-selector-arm-unittest.cc | 3026 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument 3031 Node* const n = m.Float64Max(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/arm64/ |
D | instruction-selector-arm64-unittest.cc | 3875 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument 3880 Node* const n = m.Float64Max(p0, p1); in TEST_F()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3738 if (!m.machine()->Float64Max().IsSupported()) return; in TEST() 3740 bt.AddReturn(m.Float64Max(bt.param0, bt.param1)); in TEST()
|