## ### # IP: GHIDRA # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ## # The available pcode tests are recorded here as instances of the 'name' # python class. PCodeTest({ 'name': 'ARM', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-arm', 'toolchain': 'ARM/arm-eabi', 'language_id': 'ARM:LE:32:v7', 'ccflags': '-L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARM_BE', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-armbe', 'toolchain': 'ARM/armbe-eabi', 'language_id': 'ARM:BE:32:v7', 'ccflags': '-mbig-endian -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'proc_test': 'arm', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, }) PCodeTest({ 'name': 'ARM2', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mcpu=arm2 -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARMv5', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-arm', 'toolchain': 'ARM/arm-eabi', 'language_id': 'ARM:LE:32:v5', 'ccflags': '-march=armv5 -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', }) PCodeTest({ 'name': 'ARM7', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mcpu=arm7 -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARM8', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mcpu=arm8 -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARM9', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mcpu=arm9 -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARM10e', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-arm', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mcpu=arm10e -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARM_thumb', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-arm -cpu cortex-a8', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mthumb -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s/thumb -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'ARM_BE_thumb', 'build_all': 1, 'toolchain': 'ARM/armbe-eabi', 'ccflags': '-mthumb -mbig-endian -L %(toolchain_dir)s/lib/gcc/armbe-eabi/%(gcc_version)s/thumb -lgcc', 'language_id': 'ARM:BE:32:v7', 'proc_test': 'arm', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, }) PCodeTest({ 'name': 'ARM_cortex', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-arm -cpu cortex-a8', 'toolchain': 'ARM/arm-eabi', 'ccflags': '-mthumb -mcpu=cortex-a8 -mfloat-abi=softfp -L %(toolchain_dir)s/lib/gcc/arm-eabi/%(gcc_version)s/thumb -lgcc', 'language_id': 'ARM:LE:32:v7', 'proc_test': 'arm', }) PCodeTest({ 'name': 'AARCH64', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-aarch64', 'toolchain': 'ARM/aarch64-elf', 'language_id': 'AARCH64:LE:64:v8A', }) PCodeTest({ 'name': 'AARCH64_ILP32', 'toolchain': 'ARM/aarch64-elf', 'ccflags': '-mabi=ilp32', 'language_id': 'AARCH64:LE:64:v8A', }) PCodeTest({ 'name': 'AARCH64_BE', 'build_all': 1, 'toolchain': 'ARM/aarch64_be-elf', 'language_id': 'AARCH64:BE:64:v8A', }) PCodeTest({ 'name': 'AARCH64_BE_ILP32', 'toolchain': 'ARM/aarch64_be-elf', 'ccflags': '-mabi=ilp32', 'language_id': 'AARCH64:BE:64:v8A', }) PCodeTest({ 'name': 'AVR', 'build_all': 1, 'toolchain': 'AVR/avr-elf', 'ccflags': '-mmcu=avr6 -lgcc', 'language_id': 'avr32:BE:32:default', 'processor': 'Atmel', 'has_float': 0, 'has_double': 0, }) PCodeTest({ 'name': 'AVR8_31', 'toolchain': 'AVR/avr-elf', 'ccflags': '-mmcu=avr31 -lgcc', 'language_id': 'avr8:LE:16:default', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, 'small_build': 1, }) PCodeTest({ 'name': 'AVR8_51', 'toolchain': 'AVR/avr-elf', 'ccflags': '-mmcu=avr51 -lgcc', 'language_id': 'avr8:LE:16:extended', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, 'small_build': 1, }) PCodeTest({ 'name': 'AVR8_6', 'toolchain': 'AVR/avr-elf', 'ccflags': '-mmcu=avr6 -lgcc', 'language_id': 'avr8:LE:16:atmega256', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, 'small_build': 1, }) PCodeTest({ 'name': 'HCS12', 'toolchain': 'HCS12/m6812', 'language_id': 'HCS12:BE:16:default', }) PCodeTest({ 'name': 'HPPA1.1', 'build_all': 1, 'toolchain': 'HPPA/hppa-linux', 'ccflags': '-march=1.1 -static -mlong-calls -L %(toolchain_dir)s/lib/gcc/hppa-linux/%(gcc_version)s -lgcc', 'language_id': 'pa-risc:BE:32:default', 'processor': 'PA-RISC', 'architecture_test': 'PARISC', }) PCodeTest({ 'name': 'Loongarch64', 'build_all': 1, 'build_exe': 0, 'gcc_version': '12.3.0', 'qemu_command': 'qemu-loongarch64', 'target': 'loongson-linux', 'toolchain': '%(name)s/%(target)s', #%(toolchain_dir)s/lib/gcc/loongarch64-linux/%(gcc_version)s 'ccflags': '-march=loongarch64 -mabi=lp64d -L /local/cross/lib/gcc/loongarch64-linux/12.3.0/ -lgcc', 'language_id': 'Loongarch:LE:64:default', #'has_longlong': 0, }) PCodeTest({ 'name': 'Loongarch64f', 'build_all': 1, 'build_exe': 0, 'gcc_version': '12.3.0', 'qemu_command': 'qemu-loongarch64', 'target': 'loongson-linux', 'toolchain': 'Loongarch64/%(target)s', #%(toolchain_dir)s/lib/gcc/loongarch64-linux/%(gcc_version)s 'ccflags': '-march=loongarch64 -mabi=lp64f -mfpu=32 -L /local/cross/lib/gcc/loongarch64-linux/12.3.0/ -lgcc', 'language_id': 'Loongarch:LE:64:lp64f', 'has_double': 0, }) # Note that libgcc.a was built for m68020 which has a different function calling convention from pre-68020 PCodeTest({ 'name': 'm68000', 'build_all': 1, 'build_exe': 0, 'qemu_command': 'qemu-m68k', # qemu: fatal: Illegal instruction 'toolchain': 'm68k/m68k-elf', 'ccflags': '-mcpu=68020 -m68020 -L %(toolchain_dir)s/lib/gcc/m68k-elf/%(gcc_version)s -lgcc', 'language_id': '68000:BE:32:default', }) PCodeTest({ 'name': 'MIPS', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-mips', 'toolchain': 'MIPS/mips-elf', 'ccflags': '-L %(toolchain_dir)s/lib/gcc/mips-mti-elf/%(gcc_version)s -lgcc -mno-gpopt', 'language_id': 'MIPS:BE:32:default', }) PCodeTest({ 'name': 'MIPSEL', 'build_all': 1, 'build_exe': 1, 'toolchain': 'MIPS/mips-elf', 'ccflags': '-L %(toolchain_dir)s/lib/gcc/mips-mti-elf/%(gcc_version)s/el -lgcc -mno-gpopt -mel', 'language_id': 'MIPS:LE:32:default', }) PCodeTest({ 'name': 'MIPS16', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-mips', 'toolchain': 'MIPS/mips-elf', 'ccflags': '-mno-gpopt', 'language_id': 'MIPS:BE:32:default', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, }) PCodeTest({ 'name': 'MIPS16MIX', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-mips', 'toolchain': 'MIPS/mips-elf', 'ccflags': '-mno-gpopt', 'language_id': 'MIPS:BE:32:default', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, }) PCodeTest({ 'name': 'MIPSMIC', 'build_all': 1, 'toolchain': 'MIPS/mips-elf', 'ccflags': '-mmicromips -L %(toolchain_dir)s/lib/gcc/mips-mti-elf/%(gcc_version)s/micromips -lgcc', 'language_id': 'MIPS:BE:32:micro', 'architecture_test': 'MIPSMICRO', }) PCodeTest({ 'name': 'MIPSMICMIX', 'build_all': 1, 'toolchain': 'MIPS/mips-elf', 'ccflags': '-minterlink-compressed -D BODYNEW=micromips -L %(toolchain_dir)s/lib/gcc/mips-mti-elf/%(gcc_version)s/micromips -lgcc', 'language_id': 'MIPS:BE:32:micro', 'architecture_test': 'MIPSMICROMIX', }) PCodeTest({ 'name': 'MIPSMIC64', 'build_all': 1, 'toolchain': 'MIPS/mipsr6-elf', 'ccflags': '-mips64r5 -mmicromips -minterlink-compressed', 'language_id': 'MIPS:BE:64:micro', }) PCodeTest({ 'name': 'MIPS64_32addr', 'build_all': 1, 'toolchain': 'MIPS/mipsr6-elf', 'ccflags': '-mips64r2', 'language_id': 'MIPS:BE:64:64-32addr', }) PCodeTest({ 'name': 'MIPS64_64addr', 'build_all': 1, 'toolchain': 'MIPS/mipsr6-elf', 'ccflags': '-mips64r2 -mabi=64', 'language_id': 'MIPS:BE:64:64-64addr', }) PCodeTest({ 'name': 'MIPS64_64addrLE', 'build_all': 1, 'toolchain': 'MIPS/mipsr6-elf', 'ccflags': '-mips64r2 -mabi=64 -EL', 'language_id': 'MIPS:LE:64:64-64addr', }) PCodeTest({ 'name': 'MIPSR6', 'build_all': 1, 'toolchain': 'MIPS/mipsr6-elf', 'ccflags': '-mips32r6 -L %(toolchain_dir)s/lib/gcc/mips-mti-elf/%(gcc_version)s -lgcc', 'language_id': 'MIPS:BE:32:R6', }) PCodeTest({ 'name': 'MIPS64R6', 'build_all': 1, 'toolchain': 'MIPS/mipsr6-elf', 'ccflags': '-mips64r6 -mabi=64', 'language_id': 'MIPS:BE:64:R6', }) PCodeTest({ 'name': 'NDS32BE', 'build_all': 1, 'toolchain': 'NDS32/nds32be-elf', 'ccflags': '-L %(toolchain_dir)s/lib/gcc/nds32be-linux-elf/%(gcc_version)s -lgcc', 'language_id': 'NDS32:BE:32:default', }) PCodeTest({ 'name': 'NDS32LE', 'build_all': 1, 'toolchain': 'NDS32/nds32le-elf', 'ccflags': '-L %(toolchain_dir)s/lib/gcc/nds32le-linux-elf/%(gcc_version)s -lgcc', 'language_id': 'NDS32:LE:32:default', }) PCodeTest({ 'name': 'power6', 'toolchain': 'PPC/powerpc-elf', 'ccflags': '-mcpu=G5 -m32 -mno-relocatable -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:32:default', }) PCodeTest({ 'name': 'powerpc32', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-ppc64abi32', 'toolchain': 'PPC/powerpc-elf', 'ccflags': '-mcpu=powerpc -m32 -maltivec -mno-relocatable -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:32:default', 'architecture_test': 'PPC', }) PCodeTest({ 'name': 'powerpc64', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-ppc64', 'toolchain': 'PPC/powerpc64-linux', 'ccflags': '-mabi=elfv1 -maltivec -mno-relocatable -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:64:default', 'architecture_test': 'PPC64', }) PCodeTest({ 'name': 'powerpc64v2', 'toolchain': 'PPC/powerpc64-linux', 'ccflags': '-mabi=elfv2 -maltivec -mno-relocatable -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:64:default', }) PCodeTest({ 'name': 'ppcA2', 'build_all': 1, 'toolchain': 'PPC/powerpc-elf', 'ccflags': '-mcpu=a2 -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:32:A2', 'architecture_test': 'PPCA2', }) PCodeTest({ 'name': 'ppcA2Alt', 'build_all': 1, 'toolchain': 'PPC/powerpc-elf', 'ccflags': '-mcpu=a2 -maltivec -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:32:A2ALT', 'architecture_test': 'PPCA2Alt', }) PCodeTest({ 'name': 'ppcP8Alt', 'build_all': 1, 'toolchain': 'PPC/powerpc-elf', 'ccflags': '-mcpu=power8 -mvsx -maltivec -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:32:A2ALT', 'architecture_test': 'PPCP8Alt', }) PCodeTest({ 'name': 'ppcP9Alt', 'build_all': 1, 'toolchain': 'PPC/powerpc-elf', 'ccflags': '-mcpu=power9 -mvsx -maltivec -L %(toolchain_dir)s/lib/gcc/powerpc-elf/%(gcc_version)s -lgcc', 'language_id': 'PowerPC:BE:32:A2ALT', 'architecture_test': 'PPCP9Alt', }) PCodeTest({ 'name': 'msp430x', 'build_all': 1, 'toolchain': 'TI/msp430-elf', 'ccflags': '-g -mmcu=msp430x -mlarge -mhwmult=none -fno-builtin -Wl,-T,msp430x.ld -L %(toolchain_dir)s/lib/gcc/msp430-elf/%(gcc_version)s/large/ -lgcc -lmul_none', 'language_id': 'TI_MSP430X:LE:32:default', 'processor': 'TI', 'architecture_test': 'MSP430X', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, 'small_build': 1, 'skip_files': ['PointerManipulation.test', 'misc.test'], }) PCodeTest({ 'name': 'SH4', 'build_all': 1, 'build_exe': 0, 'qemu_command': 'qemu-sh4eb', # qemu gets "Invalid argument" error 'toolchain': 'SuperH4/sh4-elf', 'ccflags': '-mb -mrenesas -m4 -L %(toolchain_dir)s/lib/gcc/sh4-elf/%(gcc_version)s -lgcc', 'language_id': 'SuperH4:BE:32:default', 'architecture_test': 'SuperH4_BE', }) PCodeTest({ 'name': 'SH4_LE', 'build_all': 1, 'toolchain': 'SuperH4/sh4le-elf', 'ccflags': '-ml -mrenesas -m4 -L %(toolchain_dir)s/lib/gcc/sh4le-elf/%(gcc_version)s -lgcc', 'language_id': 'SuperH4:LE:32:default', 'architecture_test': 'SuperH4', }) PCodeTest({ 'name': 'sparcV9_32', 'build_all': 1, 'build_exe': 1, 'can_run': 0, # instruction error causes infinite loop 'qemu_command': 'qemu-sparc32plus', 'toolchain': 'SparcV9/sparc-elf', 'ccflags': '-mcpu=v9 -m32', 'language_id': 'sparc:BE:32:default', 'processor': 'Sparc', 'architecture_test': 'SparcV9_m32', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, }) # to suppress usage of application registers g2 and g3, add -mno-app-regs here PCodeTest({ 'name': 'sparcV9_64', 'build_all': 1, 'toolchain': 'SparcV9/sparc64-elf', 'ccflags': '-mcpu=v9 -m64', 'language_id': 'sparc:BE:64:default', }) PCodeTest({ 'name': 'pentium', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-i386', 'toolchain': 'x86/i386-elf-linux', 'ccflags': '-march=pentium -m32 -L %(toolchain_dir)s/lib/gcc/i386-elf-linux/%(gcc_version)s -lgcc', 'objdump_option': '-M intel', 'language_id': 'x86:LE:32:default', 'architecture_test': 'X86m32', 'has_vector': 1, }) PCodeTest({ 'name': 'i386_CLANG', 'toolchain': 'LLVM/llvm', 'toolchain_type': 'llvm', 'ccflags': '--target=i386', 'objdump_option': '-M intel', 'language_id': 'x86:LE:32:default', }) PCodeTest({ 'name': 'i686_CLANG', 'toolchain': 'LLVM/llvm', 'toolchain_type': 'llvm', 'ccflags': '--target=i686', 'objdump_option': '-M intel', 'language_id': 'x86:LE:32:default', }) PCodeTest({ 'name': 'AVX2', 'build_all': 1, 'toolchain': 'x86/x86_64-elf', 'ccflags': '-march=core-avx2', 'objdump_option': '-M intel', 'language_id': 'x86:LE:64:default', 'has_vector': 1, }) PCodeTest({ 'name': 'AVXi', 'toolchain': 'x86/x86_64-elf', 'ccflags': '-march=core-avx-i', 'objdump_option': '-M intel', 'language_id': 'x86:LE:64:default', }) PCodeTest({ 'name': 'bdver2', 'toolchain': 'x86/x86_64-elf', 'ccflags': '-march=bdver2', 'objdump_option': '-M intel', 'language_id': 'x86:LE:64:default', }) PCodeTest({ 'name': 'core2', 'toolchain': 'x86/x86_64-elf', 'ccflags': '-march=bdver2', 'objdump_option': '-M intel', 'language_id': 'x86:LE:64:default', }) PCodeTest({ 'name': 'x86_m64', 'build_all': 1, 'build_exe': 1, 'qemu_command': 'qemu-x86_64', 'toolchain': 'x86/x86_64-elf', 'ccflags': '-static -m64', 'objdump_option': '-M intel', 'language_id': 'x86:LE:64:default', 'architecture_test': 'X86m64', }) PCodeTest({ 'name': 'x86_fma4', 'toolchain': 'x86/x86_64-elf', 'ccflags': '-mfma', 'objdump_option': '-M intel', 'language_id': 'x86:LE:64:default', }) # the PIC30 toolchain is distributed by mchp. So when making the # toolchain, specify toolchain_type to be mchp. But it is based on # gcc, and after it's installed, it behaves exactly like gcc. So, when # making a pcode test, specify toolchain_type to be gcc. PCodeTest({ 'name': 'PIC30', 'build_all': 1, 'toolchain': 'PIC/xc16', 'compile_exe': 'bin/xc16-gcc', 'objdump_exe': 'bin/xc16-objdump', 'readelf_exe': 'bin/xc16-readelf', 'nm_exe': 'bin/xc16-nm', 'ccflags': '-mcpu=30F2011 -DINT4_IS_LONG -Xlinker --defsym -Xlinker _main=0x0 -L %(toolchain_dir)s/lib -lpic30 -lc -lm', 'language_id': 'dsPIC30F:LE:24:default', 'skip_files': ['misc.test'], 'variants': {'O0': '-O0'}, 'small_build': 1, }) PCodeTest({ 'name': 'PIC16', 'toolchain': 'PIC/xc8', 'compile_exe': 'bin/xc8', 'objdump_exe': 'bin/dump', 'ccflags': '-chip=16C57 -DINT4_IS_LONG -DSTATIC_MAIN -L %(toolchain_dir)s/lib -lpic30 -lc -lm', 'language_id': 'dsPIC16F:LE:24:default', 'small_build': 1, }) PCodeTest({ 'name': 'HCS08', 'toolchain': 'SDCC/s08', 'toolchain_type': 'sdcc', 'compile_exe': 'bin/sdcc', 'ccflags': '--out-fmt-elf --std-sdcc11', 'language_id': 'HCS08:BE:16:MC9S08GB60', 'variants': {'OX': ''}, 'has_double': 0, 'has_longlong': 0, }) PCodeTest({ 'name': 'Z80', 'toolchain': 'SDCC/z80', 'toolchain_type': 'sdcc', 'compile_exe': 'bin/sdcc', 'ccflags': '-mz80 -V --verbose --std-sdcc11 -DINT4_IS_LONG', 'language_id': 'z80:LE:16:default', 'variants': {'OX':''}, 'has_float': 0, 'has_double': 0, 'has_longlong': 0, 'small_build': 1, # Currently the 'omitted' option is only supported by the SDCC toolchain! # Causes a bit of funk with tpp.py still including references to these # tests in cunit_main.c but the compiler accepts it with a warning. 'skip_files': ['PointerManipulation.test', 'StructUnionManipulation.test'], # These tests are omitted because the SDCC compiler doesn't properly handle # structs in functions and requires a more strict format than ANSI C requires. }) PCodeTest({ 'name': 'CR16C', 'build_all': 1, 'toolchain': 'NS/cr16-elf', 'language_id': 'CR16C:LE:16:default', 'processor': 'CR16', 'architecture_test': 'CRC16C', 'ccflags': '-lgcc', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, }) PCodeTest({ 'name': 'RISCV', 'build_all': 1, 'toolchain': 'RISCV/riscv32-elf', 'language_id': 'RISCV:BE:32:default', 'architecture_test': 'RISCV', 'ccflags': '-lgcc', 'has_float': 0, 'has_double': 0, 'has_longlong': 0, })