capstone/arch/SystemZ
Richard Henderson 5423b215bf Constify backend data (#1040)
* 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
2017-10-22 08:45:40 +08:00
..
SystemZDisassembler.c Constify backend data (#1040) 2017-10-22 08:45:40 +08:00
SystemZDisassembler.h skip stdint.h for windows driver configuration 2016-04-23 15:58:31 -07:00
SystemZGenAsmWriter.inc Constify backend data (#1040) 2017-10-22 08:45:40 +08:00
SystemZGenDisassemblerTables.inc Constify backend data (#1040) 2017-10-22 08:45:40 +08:00
SystemZGenInstrInfo.inc systemz: update core. also update Python & Java bindings 2014-08-26 12:14:25 +08:00
SystemZGenRegisterInfo.inc Constify backend data (#1040) 2017-10-22 08:45:40 +08:00
SystemZGenSubtargetInfo.inc add SystemZ arch 2014-03-23 08:35:45 +08:00
SystemZInstPrinter.c Constify backend data (#1040) 2017-10-22 08:45:40 +08:00
SystemZInstPrinter.h x86: add immediate operand (1) for SHL/SHR/ROR/ROL/SAR/SAL in detail mode & Intel syntax 2014-05-19 16:46:31 +08:00
SystemZMapping.c Constify backend data (#1040) 2017-10-22 08:45:40 +08:00
SystemZMapping.h add new API cs_group_name() to return group name in string, given the group id 2014-07-08 08:59:27 +08:00
SystemZMCTargetDesc.c enable arch code from source with CAPSTONE_HAS_* for MSVC to pick up 2014-05-14 11:26:41 +08:00
SystemZMCTargetDesc.h add SystemZ arch 2014-03-23 08:35:45 +08:00
SystemZModule.c ppc: fix endian check (#1029) 2017-10-20 23:33:24 +08:00