Revision: 6119
Author: [email protected]
Date: Fri Dec 24 06:44:15 2010
Log: Force inlining of BodyVisitorBase::IteratePointers.

Review URL: http://codereview.chromium.org/6042007
http://code.google.com/p/v8/source/detail?r=6119

Modified:
 /branches/bleeding_edge/src/objects-visiting.h

=======================================
--- /branches/bleeding_edge/src/objects-visiting.h      Tue Dec  7 03:31:57 2010
+++ /branches/bleeding_edge/src/objects-visiting.h      Fri Dec 24 06:44:15 2010
@@ -186,9 +186,9 @@
 template<typename StaticVisitor>
 class BodyVisitorBase : public AllStatic {
  public:
-  static inline void IteratePointers(HeapObject* object,
+  INLINE(static void IteratePointers(HeapObject* object,
                                      int start_offset,
-                                     int end_offset) {
+                                     int end_offset)) {
     Object** start_slot = reinterpret_cast<Object**>(object->address() +
                                                      start_offset);
     Object** end_slot = reinterpret_cast<Object**>(object->address() +

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to