Revision 22ead3e0bfdb87516656453336160e0a37b066bf authored by Richard Henderson on 22 October 2017, 00:45:40 UTC, committed by Nguyen Anh Quynh on 22 October 2017, 00:45:40 UTC
* Constify string literals

Use -Wwrite-strings to force string literals to be of
type "const char[]", then fix up all warning fallout.

* Constify common infrastructure

Step one in allowing backend data to be readonly.
Minimal changes to backends for now; just set all pointers
in common structs that aren't modified to const.

* Constify AArch64 backend

Section size changes within libcapstone.so are

-.rodata               602587
-.data.rel.ro          228416
-.data                1003746
+.rodata               769051
+.data.rel.ro          241120
+.data                 824578

* Constify ARM backend

Section size changes within libcapstone.so are

-.rodata               769051
-.data.rel.ro          241120
-.data                 824578
+.rodata               959835
+.data.rel.ro          245120
+.data                 629506

* Constify Mips backend

Section size changes within libcapstone.so are

-.rodata               959835
-.data.rel.ro          245120
-.data                 629506
+.rodata              1069851
+.data.rel.ro          256416
+.data                 508194

* Constify PowerPC backend

Section size changes within libcapstone.so are

-.rodata              1069851
-.data.rel.ro          256416
-.data                 508194
+.rodata              1142715
+.data.rel.ro          272224
+.data                 419490

* Constify Sparc backend

Section size changes within libcapstone.so are

-.rodata              1142715
-.data.rel.ro          272224
-.data                 419490
+.rodata              1175227
+.data.rel.ro          277536
+.data                 381666

* Constify SystemZ backend

Section size changes within libcapstone.so are

-.rodata              1175227
-.data.rel.ro          277536
-.data                 381666
+.rodata              1221883
+.data.rel.ro          278016
+.data                 334498

* Constify X86 backend

Section size changes within libcapstone.so are

-.rodata              1221883
-.data.rel.ro          278016
-.data                 334498
+.rodata              1533531
+.data.rel.ro          281184
+.data                  19714

* Constify XCore backend

Section size changes within libcapstone.so are

-.rodata              1533531
-.data.rel.ro          281184
-.data                  19714
+.rodata              1553026
+.data.rel.ro          281280
+.data                     40
1 parent 8998a3a
History
File Mode Size
MC
arm
benchmark
fuzz
regress
README -rw-r--r-- 1.0 KB
benchmark.py -rwxr-xr-x 3.5 KB
compile_all.sh -rwxr-xr-x 545 bytes
fuzz.py -rwxr-xr-x 3.8 KB
patch_major_os_version.py -rwxr-xr-x 790 bytes
ppcbranch.py -rwxr-xr-x 1.7 KB
python_capstone_setup.py -rwxr-xr-x 127 bytes
regress.py -rwxr-xr-x 51.1 KB
test_all.sh -rwxr-xr-x 202 bytes
test_c.sh -rwxr-xr-x 555 bytes
test_group_name.py -rwxr-xr-x 6.0 KB
test_mc.py -rwxr-xr-x 10.2 KB
test_mc.sh -rwxr-xr-x 599 bytes
test_python.sh -rwxr-xr-x 531 bytes
x86odd.py -rwxr-xr-x 3.7 KB

README

back to top