Ehsan Akhgari
|
2824b29025
|
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 |
|
Ehsan Akhgari
|
ef4b479714
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Ms2ger
|
51f391870b
|
Bug 896341 - Update include guards and modelines in MFBT; r=Waldo
|
2013-07-24 09:41:39 +02:00 |
|
Emanuel Hoogeveen
|
c1374919d0
|
Bug 886128 - Fix various clang warnings and some potential bugs in nonstandard configurations. r=nnethercote,terrence.
--HG--
extra : rebase_source : 0d833ecc9879f5d9fd0a28f9b4eca7793d01aa40
|
2013-06-24 21:32:05 -07:00 |
|
Jeff Gilbert
|
3049ca7c76
|
Bug 881980 - Allow casting CheckedInts to other CheckedInt types. - r=bjacob,waldo
|
2013-06-14 15:19:40 -07:00 |
|
Jeff Gilbert
|
75ab2ff473
|
Bug 874764 - Add CheckedInt support for operator%. - r=bjacob,waldo
|
2013-06-14 15:19:30 -07:00 |
|
Benoit Jacob
|
3701ad32bf
|
Bug 869194 - CheckedInt should consistently reject unsupported types - r=Waldo
|
2013-05-08 17:25:15 -04:00 |
|
Benoit Jacob
|
b6ecd61d8f
|
Bug 869685 - Reintroduce long long support in CheckedInt - r=Waldo
|
2013-05-08 17:25:03 -04:00 |
|
Benoit Jacob
|
cbd3607515
|
Bug 849667 - Fix/simplify CheckedInt's use-outside-of-MFBT setup - r=Waldo
|
2013-03-12 15:40:29 -04:00 |
|
Jeff Walden
|
36bb5830c0
|
Bug 849666 - Make CheckedInt<T>::operator-() not depend on undefined behavior when negating minimum signed values, and add a test for this. Patch is something of a tag-team effort by bjacob and me. r=bjacob
|
2013-03-11 18:45:22 -07:00 |
|
Jeff Walden
|
f22ad604ac
|
Bug 847521 - Allow CheckedInt<signed char> in addition to char/unsigned char. char != signed char (but is guaranteed to have the same representation as either signed char or unsigned char, for backwards-compatibility reasons), so we have to handle signed char as a third character type. r=bjacob
--HG--
rename : content/html/content/src/HTMLObjectElement.h => content/html/content/src/HTMLObjectElement.cpp
extra : rebase_source : d07d72b78fcbae31483d726703b3605561295684
|
2013-03-01 21:49:25 -08:00 |
|
Benoit Jacob
|
17335c2b9e
|
Bug 784309 - CheckedInt.h Intel C++ compilation issue - r=Ms2ger
|
2012-11-02 11:30:40 -04:00 |
|
Benoit Jacob
|
91e33ba3c6
|
Bug 768538 - CheckedInt: HasSignBit should return bool - r=Ms2ger
|
2012-07-08 11:44:22 -04:00 |
|
Benoit Jacob
|
1f740b8204
|
Bug 768538 - CheckedInt: code simplification; remove the separate operator/ implementation - r=Ms2ger
|
2012-07-08 11:25:24 -04:00 |
|
Benoit Jacob
|
da5aee1123
|
Bug 768570 - Fix all the warnings in CheckedInt - r=jwalden
|
2012-07-05 10:13:31 -04:00 |
|
Benoit Jacob
|
9c508f38f4
|
Bug 768538 - 1/2 - Fix undefined behavior in CheckedInt - r=jwalden
|
2012-07-05 10:13:13 -04:00 |
|
Rafael Ávila de Espíndola
|
fb938b31ab
|
Bug 759208 - CheckedInt.h depends on undefined value of signed arithmetic. r=bjacob.
|
2012-05-29 12:48:26 -04:00 |
|
Benoit Jacob
|
ce077b3952
|
Bug 732875 - Further CheckedInt tweaks - r=Ms2ger,jwalden
|
2012-05-17 10:07:24 -04:00 |
|
Dão Gottwald
|
5e32254efb
|
Backed out changeset 45ef0e7b2426
|
2012-05-17 16:48:06 +02:00 |
|
Benoit Jacob
|
d88ddfed0d
|
Bug 732875 - Further CheckedInt tweaks - r=Ms2ger,jwalden
|
2012-05-17 10:07:24 -04:00 |
|
Benoit Jacob
|
6de3cc03da
|
Bug 732875 - 8/8 - move CheckedInt to MFBT, enable unit tests in mfbt/tests - r=jwalden
--HG--
rename : xpcom/ds/CheckedInt.h => mfbt/CheckedInt.h
|
2012-05-14 15:50:20 -04:00 |
|
Ed Morley
|
0f956d7307
|
Backout 345ae68f15f4, b3b40121ac8d, 0d18b7a246d7, 9dbb6064ab58, dee9d7fa8eb6, 63eec6bfa948, 323c6be7cfe8 & f4aac7523a48 (bug 732875) for compilation failures
|
2012-05-14 21:05:24 +01:00 |
|
Benoit Jacob
|
fa8d5e0469
|
Bug 732875 - 8/8 - move CheckedInt to MFBT, enable unit tests in mfbt/tests - r=jwalden
--HG--
rename : xpcom/ds/CheckedInt.h => mfbt/CheckedInt.h
|
2012-05-14 15:50:20 -04:00 |
|