Revision: 15941
Author:   [email protected]
Date:     Mon Jul 29 12:02:16 2013
Log:      Remove unused methods from RuntimeProfiler

Also removed Logger fields that used to be used for writing compressed logs.

BUG=None
[email protected], [email protected]

Review URL: https://codereview.chromium.org/20768002
http://code.google.com/p/v8/source/detail?r=15941

Modified:
 /branches/bleeding_edge/src/log.cc
 /branches/bleeding_edge/src/log.h
 /branches/bleeding_edge/src/runtime-profiler.cc
 /branches/bleeding_edge/src/runtime-profiler.h

=======================================
--- /branches/bleeding_edge/src/log.cc  Fri Jul 26 06:50:23 2013
+++ /branches/bleeding_edge/src/log.cc  Mon Jul 29 12:02:16 2013
@@ -716,11 +716,6 @@
     jit_logger_(NULL),
     listeners_(5),
     is_initialized_(false),
-    last_address_(NULL),
-    prev_sp_(NULL),
-    prev_function_(NULL),
-    prev_to_(NULL),
-    prev_code_(NULL),
     epoch_(0) {
 }

=======================================
--- /branches/bleeding_edge/src/log.h   Fri Jul 26 06:50:23 2013
+++ /branches/bleeding_edge/src/log.h   Mon Jul 29 12:02:16 2013
@@ -450,17 +450,6 @@
   // 'true' between SetUp() and TearDown().
   bool is_initialized_;

-  // Support for 'incremental addresses' in compressed logs:
-  //  LogMessageBuilder::AppendAddress(Address addr)
-  Address last_address_;
-  //  Logger::TickEvent(...)
-  Address prev_sp_;
-  Address prev_function_;
-  //  Logger::MoveEventInternal(...)
-  Address prev_to_;
-  //  Logger::FunctionCreateEvent(...)
-  Address prev_code_;
-
   int64_t epoch_;

   friend class CpuProfiler;
=======================================
--- /branches/bleeding_edge/src/runtime-profiler.cc     Thu Jul 11 09:45:58 2013
+++ /branches/bleeding_edge/src/runtime-profiler.cc     Mon Jul 29 12:02:16 2013
@@ -406,11 +406,6 @@
 void RuntimeProfiler::TearDown() {
   // Nothing to do.
 }
-
-
-int RuntimeProfiler::SamplerWindowSize() {
-  return kSamplerWindowSize;
-}


 // Update the pointers in the sampler window after a GC.
=======================================
--- /branches/bleeding_edge/src/runtime-profiler.h      Fri Jun 14 04:35:00 2013
+++ /branches/bleeding_edge/src/runtime-profiler.h      Mon Jul 29 12:02:16 2013
@@ -49,9 +49,6 @@
   void Reset();
   void TearDown();

-  Object** SamplerWindowAddress();
-  int SamplerWindowSize();
-
   void NotifyICChanged() { any_ic_changed_ = true; }

   // Rate limiting support.

--
--
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/groups/opt_out.


Reply via email to