Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dcommon-operator-reducer.cc254 machine()->Float32Max().IsSupported()) { in ReducePhi()
257 return Change(node, machine()->Float32Max().op(), vtrue, vfalse); in ReducePhi()
362 machine()->Float32Max().IsSupported()) { in ReduceSelect()
363 return Change(node, machine()->Float32Max().op(), vtrue, vfalse); in ReduceSelect()
Dmachine-operator.h343 const OptionalOperator Float32Max();
Draw-machine-assembler.h411 Node* Float32Max(Node* a, Node* b) { in Float32Max() function
412 return AddNode(machine()->Float32Max().op(), a, b); in Float32Max()
Dopcodes.h371 V(Float32Max) \
Dmachine-operator.cc371 V(Float32Max, Operator::kNoProperties, 2, 0, 1) \
/external/v8/test/unittests/compiler/
Dmachine-operator-unittest.cc321 OPTIONAL_ENTRY(Float32Max, 2, 0, 1), // --
Dnode-test-utils.cc2278 IS_BINOP_MATCHER(Float32Max)
/external/v8/test/unittests/compiler/mips/
Dinstruction-selector-mips-unittest.cc1153 TEST_F(InstructionSelectorTest, Float32Max) { in TEST_F() argument
1158 Node* const n = m.Float32Max(p0, p1); in TEST_F()
/external/v8/test/unittests/compiler/mips64/
Dinstruction-selector-mips64-unittest.cc1414 TEST_F(InstructionSelectorTest, Float32Max) { in TEST_F() argument
1419 Node* const n = m.Float32Max(p0, p1); in TEST_F()
/external/v8/test/unittests/compiler/arm/
Dinstruction-selector-arm-unittest.cc2990 TEST_F(InstructionSelectorTest, Float32Max) { in TEST_F() argument
2995 Node* const n = m.Float32Max(p0, p1); in TEST_F()
/external/v8/test/unittests/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc3837 TEST_F(InstructionSelectorTest, Float32Max) { in TEST_F() argument
3842 Node* const n = m.Float32Max(p0, p1); in TEST_F()
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc3723 if (!m.machine()->Float32Max().IsSupported()) return; in TEST()
3725 bt.AddReturn(m.Float32Max(bt.param0, bt.param1)); in TEST()