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

  /external/v8/test/unittests/compiler/
graph-reducer-unittest.h 16 MOCK_METHOD1(Revisit, void(Node*));
common-operator-reducer-unittest.cc 214 EXPECT_CALL(editor, Revisit(merge));
232 EXPECT_CALL(editor, Revisit(loop));
260 EXPECT_CALL(editor, Revisit(merge));
280 EXPECT_CALL(editor, Revisit(loop));
300 EXPECT_CALL(editor, Revisit(merge));
320 EXPECT_CALL(editor, Revisit(merge));
338 EXPECT_CALL(editor, Revisit(merge));
356 EXPECT_CALL(editor, Revisit(merge));
374 EXPECT_CALL(editor, Revisit(merge));
392 EXPECT_CALL(editor, Revisit(merge))
    [all...]
dead-code-elimination-unittest.cc 225 EXPECT_CALL(editor, Revisit(phi));
226 EXPECT_CALL(editor, Revisit(ephi));
312 EXPECT_CALL(editor, Revisit(phi));
313 EXPECT_CALL(editor, Revisit(ephi));
graph-reducer-unittest.cc 252 TEST_F(AdvancedReducerTest, Revisit) {
256 Revisit(node);
264 EXPECT_CALL(e, Revisit(node0));
265 EXPECT_CALL(e, Revisit(node1));
  /external/v8/src/compiler/
graph-reducer.h 73 // Revisit the {node} again later.
74 virtual void Revisit(Node* node) = 0;
93 void Revisit(Node* node) {
95 editor_->Revisit(node);
166 // Revisit queue operations.
168 void Revisit(Node* node) final;
graph-reducer.cc 56 // If the stack becomes empty, revisit any nodes in the revisit queue.
67 // Check if we have new nodes to revisit.
156 // Revisit all uses of the node.
158 // Don't revisit this node if it refers to itself.
159 if (user != node) Revisit(user);
180 // Don't revisit this node if it refers to itself.
181 if (user != node) Revisit(user);
191 // Don't revisit this node if it refers to itself.
192 if (user != node) Revisit(user)
    [all...]
common-operator-reducer.cc 94 // Update the condition of {branch}. No need to mark the uses for revisit,
149 Revisit(graph()->end());
209 Revisit(merge);
244 Revisit(merge);
251 Revisit(merge);
256 Revisit(merge);
266 Revisit(merge);
273 Revisit(merge);
278 Revisit(merge);
296 Revisit(merge)
    [all...]
dead-code-elimination.cc 110 // Trim input counts for all phi uses and revisit them.
115 Revisit(use);
branch-elimination.cc 110 Revisit(graph()->end());
199 // we would only revisit control uses if there is change).
js-inlining.cc 148 Revisit(jsgraph_->graph()->end());
319 // TODO(turbofan): We might want to revisit this restriction later when we
js-intrinsic-lowering.cc 121 Revisit(graph()->end());
js-native-context-specialization.cc     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 76 Revisit.clear();
90 SmallVector<WeakVH,16> Revisit;
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp     [all...]

Completed in 1220 milliseconds