Searched refs:Float64Max (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 249 machine()->Float64Max().IsSupported()) { in ReducePhi() 252 return Change(node, machine()->Float64Max().op(), vtrue, vfalse); in ReducePhi() 353 machine()->Float64Max().IsSupported()) { in ReduceSelect() 354 return Change(node, machine()->Float64Max().op(), vtrue, vfalse); in ReduceSelect()
|
D | machine-operator.h | 274 const OptionalOperator Float64Max();
|
D | opcodes.h | 306 V(Float64Max) \
|
D | raw-machine-assembler.h | 394 Node* Float64Max(Node* a, Node* b) { in Float64Max() function 395 return AddNode(machine()->Float64Max().op(), a, b); in Float64Max()
|
D | machine-operator.cc | 198 V(Float64Max, Operator::kNoProperties, 2, 0, 1) \
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 325 OPTIONAL_ENTRY(Float64Max, 2, 0, 1), // --
|
D | node-test-utils.cc | 2077 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/arm64/ |
D | instruction-selector-arm64-unittest.cc | 3310 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument 3315 Node* const n = m.Float64Max(p0, p1); in TEST_F()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3822 if (!m.machine()->Float64Max().IsSupported()) return; in TEST() 3824 bt.AddReturn(m.Float64Max(bt.param0, bt.param1)); in TEST()
|