Searched refs:Float32Min (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 249 machine()->Float32Min().IsSupported()) { in ReducePhi() 252 return Change(node, machine()->Float32Min().op(), vtrue, vfalse); in ReducePhi() 359 machine()->Float32Min().IsSupported()) { in ReduceSelect() 360 return Change(node, machine()->Float32Min().op(), vtrue, vfalse); in ReduceSelect()
|
D | machine-operator.h | 344 const OptionalOperator Float32Min();
|
D | raw-machine-assembler.h | 414 Node* Float32Min(Node* a, Node* b) { in Float32Min() function 415 return AddNode(machine()->Float32Min().op(), a, b); in Float32Min()
|
D | opcodes.h | 372 V(Float32Min) \
|
D | machine-operator.cc | 372 V(Float32Min, Operator::kNoProperties, 2, 0, 1) \
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 322 OPTIONAL_ENTRY(Float32Min, 2, 0, 1), // --
|
D | node-test-utils.cc | 2279 IS_BINOP_MATCHER(Float32Min)
|
/external/v8/test/unittests/compiler/mips/ |
D | instruction-selector-mips-unittest.cc | 1170 TEST_F(InstructionSelectorTest, Float32Min) { in TEST_F() argument 1175 Node* const n = m.Float32Min(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/mips64/ |
D | instruction-selector-mips64-unittest.cc | 1431 TEST_F(InstructionSelectorTest, Float32Min) { in TEST_F() argument 1436 Node* const n = m.Float32Min(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/arm/ |
D | instruction-selector-arm-unittest.cc | 3008 TEST_F(InstructionSelectorTest, Float32Min) { in TEST_F() argument 3013 Node* const n = m.Float32Min(p0, p1); in TEST_F()
|
/external/v8/test/unittests/compiler/arm64/ |
D | instruction-selector-arm64-unittest.cc | 3856 TEST_F(InstructionSelectorTest, Float32Min) { in TEST_F() argument 3861 Node* const n = m.Float32Min(p0, p1); in TEST_F()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3753 if (!m.machine()->Float32Min().IsSupported()) return; in TEST() 3755 bt.AddReturn(m.Float32Min(bt.param0, bt.param1)); in TEST()
|