HomeSort by relevance Sort by last modified time
    Searched refs:ReplaceBool (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/
machine-operator-reducer.cc 172 return ReplaceBool(m.left().Value() == m.right().Value());
181 if (m.LeftEqualsRight()) return ReplaceBool(true); // x == x => true
187 return ReplaceBool(m.left().Value() == m.right().Value());
196 if (m.LeftEqualsRight()) return ReplaceBool(true); // x == x => true
235 return ReplaceBool(m.left().Value() < m.right().Value());
237 if (m.LeftEqualsRight()) return ReplaceBool(false); // x < x => false
243 return ReplaceBool(m.left().Value() <= m.right().Value());
245 if (m.LeftEqualsRight()) return ReplaceBool(true); // x <= x => true
250 if (m.left().Is(kMaxUInt32)) return ReplaceBool(false); // M < x => false
251 if (m.right().Is(0)) return ReplaceBool(false); // x < 0 => fals
    [all...]
machine-operator-reducer.h 50 Reduction ReplaceBool(bool value) { return ReplaceInt32(value ? 1 : 0); }

Completed in 155 milliseconds