Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dcommon-operator-reducer.cc276 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()
Dmachine-operator.h347 const OptionalOperator Float64Max();
Draw-machine-assembler.h455 Node* Float64Max(Node* a, Node* b) { in Float64Max() function
456 return AddNode(machine()->Float64Max().op(), a, b); in Float64Max()
Dopcodes.h383 V(Float64Max) \
Dmachine-operator.cc373 V(Float64Max, Operator::kNoProperties, 2, 0, 1) \
/external/v8/test/unittests/compiler/
Dmachine-operator-unittest.cc323 OPTIONAL_ENTRY(Float64Max, 2, 0, 1), // --
Dnode-test-utils.cc2283 IS_BINOP_MATCHER(Float64Max)
/external/v8/test/unittests/compiler/mips/
Dinstruction-selector-mips-unittest.cc1187 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/
Dinstruction-selector-mips64-unittest.cc1448 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/
Dinstruction-selector-arm-unittest.cc3026 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/
Dinstruction-selector-arm64-unittest.cc3875 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument
3880 Node* const n = m.Float64Max(p0, p1); in TEST_F()
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc3738 if (!m.machine()->Float64Max().IsSupported()) return; in TEST()
3740 bt.AddReturn(m.Float64Max(bt.param0, bt.param1)); in TEST()