Home
last modified time | relevance | path

Searched refs:ReplaceInt32 (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/compiler/
Dmachine-operator-reducer.cc172 return ReplaceInt32( in Reduce()
220 return ReplaceInt32(m.left().Value() * m.right().Value()); in Reduce()
621 if (m.HasValue()) return ReplaceInt32(FastD2I(m.Value())); in Reduce()
627 if (m.HasValue()) return ReplaceInt32(FastD2UI(m.Value())); in Reduce()
653 if (m.HasValue()) return ReplaceInt32(DoubleToInt32(m.Value())); in Reduce()
659 if (m.HasValue()) return ReplaceInt32(static_cast<int32_t>(m.Value())); in Reduce()
678 if (m.HasValue()) return ReplaceInt32(static_cast<int32_t>(m.Value())); in Reduce()
748 return ReplaceInt32(static_cast<uint32_t>(m.left().Value()) - in ReduceInt32Sub()
751 if (m.LeftEqualsRight()) return ReplaceInt32(0); // x - x => 0 in ReduceInt32Sub()
785 return ReplaceInt32( in ReduceInt32Div()
[all …]
Dsimplified-operator-reducer.h40 Reduction ReplaceInt32(int32_t value); in NON_EXPORTED_BASE()
42 return ReplaceInt32(bit_cast<int32_t>(value)); in NON_EXPORTED_BASE()
Dsimplified-operator-reducer.cc60 if (m.HasValue()) return ReplaceInt32(m.Value()->BooleanValue()); in Reduce()
97 if (m.HasValue()) return ReplaceInt32(DoubleToInt32(m.Value())); in Reduce()
122 if (m.HasValue()) return ReplaceInt32(DoubleToInt32(m.Value())); in Reduce()
241 Reduction SimplifiedOperatorReducer::ReplaceInt32(int32_t value) { in ReplaceInt32() function in v8::internal::compiler::SimplifiedOperatorReducer
Dmachine-operator-reducer.h59 Reduction ReplaceBool(bool value) { return ReplaceInt32(value ? 1 : 0); } in NON_EXPORTED_BASE()
66 Reduction ReplaceInt32(int32_t value) { in NON_EXPORTED_BASE()