Revision: 23332
Author:   [email protected]
Date:     Mon Aug 25 07:00:33 2014 UTC
Log:      Version 3.29.16.1 (merged r23331)

Correctly forward-declare inline function headers in generic-node.h

[email protected]
BUG=

Review URL: https://codereview.chromium.org/505663002
https://code.google.com/p/v8/source/detail?r=23332

Modified:
 /trunk/src/compiler/generic-node.h
 /trunk/src/compiler/node-properties-inl.h
 /trunk/src/compiler/simplified-operator-reducer.cc
 /trunk/src/version.cc
 /trunk/test/cctest/compiler/test-run-machops.cc

=======================================
--- /trunk/src/compiler/generic-node.h  Thu Aug 21 07:23:04 2014 UTC
+++ /trunk/src/compiler/generic-node.h  Mon Aug 25 07:00:33 2014 UTC
@@ -43,9 +43,9 @@
   S* InputAt(int index) const {
     return static_cast<S*>(GetInputRecordPtr(index)->to);
   }
-  void ReplaceInput(int index, GenericNode* new_input);
-  void AppendInput(Zone* zone, GenericNode* new_input);
-  void InsertInput(Zone* zone, int index, GenericNode* new_input);
+  inline void ReplaceInput(int index, GenericNode* new_input);
+  inline void AppendInput(Zone* zone, GenericNode* new_input);
+  inline void InsertInput(Zone* zone, int index, GenericNode* new_input);

   int UseCount() { return use_count_; }
   S* UseAt(int index) {
@@ -59,7 +59,7 @@
   inline void ReplaceUses(GenericNode* replace_to);
   template <class UnaryPredicate>
   inline void ReplaceUsesIf(UnaryPredicate pred, GenericNode* replace_to);
-  void RemoveAllInputs();
+  inline void RemoveAllInputs();

   void TrimInputCount(int input_count);

@@ -127,8 +127,8 @@
     }
   }

-  void AppendUse(Use* use);
-  void RemoveUse(Use* use);
+  inline void AppendUse(Use* use);
+  inline void RemoveUse(Use* use);

   void* operator new(size_t, void* location) { return location; }

=======================================
--- /trunk/src/compiler/node-properties-inl.h   Sun Aug 24 11:34:17 2014 UTC
+++ /trunk/src/compiler/node-properties-inl.h   Mon Aug 25 07:00:33 2014 UTC
@@ -8,6 +8,7 @@
 #include "src/v8.h"

 #include "src/compiler/common-operator.h"
+#include "src/compiler/generic-node-inl.h"
 #include "src/compiler/node-properties.h"
 #include "src/compiler/opcodes.h"
 #include "src/compiler/operator.h"
=======================================
--- /trunk/src/compiler/simplified-operator-reducer.cc Sun Aug 24 11:34:17 2014 UTC +++ /trunk/src/compiler/simplified-operator-reducer.cc Mon Aug 25 07:00:33 2014 UTC
@@ -2,6 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.

+#include "src/compiler/generic-node-inl.h"
 #include "src/compiler/js-graph.h"
 #include "src/compiler/node-matchers.h"
 #include "src/compiler/simplified-operator-reducer.h"
=======================================
--- /trunk/src/version.cc       Sun Aug 24 11:34:17 2014 UTC
+++ /trunk/src/version.cc       Mon Aug 25 07:00:33 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     29
 #define BUILD_NUMBER      16
-#define PATCH_LEVEL       0
+#define PATCH_LEVEL       1
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0
=======================================
--- /trunk/test/cctest/compiler/test-run-machops.cc Thu Aug 21 00:04:56 2014 UTC +++ /trunk/test/cctest/compiler/test-run-machops.cc Mon Aug 25 07:00:33 2014 UTC
@@ -6,6 +6,7 @@
 #include <limits>

 #include "src/base/bits.h"
+#include "src/compiler/generic-node-inl.h"
 #include "test/cctest/cctest.h"
 #include "test/cctest/compiler/codegen-tester.h"
 #include "test/cctest/compiler/value-helper.h"

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to