OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReplaceInt32
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/compiler/
simplified-operator-reducer.h
32
Reduction
ReplaceInt32
(int32_t value);
34
return
ReplaceInt32
(bit_cast<int32_t>(value));
simplified-operator-reducer.cc
43
if (m.HasValue()) return
ReplaceInt32
(m.Value()->BooleanValue());
71
if (m.HasValue()) return
ReplaceInt32
(DoubleToInt32(m.Value()));
133
Reduction SimplifiedOperatorReducer::
ReplaceInt32
(int32_t value) {
machine-operator-reducer.h
50
Reduction ReplaceBool(bool value) { return
ReplaceInt32
(value ? 1 : 0); }
57
Reduction
ReplaceInt32
(int32_t value) {
machine-operator-reducer.cc
142
return
ReplaceInt32
(m.left().Value() ^ m.right().Value());
144
if (m.LeftEqualsRight()) return
ReplaceInt32
(0); // x ^ x => 0
159
return
ReplaceInt32
(m.left().Value() >> m.right().Value());
169
return
ReplaceInt32
(
213
return
ReplaceInt32
(m.left().Value() * m.right().Value());
392
if (m.HasValue()) return
ReplaceInt32
(FastD2I(m.Value()));
398
if (m.HasValue()) return
ReplaceInt32
(FastD2UI(m.Value()));
426
if (m.HasValue()) return
ReplaceInt32
(static_cast<int32_t>(m.Value()));
489
return
ReplaceInt32
(static_cast<uint32_t>(m.left().Value()) -
492
if (m.LeftEqualsRight()) return
ReplaceInt32
(0); // x - x =>
[
all
...]
Completed in 812 milliseconds