summaryrefslogtreecommitdiffstats
path: root/intl/icu/source/tools/memcheck
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /intl/icu/source/tools/memcheck
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/icu/source/tools/memcheck')
-rwxr-xr-xintl/icu/source/tools/memcheck/ICUMemCheck.pl64
1 files changed, 64 insertions, 0 deletions
diff --git a/intl/icu/source/tools/memcheck/ICUMemCheck.pl b/intl/icu/source/tools/memcheck/ICUMemCheck.pl
new file mode 100755
index 000000000..019f7ecd7
--- /dev/null
+++ b/intl/icu/source/tools/memcheck/ICUMemCheck.pl
@@ -0,0 +1,64 @@
+# Copyright (C) 2016 and later: Unicode, Inc. and others.
+# License & terms of use: http://www.unicode.org/copyright.html
+# ***********************************************************************
+# * COPYRIGHT:
+# * Copyright (c) 2004-2006, International Business Machines Corporation
+# * and others. All Rights Reserved.
+# ***********************************************************************
+#
+# This perl script checks for correct memory function usage in ICU library code.
+# It works with Linux builds of ICU using clang or gcc.
+#
+# To run it,
+# 1. Build ICU
+# 2. cd icu/source
+# 3. perl tools/memcheck/ICUMemCheck.pl
+#
+# All object files containing direct references to C or C++ runtime library memory
+# functions will be listed in the output.
+#
+# For ICU 58, the expected output is
+# common/uniset.o U operator delete(void*)
+# common/unifilt.o U operator delete(void*)
+# common/cmemory.o U malloc
+# common/cmemory.o U free
+# i18n/strrepl.o U operator delete(void*)
+#
+# cmemory.c Expected failures from uprv_malloc, uprv_free implementation.
+# uniset.cpp Fails because of SymbolTable::~SymbolTable()
+# unifilt.cpp Fails because of UnicodeMatcher::~UnicodeMatcher()
+# strrepl.cpp Fails because of UnicodeReplacer::~UnicodeReplacer()
+#
+# To verify that no additional problems exist in the .cpp files, #ifdef out the
+# offending destructors, rebuild icu, and re-run the tool. The problems should
+# be gone.
+#
+# The problem destructors all are for mix-in style interface classes.
+# These classes can not derive from UObject or UMemory because of multiple-inheritance
+# problems, so they don't get the ICU memory functions. The delete code
+# in the destructors will never be called because stand-alone instances of
+# the classes cannot exist.
+#
+$fileNames = `find common i18n io -name "*.o" -print`;
+foreach $f (split('\n', $fileNames)) {
+ $symbols = `nm -u -C $f`;
+ if ($symbols =~ /U +operator delete\(void\*\)/) {
+ print "$f $&\n";
+ }
+ if ($symbols =~ /U +operator delete\[\]\(void\*\)/) {
+ print "$f $&\n";
+ }
+ if ($symbols =~ /U +operator new\(unsigned int\)/) {
+ print "$f $&\n";
+ }
+ if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {
+ print "$f $&\n";
+ }
+ if ($symbols =~ /U +malloc.*/) {
+ print "$f $&\n";
+ }
+ if ($symbols =~ /(?m:U +free$)/) {
+ print "$f $&\n";
+ }
+
+}