Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dcommon-operator-reducer.cc249 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()
Dmachine-operator.h274 const OptionalOperator Float64Max();
Dopcodes.h306 V(Float64Max) \
Draw-machine-assembler.h394 Node* Float64Max(Node* a, Node* b) { in Float64Max() function
395 return AddNode(machine()->Float64Max().op(), a, b); in Float64Max()
Dmachine-operator.cc198 V(Float64Max, Operator::kNoProperties, 2, 0, 1) \
/external/v8/test/unittests/compiler/
Dmachine-operator-unittest.cc325 OPTIONAL_ENTRY(Float64Max, 2, 0, 1), // --
Dnode-test-utils.cc2077 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/arm64/
Dinstruction-selector-arm64-unittest.cc3310 TEST_F(InstructionSelectorTest, Float64Max) { in TEST_F() argument
3315 Node* const n = m.Float64Max(p0, p1); in TEST_F()
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc3822 if (!m.machine()->Float64Max().IsSupported()) return; in TEST()
3824 bt.AddReturn(m.Float64Max(bt.param0, bt.param1)); in TEST()