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

  /external/v8/test/unittests/compiler/
graph-unittest.h 45 Node* FalseConstant();
graph-unittest.cc 63 Node* GraphTest::FalseConstant() {
simplified-operator-reducer-unittest.cc 119 Reduce(graph()->NewNode(simplified()->BooleanNot(), FalseConstant()));
165 graph()->NewNode(simplified()->ChangeTaggedToBit(), FalseConstant()));
common-operator-reducer-unittest.cc 112 graph()->NewNode(common()->Branch(hint), FalseConstant(), control);
474 FalseConstant(), p0, p1);
  /external/v8/src/compiler/
escape-analysis-reducer.cc 189 ReplaceWithValue(node, jsgraph()->FalseConstant());
191 return Replace(jsgraph()->FalseConstant());
194 ReplaceWithValue(node, jsgraph()->FalseConstant());
196 return Replace(jsgraph()->FalseConstant());
206 ReplaceWithValue(node, jsgraph()->FalseConstant());
208 return Replace(jsgraph()->FalseConstant());
js-graph.h 54 Node* FalseConstant();
83 return is_true ? TrueConstant() : FalseConstant();
js-graph.cc 81 Node* JSGraph::FalseConstant() {
126 return FalseConstant();
simplified-operator-reducer.cc 56 if (m.Is(0)) return Replace(jsgraph()->FalseConstant());
196 return Replace(jsgraph()->FalseConstant());
bytecode-graph-builder.cc 607 Node* node = jsgraph()->FalseConstant();
    [all...]
js-intrinsic-lowering.cc 196 Node* vtrue = jsgraph()->FalseConstant();
js-typed-lowering.cc 659 jsgraph()->FalseConstant()));
671 jsgraph()->FalseConstant(),
    [all...]
representation-change.cc 183 return OpParameter<int32_t>(node) == 0 ? jsgraph()->FalseConstant()
effect-control-linearizer.cc 597 Node* vfalse = jsgraph()->FalseConstant();
    [all...]
ast-graph-builder.cc     [all...]
simplified-lowering.cc     [all...]
  /external/v8/test/cctest/compiler/
test-js-constant-cache.cc 194 CHECK_EQ(T.FalseConstant(), T.FalseConstant());
206 T.FalseConstant(), T.NullConstant(), T.ZeroConstant(),
263 CHECK_EQ(T.FalseConstant(), T.Constant(T.factory()->false_value()));
275 CHECK_EQ(*T.factory()->false_value(), *T.handle(T.FalseConstant()));
287 CHECK(T.TypeOf(T.FalseConstant())->Is(Type::Boolean()));
321 CheckGetCachedNodesContains(&T, T.FalseConstant());
453 T.FalseConstant(),
test-osr.cc 348 T.jsgraph.FalseConstant());
362 CheckInputs(osr_phi, T.osr_values[0], T.jsgraph.FalseConstant(), inner.loop);
390 T.jsgraph.FalseConstant(), new_inner_loop);
407 T.jsgraph.FalseConstant());
410 outer_phi->ReplaceInput(2, T.jsgraph.FalseConstant());
429 CheckInputs(osr_phi, T.osr_values[0], T.jsgraph.FalseConstant(), inner.loop);
442 CheckInputs(new_entry_phi, osr_phi, T.jsgraph.FalseConstant(), new_merge);
464 T.jsgraph.FalseConstant(), new_inner_loop);
466 T.jsgraph.FalseConstant(), new_outer_loop);
test-representation-change.cc 132 Node* false_node = r.jsgraph()->FalseConstant();
test-simplified-lowering.cc 873 Node* f = t.jsgraph.FalseConstant();
890 Node* f = t.jsgraph.FalseConstant();
    [all...]

Completed in 223 milliseconds