Searched refs:Float32Max (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 254 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()
|
D | machine-operator.h | 343 const OptionalOperator Float32Max();
|
D | raw-machine-assembler.h | 411 Node* Float32Max(Node* a, Node* b) { in Float32Max() function 412 return AddNode(machine()->Float32Max().op(), a, b); in Float32Max()
|
D | opcodes.h | 371 V(Float32Max) \
|
D | machine-operator.cc | 371 V(Float32Max, Operator::kNoProperties, 2, 0, 1) \
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 321 OPTIONAL_ENTRY(Float32Max, 2, 0, 1), // --
|
D | node-test-utils.cc | 2278 IS_BINOP_MATCHER(Float32Max)
|
/external/v8/test/unittests/compiler/mips/ |
D | instruction-selector-mips-unittest.cc | 1153 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/ |
D | instruction-selector-mips64-unittest.cc | 1414 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/ |
D | instruction-selector-arm-unittest.cc | 2990 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/ |
D | instruction-selector-arm64-unittest.cc | 3837 TEST_F(InstructionSelectorTest, Float32Max) { in TEST_F() argument 3842 Node* const n = m.Float32Max(p0, p1); in TEST_F()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3723 if (!m.machine()->Float32Max().IsSupported()) return; in TEST() 3725 bt.AddReturn(m.Float32Max(bt.param0, bt.param1)); in TEST()
|