Title: [124700] trunk/Tools
Revision
124700
Author
[email protected]
Date
2012-08-04 07:23:27 -0700 (Sat, 04 Aug 2012)

Log Message

Unreviewed: Web Inspector: extend instrumenting methods set in ReportMemoryUsage clang plugin
Three methods addString, addVectorPtr and addInstrumentedVectorPtr were added to the list of instrumentation methods.

* clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp:
(clang::ReportMemoryUsageConsumer::ReportMemoryUsageConsumer):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (124699 => 124700)


--- trunk/Tools/ChangeLog	2012-08-04 11:13:53 UTC (rev 124699)
+++ trunk/Tools/ChangeLog	2012-08-04 14:23:27 UTC (rev 124700)
@@ -1,3 +1,11 @@
+2012-08-04  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed: Web Inspector: extend instrumenting methods set in ReportMemoryUsage clang plugin
+        Three methods addString, addVectorPtr and addInstrumentedVectorPtr were added to the list of instrumentation methods.
+
+        * clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp:
+        (clang::ReportMemoryUsageConsumer::ReportMemoryUsageConsumer):
+
 2012-08-03  Yaron Friedman  <[email protected]>
 
         [Chrome-Android] - Prepare apk tests for switch to checked in SDK.

Modified: trunk/Tools/clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp (124699 => 124700)


--- trunk/Tools/clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp	2012-08-04 11:13:53 UTC (rev 124699)
+++ trunk/Tools/clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp	2012-08-04 14:23:27 UTC (rev 124700)
@@ -158,13 +158,16 @@
         instrumentationMethods.push_back("addMember");
         instrumentationMethods.push_back("addInstrumentedMember");
         instrumentationMethods.push_back("addVector");
+        instrumentationMethods.push_back("addVectorPtr");
         instrumentationMethods.push_back("addInstrumentedVector");
+        instrumentationMethods.push_back("addInstrumentedVectorPtr");
         instrumentationMethods.push_back("addHashSet");
         instrumentationMethods.push_back("addInstrumentedHashSet");
         instrumentationMethods.push_back("addHashMap");
         instrumentationMethods.push_back("addInstrumentedHashMap");
         instrumentationMethods.push_back("addListHashSet");
         instrumentationMethods.push_back("addRawBuffer");
+        instrumentationMethods.push_back("addString");
     }
 
     virtual void HandleTranslationUnit(clang::ASTContext& context)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to