gecko/tools/profiler
Ehsan Akhgari 085494b95d Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:

# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.cc" \
         -o -iname "*.mm" \) | \
    xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}

convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
                   media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
                   modules/libmar/src/mar_private.h \
                   modules/libmar/src/mar.h


# assert_replacer.py
#!/usr/bin/python

import sys
import re

pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")

def replaceInPlace(fname):
  print fname
  f = open(fname, "rw+")
  lines = f.readlines()
  for i in range(0, len(lines)):
    while True:
      index = re.search(pattern, lines[i])
      if index != None:
        index = index.start()
        lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
        for j in range(i + 1, len(lines)):
          if lines[j].find("                 ", index) == index:
            lines[j] = lines[j][0:index] + lines[j][index+4:]
          else:
            break
      else:
        break
  f.seek(0, 0)
  f.truncate()
  f.write("".join(lines))
  f.close()

argc = len(sys.argv)
for i in range(1, argc):
  replaceInPlace(sys.argv[i])

--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
2013-07-18 13:59:53 -04:00
..
tests
android-signal-defs.h Bug 859830: determine Android API level through android/api-leve.h instead. r=glandium 2013-04-12 13:39:42 +08:00
BreakpadSampler.cpp bug 876519 - include ostream instead of iostream in the profiler to get rid of static initializers r=ehsan 2013-05-27 08:29:24 -04:00
GeckoProfiler.h Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
GeckoProfilerFunc.h Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted 2013-07-30 10:25:31 -04:00
GeckoProfilerImpl.h Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
IOInterposer.cpp Bug 579517 follow-up: Remove NSPR types that crept in 2013-06-23 20:58:53 -04:00
IOInterposer.h Bug 867762: NSPR and SQLite Main Thread I/O Interposing. r=BenWa 2013-06-14 12:01:02 -06:00
JSAObjectBuilder.h
JSCustomObjectBuilder.cpp
JSCustomObjectBuilder.h
JSObjectBuilder.cpp Bug 877540. Fix remaining unsafe reference hazards in browser code. r=terrence 2013-05-30 17:46:48 -04:00
JSObjectBuilder.h Bug 869784 - Fix rooting hazards in the profiler; r=BenWa,till 2013-05-08 20:21:37 -04:00
local_debug_info_symbolizer.cc Bug 861141 - Connect Breakpad on Android to faulty.lib's mmap interface. r=glandium,ted 2013-04-15 16:46:43 +02:00
local_debug_info_symbolizer.h
Makefile.in backout bug 886526 because it probably made us use a lot more memory to link on windows 2013-07-29 11:03:21 -04:00
moz.build Bug 880245 - Move EXTRA_JS_MODULES to moz.build (batch #4); r=joey 2013-07-01 11:34:30 -04:00
nsIProfiler.idl Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
nsIProfileSaveEvent.idl Bug 853358 - Add plugin profiling support. r=ehsan,bsmedberg 2013-03-21 10:17:23 +01:00
NSPRInterposer.cpp Bug 579517 follow-up: Remove NSPR types that crept in 2013-06-23 20:58:53 -04:00
NSPRInterposer.h Bug 579517 follow-up: Remove NSPR types that crept in 2013-06-23 20:58:53 -04:00
nsProfiler.cpp Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
nsProfiler.h
nsProfilerCIID.h
nsProfilerFactory.cpp
platform-linux.cc Bug 892201: replace SPS signal handler completion busy loop with POSIX semaphore. r=benwa 2013-07-11 23:41:19 -04:00
platform-macos.cc Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
platform-win32.cc Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
platform.cpp Bug 887826 - Disable multi-threaded profiling on b2g to reduce memory usage. r=jseward 2013-07-16 09:56:43 -04:00
platform.h Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted 2013-07-30 10:25:31 -04:00
PlatformMacros.h Bug 856566 - Fixed crashreporter compilation and profiler on mingw. r=ted 2013-04-05 11:29:50 +02:00
ProfileEntry.cpp bug 876519 - include ostream instead of iostream in the profiler to get rid of static initializers r=ehsan 2013-05-27 08:29:24 -04:00
ProfileEntry.h Bug 734691 - Port multi-thread support to win/mac. r=snorp,smaug 2013-04-03 18:59:17 -04:00
Profiler.jsm
ProfilerIOInterposeObserver.cpp Bug 867762: NSPR and SQLite Main Thread I/O Interposing. r=BenWa 2013-06-14 12:01:02 -06:00
ProfilerIOInterposeObserver.h Bug 867762: NSPR and SQLite Main Thread I/O Interposing. r=BenWa 2013-06-14 12:01:02 -06:00
PseudoStack.h Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted 2013-07-30 10:25:31 -04:00
SaveProfileTask.cpp Bug 877540. Fix remaining unsafe reference hazards in browser code. r=terrence 2013-05-30 17:46:48 -04:00
SaveProfileTask.h bug 876519 - include ostream instead of iostream in the profiler to get rid of static initializers r=ehsan 2013-05-27 08:29:24 -04:00
shared-libraries-linux.cc Bug 898810 - Use bionic's getline where available, r=benwa 2013-07-29 13:17:28 -04:00
shared-libraries-macos.cc
shared-libraries-win32.cc
shared-libraries.h Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted 2013-07-30 10:25:31 -04:00
shim_mac_dump_syms.h
shim_mac_dump_syms.mm
SQLiteInterposer.cpp Bug 867762: NSPR and SQLite Main Thread I/O Interposing. r=BenWa 2013-06-14 12:01:02 -06:00
SQLiteInterposer.h Bug 867762: NSPR and SQLite Main Thread I/O Interposing. r=BenWa 2013-06-14 12:01:02 -06:00
TableTicker.cpp Bug 872496 - Allow early registration of stack tops, to improve native unwind quality. r=bgirard. 2013-05-28 14:03:38 +02:00
TableTicker.h Bug 873914 - Allow selecting profiled thread. r=snorp 2013-05-16 16:31:50 -04:00
UnwinderThread2.cpp Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo 2013-07-18 13:59:53 -04:00
UnwinderThread2.h Bug 872496 - Allow early registration of stack tops, to improve native unwind quality. r=bgirard. 2013-05-28 14:03:38 +02:00
v8-support.h