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

/external/chromium_org/v8/src/compiler/
H A Dsimplified-operator-reducer.h32 Reduction ReplaceInt32(int32_t value);
34 return ReplaceInt32(bit_cast<int32_t>(value));
H A Dmachine-operator-reducer.cc54 return ReplaceInt32(m.left().Value() & m.right().Value());
64 return ReplaceInt32(m.left().Value() | m.right().Value());
123 return ReplaceInt32(m.left().Value() ^ m.right().Value());
125 if (m.LeftEqualsRight()) return ReplaceInt32(0); // x ^ x => 0
132 return ReplaceInt32(m.left().Value() << m.right().Value());
140 return ReplaceInt32(m.left().Value() >> m.right().Value());
148 return ReplaceInt32(m.left().Value() >> m.right().Value());
156 return ReplaceInt32(
180 return ReplaceInt32(static_cast<uint32_t>(m.left().Value()) +
189 return ReplaceInt32(static_cas
[all...]
H A Dmachine-operator-reducer.h35 Reduction ReplaceBool(bool value) { return ReplaceInt32(value ? 1 : 0); }
42 Reduction ReplaceInt32(int32_t value) { function in class:v8::internal::compiler::FINAL
H A Dsimplified-operator-reducer.cc41 return ReplaceInt32(0);
44 return ReplaceInt32(1);
75 if (m.HasValue()) return ReplaceInt32(DoubleToInt32(m.Value()));
118 Reduction SimplifiedOperatorReducer::ReplaceInt32(int32_t value) { function in class:v8::internal::compiler::SimplifiedOperatorReducer

Completed in 96 milliseconds