Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Unified Diff: src/compiler/node.h

Issue 1022783002: [turbofan] Remove last_use_ field from Node. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/node.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/node.h
diff --git a/src/compiler/node.h b/src/compiler/node.h
index ae160335b9ccb2f404b1ed5b4f7cd2765b37ac21..07cf9487b27c4d0502e8b7cba89c86d4a064474b 100644
--- a/src/compiler/node.h
+++ b/src/compiler/node.h
@@ -67,7 +67,6 @@ class Node FINAL {
void TrimInputCount(int new_input_count);
int UseCount() const;
- Node* UseAt(int index) const;
void ReplaceUses(Node* replace_to);
class InputEdges FINAL {
@@ -226,7 +225,6 @@ class Node FINAL {
NodeId const id_;
unsigned bit_field_;
Use* first_use_;
- Use* last_use_;
union {
// When a node is initially allocated, it uses a static buffer to hold its
// inputs under the assumption that the number of outputs will not increase.
« no previous file with comments | « no previous file | src/compiler/node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698