zemu 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/zemu/config.rb +312 -0
- data/lib/zemu/instance.rb +179 -0
- data/lib/zemu.rb +172 -0
- data/src/debug.c +118 -0
- data/src/debug.h +30 -0
- data/src/external/Z/API/Z/ABIs/generic/allocator.h +36 -0
- data/src/external/Z/API/Z/ABIs/generic/cipher.h +47 -0
- data/src/external/Z/API/Z/ABIs/generic/data codec.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/emulation.h +103 -0
- data/src/external/Z/API/Z/ABIs/generic/hash function.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/module.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/wave codec.h +40 -0
- data/src/external/Z/API/Z/classes/base/InitializerList.hpp +34 -0
- data/src/external/Z/API/Z/classes/base/OpaqueFunctionPointer.hpp +26 -0
- data/src/external/Z/API/Z/classes/base/OpaqueMemberFunctionPointer.hpp +26 -0
- data/src/external/Z/API/Z/classes/base/Pair.hpp +46 -0
- data/src/external/Z/API/Z/classes/base/Range.hpp +111 -0
- data/src/external/Z/API/Z/classes/base/SizedString.hpp +66 -0
- data/src/external/Z/API/Z/classes/base/Status.hpp +89 -0
- data/src/external/Z/API/Z/classes/base/Symbol.hpp +39 -0
- data/src/external/Z/API/Z/classes/base/Tuple.hpp +111 -0
- data/src/external/Z/API/Z/classes/base/Value2D.hpp +389 -0
- data/src/external/Z/API/Z/classes/base/Value3D.hpp +368 -0
- data/src/external/Z/API/Z/classes/buffering/RingBuffer.hpp +93 -0
- data/src/external/Z/API/Z/classes/buffering/TripleBuffer.hpp +68 -0
- data/src/external/Z/API/Z/classes/functional/Functor.hpp +265 -0
- data/src/external/Z/API/Z/classes/functional/MemberFunction.hpp +98 -0
- data/src/external/Z/API/Z/classes/functional/ObjectMemberFunction.hpp +172 -0
- data/src/external/Z/API/Z/classes/functional/ObjectSelector.hpp +219 -0
- data/src/external/Z/API/Z/classes/functional/Selector.hpp +146 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/AABB.hpp +81 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/AABR.hpp +685 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Box.hpp +219 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Circle.hpp +80 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Line2D.hpp +93 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Line3D.hpp +80 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Rectangle.hpp +675 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Sphere.hpp +0 -0
- data/src/external/Z/API/Z/classes/memory/Shared.hpp +90 -0
- data/src/external/Z/API/Z/constants/base.h +35 -0
- data/src/external/Z/API/Z/constants/chemical elements.h +6385 -0
- data/src/external/Z/API/Z/constants/numbers.h +963 -0
- data/src/external/Z/API/Z/constants/version.h +15 -0
- data/src/external/Z/API/Z/formats/character set/ASCII.h +158 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP437.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP737.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP775.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP850.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP852.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP855.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP857.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP858.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP860.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP861.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP862.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP863.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP864.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP865.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP866.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP869.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP872.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP874.h +159 -0
- data/src/external/Z/API/Z/formats/character set/Unicode.h +30119 -0
- data/src/external/Z/API/Z/formats/data model/I16LP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/ILP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/ILP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/IP16L32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LLP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/SILP64.h +19 -0
- data/src/external/Z/API/Z/formats/file system/FAT12.h +61 -0
- data/src/external/Z/API/Z/formats/floating-point/IEEE 754.h +141 -0
- data/src/external/Z/API/Z/formats/floating-point/x87.h +74 -0
- data/src/external/Z/API/Z/formats/image/ICNS.h +39 -0
- data/src/external/Z/API/Z/formats/keymap/Mac OS.h +284 -0
- data/src/external/Z/API/Z/formats/keymap/Z.h +141 -0
- data/src/external/Z/API/Z/formats/multimedia/Creative Voice.h +106 -0
- data/src/external/Z/API/Z/formats/multimedia/Microsoft Wave.h +49 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ACH.h +44 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/FRZ.h +54 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/PRG.h +33 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SEM.h +46 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SIT.h +34 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SNA.h +117 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SNP.h +37 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SP.h +62 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/Z80.h +117 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ZX.h +56 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ZX82.h +70 -0
- data/src/external/Z/API/Z/formats/storage medium image/NES Game Pak/UNIF.h +26 -0
- data/src/external/Z/API/Z/formats/storage medium image/NES Game Pak/iNES.h +76 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/TAP.h +25 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/TZX.h +1185 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/Warajevo TAP.h +32 -0
- data/src/external/Z/API/Z/formats/storage medium image/floppy disk/FDI.h +45 -0
- data/src/external/Z/API/Z/functions/base/Z2D.h +583 -0
- data/src/external/Z/API/Z/functions/base/Z3D.h +712 -0
- data/src/external/Z/API/Z/functions/base/ZRange.h +137 -0
- data/src/external/Z/API/Z/functions/base/all.h +16 -0
- data/src/external/Z/API/Z/functions/base/casting.hpp +37 -0
- data/src/external/Z/API/Z/functions/base/character.h +38 -0
- data/src/external/Z/API/Z/functions/base/constructors.h +326 -0
- data/src/external/Z/API/Z/functions/base/structure.hpp +26 -0
- data/src/external/Z/API/Z/functions/base/type.hpp +60 -0
- data/src/external/Z/API/Z/functions/base/value.h +1901 -0
- data/src/external/Z/API/Z/functions/base/value.hpp +112 -0
- data/src/external/Z/API/Z/functions/buffering/ZRingBuffer.h +85 -0
- data/src/external/Z/API/Z/functions/buffering/ZTripleBuffer.h +65 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/Z2DLine.h +179 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/Z3DLine.h +168 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZAABB.h +361 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZAABR.h +1081 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZBox.h +340 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZCircle.h +142 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZRectangle.h +1267 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZSphere.h +156 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/all.h +18 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/constructors.h +620 -0
- data/src/external/Z/API/Z/functions/time/date.h +29 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/6502.h +90 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/Z80.h +245 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/i4004.h +37 -0
- data/src/external/Z/API/Z/hardware/PSG/General Instrument/AY-3-891x.h +180 -0
- data/src/external/Z/API/Z/hardware/VDC/Ricoh/RP2C0x.h +625 -0
- data/src/external/Z/API/Z/hardware/bus/AGP.h +24 -0
- data/src/external/Z/API/Z/hardware/bus/USB.h +510 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Inves Spectrum +.h +47 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Pentagon.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Scorpion.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum + 128K.h +158 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +.h +82 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +2.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +2A.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +3.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum.h +109 -0
- data/src/external/Z/API/Z/hardware/machine/model/console/Nintendo Entertainment System/NES-001 (NTSC).h +29 -0
- data/src/external/Z/API/Z/hardware/machine/model/console/Nintendo Entertainment System/NES-001 (PAL).h +29 -0
- data/src/external/Z/API/Z/hardware/machine/platform/computer/ZX Spectrum.h +405 -0
- data/src/external/Z/API/Z/hardware/machine/platform/console/Game Boy.h +49 -0
- data/src/external/Z/API/Z/hardware/machine/platform/console/Nintendo Entertainment System.h +350 -0
- data/src/external/Z/API/Z/hardware/storage medium/ROM cartridge/SNES Game Pak.h +238 -0
- data/src/external/Z/API/Z/inspection/C/completion.h +178 -0
- data/src/external/Z/API/Z/inspection/C/modules/C11.h +41 -0
- data/src/external/Z/API/Z/inspection/C/modules/C18.h +13 -0
- data/src/external/Z/API/Z/inspection/C/modules/C89.h +19 -0
- data/src/external/Z/API/Z/inspection/C/modules/C90.h +13 -0
- data/src/external/Z/API/Z/inspection/C/modules/C94.h +15 -0
- data/src/external/Z/API/Z/inspection/C/modules/C99.h +29 -0
- data/src/external/Z/API/Z/inspection/C/modules/KR C.h +19 -0
- data/src/external/Z/API/Z/inspection/C++/completion.h +512 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++03.h +15 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++11.h +80 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++14.h +26 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++17.h +55 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++85.h +11 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++89.h +13 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++98.h +17 -0
- data/src/external/Z/API/Z/inspection/C++.h +78 -0
- data/src/external/Z/API/Z/inspection/C.h +79 -0
- data/src/external/Z/API/Z/inspection/CPU/completion.h +56 -0
- data/src/external/Z/API/Z/inspection/CPU/detection.h +714 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/6502.h +25 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/AArch32.h +32 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/AArch64.h +32 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/Z80.h +26 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/x86-32.h +31 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/x86-64.h +312 -0
- data/src/external/Z/API/Z/inspection/CPU.h +209 -0
- data/src/external/Z/API/Z/inspection/OS/completion.h +36 -0
- data/src/external/Z/API/Z/inspection/OS/detection.h +768 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Linux.h +22 -0
- data/src/external/Z/API/Z/inspection/OS/modules/MS-DOS.h +16 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Mac OS X.h +23 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Windows.h +19 -0
- data/src/external/Z/API/Z/inspection/OS/modules/iPhone OS.h +23 -0
- data/src/external/Z/API/Z/inspection/OS.h +236 -0
- data/src/external/Z/API/Z/inspection/Objective-C/completion.h +8 -0
- data/src/external/Z/API/Z/inspection/Objective-C/modules/Objective-C v1.0.h +11 -0
- data/src/external/Z/API/Z/inspection/Objective-C/modules/Objective-C v2.0.h +15 -0
- data/src/external/Z/API/Z/inspection/Objective-C.h +51 -0
- data/src/external/Z/API/Z/inspection/Z.h +19 -0
- data/src/external/Z/API/Z/inspection/build.h +22 -0
- data/src/external/Z/API/Z/inspection/character set.h +66 -0
- data/src/external/Z/API/Z/inspection/compiler/completion.h +2885 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Apple LLVM.h +26 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Clang.h +1664 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/GCC.h +1366 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/SCCZ80.h +473 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Visual C++.h +606 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/cc65.h +529 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/generic.h +13 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/template.h +650 -0
- data/src/external/Z/API/Z/inspection/compiler.h +299 -0
- data/src/external/Z/API/Z/inspection/data model/completion.h +128 -0
- data/src/external/Z/API/Z/inspection/data model/deduction.h +9 -0
- data/src/external/Z/API/Z/inspection/data model/detection.h +45 -0
- data/src/external/Z/API/Z/inspection/data model.h +362 -0
- data/src/external/Z/API/Z/inspection/floating-point/completion.h +50 -0
- data/src/external/Z/API/Z/inspection/floating-point.h +324 -0
- data/src/external/Z/API/Z/inspection/language.h +163 -0
- data/src/external/Z/API/Z/inspection/platform/detection.h +9 -0
- data/src/external/Z/API/Z/inspection/platform.h +29 -0
- data/src/external/Z/API/Z/keys/C++.h +27 -0
- data/src/external/Z/API/Z/keys/C.h +29 -0
- data/src/external/Z/API/Z/keys/CPU.h +80 -0
- data/src/external/Z/API/Z/keys/OS.h +182 -0
- data/src/external/Z/API/Z/keys/Objective-C.h +17 -0
- data/src/external/Z/API/Z/keys/chemistry.h +26 -0
- data/src/external/Z/API/Z/keys/compiler.h +178 -0
- data/src/external/Z/API/Z/keys/data model.h +32 -0
- data/src/external/Z/API/Z/keys/endianness.h +24 -0
- data/src/external/Z/API/Z/keys/language.h +21 -0
- data/src/external/Z/API/Z/keys/layout.h +20 -0
- data/src/external/Z/API/Z/keys/mathematics/geometry.h +29 -0
- data/src/external/Z/API/Z/keys/mathematics/number.h +21 -0
- data/src/external/Z/API/Z/keys/order.h +18 -0
- data/src/external/Z/API/Z/keys/platform.h +87 -0
- data/src/external/Z/API/Z/keys/program.h +39 -0
- data/src/external/Z/API/Z/keys/science/chemical elements.h +200 -0
- data/src/external/Z/API/Z/keys/science/electricity.h +18 -0
- data/src/external/Z/API/Z/keys/science/magnetism.h +19 -0
- data/src/external/Z/API/Z/keys/status.h +69 -0
- data/src/external/Z/API/Z/keys/text.h +27 -0
- data/src/external/Z/API/Z/keys/value.h +88 -0
- data/src/external/Z/API/Z/macros/arguments.h +25 -0
- data/src/external/Z/API/Z/macros/casting.h +22 -0
- data/src/external/Z/API/Z/macros/character.h +159 -0
- data/src/external/Z/API/Z/macros/date.h +14 -0
- data/src/external/Z/API/Z/macros/key.h +20 -0
- data/src/external/Z/API/Z/macros/language.h +126 -0
- data/src/external/Z/API/Z/macros/language.hpp +81 -0
- data/src/external/Z/API/Z/macros/members.h +86 -0
- data/src/external/Z/API/Z/macros/pasting.h +308 -0
- data/src/external/Z/API/Z/macros/pointer.h +33 -0
- data/src/external/Z/API/Z/macros/repetition.h +283 -0
- data/src/external/Z/API/Z/macros/structure.h +104 -0
- data/src/external/Z/API/Z/macros/templating.h +407 -0
- data/src/external/Z/API/Z/macros/tokens.h +14 -0
- data/src/external/Z/API/Z/macros/type enumeration.h +43 -0
- data/src/external/Z/API/Z/macros/type selection.hpp +76 -0
- data/src/external/Z/API/Z/macros/value.h +489 -0
- data/src/external/Z/API/Z/macros/variadic pasting.h +21 -0
- data/src/external/Z/API/Z/macros/variadic selection.h +56 -0
- data/src/external/Z/API/Z/macros/variadic.h +46 -0
- data/src/external/Z/API/Z/macros/version.h +17 -0
- data/src/external/Z/API/Z/network/3/IP.h +36 -0
- data/src/external/Z/API/Z/network/4/TCP.h +24 -0
- data/src/external/Z/API/Z/network/4/UDP.h +26 -0
- data/src/external/Z/API/Z/network/7/ED2K.h +104 -0
- data/src/external/Z/API/Z/network/7/HTTP.h +100 -0
- data/src/external/Z/API/Z/traits/SelectType.hpp +71 -0
- data/src/external/Z/API/Z/traits/TernaryType.hpp +20 -0
- data/src/external/Z/API/Z/traits/Type.hpp +4516 -0
- data/src/external/Z/API/Z/traits/TypeCount.hpp +52 -0
- data/src/external/Z/API/Z/traits/TypeList.hpp +376 -0
- data/src/external/Z/API/Z/traits/base.hpp +19 -0
- data/src/external/Z/API/Z/traits/filtering.hpp +30 -0
- data/src/external/Z/API/Z/traits/mathematics.hpp +48 -0
- data/src/external/Z/API/Z/types/arguments.h +19 -0
- data/src/external/Z/API/Z/types/base.h +1655 -0
- data/src/external/Z/API/Z/types/base.hpp +169 -0
- data/src/external/Z/API/Z/types/buffering.h +27 -0
- data/src/external/Z/API/Z/types/mathematics.h +135 -0
- data/src/external/Z/API/Z/types/time.h +23 -0
- data/src/external/Z/COPYING.LESSER +165 -0
- data/src/external/Z/development/Qt Creator/Z.pro +253 -0
- data/src/external/Z/distribution/CocoaPods/Zeta.podspec +18 -0
- data/src/external/Z/distribution/Gentoo Linux/Zeta-0.1.ebuild +22 -0
- data/src/external/Z/distribution/Gentoo Linux/metadata.xml +8 -0
- data/src/external/Z/distribution/Homebrew/Zeta.rb +11 -0
- data/src/external/z80/API/emulation/CPU/Z80.h +201 -0
- data/src/external/z80/README.md +229 -0
- data/src/external/z80/building/premake4.lua +33 -0
- data/src/external/z80/development/Xcode/Z80.xcodeproj/project.pbxproj +520 -0
- data/src/external/z80/sources/Z80.c +1660 -0
- data/src/interrupt.c +6 -0
- data/src/interrupt.h +3 -0
- data/src/io.c.erb +115 -0
- data/src/io.h.erb +18 -0
- data/src/main.c +69 -0
- data/src/memory.c.erb +43 -0
- data/src/memory.h.erb +9 -0
- metadata +329 -0
@@ -0,0 +1,299 @@
|
|
1
|
+
/* Z Kit - inspection/compiler.h
|
2
|
+
_____ _______________
|
3
|
+
/_ /_/ -_/_ _/ _ |
|
4
|
+
/____/\___/ /__//___/_| Kit
|
5
|
+
Copyright (C) 2006-2018 Manuel Sainz de Baranda y Goñi.
|
6
|
+
Released under the terms of the GNU Lesser General Public License v3. */
|
7
|
+
|
8
|
+
#ifndef _Z_inspection_compiler_H_
|
9
|
+
#define _Z_inspection_compiler_H_
|
10
|
+
|
11
|
+
#include <Z/constants/base.h>
|
12
|
+
#include <Z/keys/compiler.h>
|
13
|
+
|
14
|
+
#if defined(__clang__)
|
15
|
+
# if defined(__apple_build_version__)
|
16
|
+
# include <Z/inspection/compiler/modules/Apple LLVM.h>
|
17
|
+
# else
|
18
|
+
# include <Z/inspection/compiler/modules/Clang.h>
|
19
|
+
# endif
|
20
|
+
|
21
|
+
#elif defined(_ACC_)
|
22
|
+
# include <Z/inspection/compiler/modules/ACC.h>
|
23
|
+
|
24
|
+
#elif defined(__CMB__)
|
25
|
+
# include <Z/inspection/compiler/modules/Altium MicroBlaze C.h>
|
26
|
+
|
27
|
+
#elif defined(__CHC__)
|
28
|
+
# include <Z/inspection/compiler/modules/Altium C-to-Hardware.h>
|
29
|
+
|
30
|
+
#elif defined(__ACK__)
|
31
|
+
# include <Z/inspection/compiler/modules/Amsterdam Compiler Kit.h>
|
32
|
+
|
33
|
+
#elif defined(__ARMCC__)
|
34
|
+
# include <Z/inspection/compiler/modules/ARM C - C++ Compiler.h>
|
35
|
+
|
36
|
+
#elif defined(__CC_ARM)
|
37
|
+
# include <Z/inspection/compiler/modules/ARM Compiler.h>
|
38
|
+
|
39
|
+
#elif defined(AZTEC_C) || defined(__AZTEC_C__)
|
40
|
+
# include <Z/inspection/compiler/modules/Aztec C.h>
|
41
|
+
|
42
|
+
#elif defined(__BORLANDC__) || defined(__CODEGEARC__)
|
43
|
+
# include <Z/inspection/compiler/modules/Borland C++.h>
|
44
|
+
|
45
|
+
#elif defined(__CC65__)
|
46
|
+
# include <Z/inspection/compiler/modules/cc65.h>
|
47
|
+
|
48
|
+
#elif defined(__MWERKS__) || defined(__CWCC__)
|
49
|
+
# include <Z/inspection/compiler/modules/CodeWarrior.h>
|
50
|
+
|
51
|
+
#elif defined(__COMO__)
|
52
|
+
# include <Z/inspection/compiler/modules/Comeau C++.h>
|
53
|
+
|
54
|
+
#elif defined(__DECC) || defined(__DECCXX) || defined(__VAXC) || defined(VAXC)
|
55
|
+
# include <Z/inspection/compiler/modules/Compaq C - C++.h>
|
56
|
+
|
57
|
+
#elif defined(__COMPCERT__)
|
58
|
+
# include <Z/inspection/compiler/modules/CompCert.h>
|
59
|
+
|
60
|
+
#elif defined(__convexc__)
|
61
|
+
# include <Z/inspection/compiler/modules/Convex C.h>
|
62
|
+
|
63
|
+
#elif defined(__COVERITY__)
|
64
|
+
# include <Z/inspection/compiler/modules/Coverity C - C++ Static Analyzer.h>
|
65
|
+
|
66
|
+
#elif defined(_CRAYC)
|
67
|
+
# include <Z/inspection/compiler/modules/Cray C.h>
|
68
|
+
|
69
|
+
#elif defined(__DCC__)
|
70
|
+
# include <Z/inspection/compiler/modules/Diab C - C++.h>
|
71
|
+
|
72
|
+
#elif defined(_DICE)
|
73
|
+
# include <Z/inspection/compiler/modules/DICE C.h>
|
74
|
+
|
75
|
+
#elif defined(__DMC__)
|
76
|
+
# include <Z/inspection/compiler/modules/Digital Mars.h>
|
77
|
+
|
78
|
+
#elif defined(__SYSC__)
|
79
|
+
# include <Z/inspection/compiler/modules/Dignus Systems C - C++.h>
|
80
|
+
|
81
|
+
#elif defined(__DJGPP__) || defined(__GO32__)
|
82
|
+
# include <Z/inspection/compiler/modules/DJGPP.h>
|
83
|
+
|
84
|
+
#elif defined(__EDG__)
|
85
|
+
# include <Z/inspection/compiler/modules/EDG C++ Frontend.h>
|
86
|
+
|
87
|
+
#elif defined(__PATHCC__)
|
88
|
+
# include <Z/inspection/compiler/modules/EKOPath.h>
|
89
|
+
|
90
|
+
#elif defined(__FCC_VERSION)
|
91
|
+
# include <Z/inspection/compiler/modules/Fujitsu C++.h>
|
92
|
+
|
93
|
+
#elif defined(__ghs__)
|
94
|
+
# include <Z/inspection/compiler/modules/Green Hill C - C++.h>
|
95
|
+
|
96
|
+
#elif defined(__HP_aCC)
|
97
|
+
# include <Z/inspection/compiler/modules/HP aC++.h>
|
98
|
+
|
99
|
+
#elif defined(__HP_cc)
|
100
|
+
# include <Z/inspection/compiler/modules/HP ANSI C.h>
|
101
|
+
|
102
|
+
#elif defined(__HP_aCC)
|
103
|
+
# include <Z/inspection/compiler/modules/HP aC++.h>
|
104
|
+
|
105
|
+
#elif defined(__IAR_SYSTEMS_ICC__)
|
106
|
+
# include <Z/inspection/compiler/modules/IAR C - C++.h>
|
107
|
+
|
108
|
+
#elif defined(__xlc__) || defined(__xlC__)
|
109
|
+
# include <Z/inspection/compiler/modules/IBM XL C - C++.h>
|
110
|
+
|
111
|
+
#elif defined(__IBMC__) || defined(__IBMCPP__)
|
112
|
+
# if defined(__COMPILER_VER__)
|
113
|
+
# include <Z/inspection/compiler/modules/IBM z OS C - C++.h>
|
114
|
+
# else
|
115
|
+
# include <Z/inspection/compiler/modules/IBM XL C - C++.h>
|
116
|
+
# endif
|
117
|
+
|
118
|
+
#elif defined(__IMAGECRAFT__)
|
119
|
+
# include <Z/inspection/compiler/modules/ImageCraft C.h>
|
120
|
+
|
121
|
+
#elif defined(__INTEL_COMPILER) || defined(__ICC) || defined(__ECC) || defined(__ICL)
|
122
|
+
# include <Z/inspection/compiler/modules/Intel C++.h>
|
123
|
+
|
124
|
+
#elif defined(__KCC)
|
125
|
+
# include <Z/inspection/compiler/modules/KAI C++.h>
|
126
|
+
|
127
|
+
#elif defined(__C166__)
|
128
|
+
# include <Z/inspection/compiler/modules/KEIL C166.h>
|
129
|
+
|
130
|
+
#elif defined(__C51__) || defined(__CX51__)
|
131
|
+
# include <Z/inspection/compiler/modules/KEIL C51.h>
|
132
|
+
|
133
|
+
#elif defined(__CA__) || defined(__KEIL__)
|
134
|
+
# include <Z/inspection/compiler/modules/KEIL CARM.h>
|
135
|
+
|
136
|
+
#elif defined(__LCC__)
|
137
|
+
# include <Z/inspection/compiler/modules/LCC.h>
|
138
|
+
|
139
|
+
#elif defined(__HIGHC__)
|
140
|
+
# include <Z/inspection/compiler/modules/MetaWare High C - C++.h>
|
141
|
+
|
142
|
+
#elif defined(_MRI)
|
143
|
+
# include <Z/inspection/compiler/modules/Microtec C - C++.h>
|
144
|
+
|
145
|
+
#elif defined(__NDPC__) || defined(__NDPX__)
|
146
|
+
# include <Z/inspection/compiler/modules/Microway NDP C.h>
|
147
|
+
|
148
|
+
#elif defined(__MINGW__) || defined(__MINGW32__) || defined(__MINGW64__)
|
149
|
+
# include <Z/inspection/compiler/modules/MinGW.h>
|
150
|
+
|
151
|
+
#elif defined(__sgi) || defined(sgi)
|
152
|
+
# include <Z/inspection/compiler/modules/MIPSpro.h>
|
153
|
+
|
154
|
+
#elif defined(MIRACLE)
|
155
|
+
# include <Z/inspection/compiler/modules/Miracle C.h>
|
156
|
+
|
157
|
+
#elif defined(__MRC__) || defined(MPW_C) || defined(MPW_CPLUS)
|
158
|
+
# include <Z/inspection/compiler/modules/MPW C++.h>
|
159
|
+
|
160
|
+
#elif defined(__CC_NORCROFT)
|
161
|
+
# include <Z/inspection/compiler/modules/Norcroft C.h>
|
162
|
+
|
163
|
+
#elif defined(__NWCC__)
|
164
|
+
# include <Z/inspection/compiler/modules/NWCC.h>
|
165
|
+
|
166
|
+
#elif defined(__OPEN64__) || defined(__OPENCC__)
|
167
|
+
# include <Z/inspection/compiler/modules/Open64.h>
|
168
|
+
|
169
|
+
#elif defined(ORA_PROC)
|
170
|
+
# include <Z/inspection/compiler/modules/Oracle Pro C Precompiler.h>
|
171
|
+
|
172
|
+
#elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
|
173
|
+
# include <Z/inspection/compiler/modules/Oracle Solaris Studio.h>
|
174
|
+
|
175
|
+
#elif defined(__PACIFIC__)
|
176
|
+
# include <Z/inspection/compiler/modules/Pacific C.h>
|
177
|
+
|
178
|
+
#elif defined(_PACC_VER)
|
179
|
+
# include <Z/inspection/compiler/modules/Palm C - C++.h>
|
180
|
+
|
181
|
+
#elif defined(__POCC__)
|
182
|
+
# include <Z/inspection/compiler/modules/Pelles C.h>
|
183
|
+
|
184
|
+
#elif defined(__PGI)
|
185
|
+
# include <Z/inspection/compiler/modules/PGI C - C++.h>
|
186
|
+
|
187
|
+
#elif defined(__RENESAS__) || defined(__HITACHI__)
|
188
|
+
# include <Z/inspection/compiler/modules/Renesas C - C++.h>
|
189
|
+
|
190
|
+
#elif defined(SASC) || defined(__SASC) || defined(__SASC__)
|
191
|
+
# include <Z/inspection/compiler/modules/SAS - C.h>
|
192
|
+
|
193
|
+
#elif defined(__SCCZ80)
|
194
|
+
# include <Z/inspection/compiler/modules/SCCZ80.h>
|
195
|
+
|
196
|
+
#elif defined(_SCO_DS)
|
197
|
+
# include <Z/inspection/compiler/modules/SCO OpenServer.h>
|
198
|
+
|
199
|
+
#elif defined(__SDCC) /* Z88DK version? */ /* || defined(SDCC) */
|
200
|
+
# include <Z/inspection/compiler/modules/SDCC.h>
|
201
|
+
|
202
|
+
#elif defined(__SNC__)
|
203
|
+
# include <Z/inspection/compiler/modules/SN Compiler.h>
|
204
|
+
|
205
|
+
#elif defined(__VOSC__) && !__VOSC__
|
206
|
+
# include <Z/inspection/compiler/modules/Stratus VOS C.h>
|
207
|
+
|
208
|
+
#elif defined(__VOSC__) && __VOSC__ == 1
|
209
|
+
# include <Z/inspection/compiler/modules/Stratus VOS Standard C.h>
|
210
|
+
|
211
|
+
#elif defined(__SC__)
|
212
|
+
# include <Z/inspection/compiler/modules/Symantec C++.h>
|
213
|
+
|
214
|
+
#elif defined(__TenDRA__)
|
215
|
+
# include <Z/inspection/compiler/modules/TenDRA C - C++.h>
|
216
|
+
|
217
|
+
#elif defined(__TI_COMPILER_VERSION__) || defined(_TMS320C6X)
|
218
|
+
# include <Z/inspection/compiler/modules/Texas Instruments C - C++ Compiler.h>
|
219
|
+
|
220
|
+
/*#elif defined()
|
221
|
+
# define Z_COMPILER_NAME THINK C*/
|
222
|
+
|
223
|
+
#elif defined(__TINYC__)
|
224
|
+
# include <Z/inspection/compiler/modules/Tiny C.h>
|
225
|
+
|
226
|
+
#elif defined(__TURBOC__)
|
227
|
+
# include <Z/inspection/compiler/modules/Turbo C - C++.h>
|
228
|
+
|
229
|
+
#elif defined(_UCC)
|
230
|
+
# include <Z/inspection/compiler/modules/Ultimate C - C++.h>
|
231
|
+
|
232
|
+
#elif defined(__USLC__)
|
233
|
+
# include <Z/inspection/compiler/modules/USL C.h>
|
234
|
+
|
235
|
+
#elif defined(__VBCC__)
|
236
|
+
# include <Z/inspection/compiler/modules/VBCC.h>
|
237
|
+
|
238
|
+
#elif defined(_MSC_VER)
|
239
|
+
# include <Z/inspection/compiler/modules/Visual C++.h>
|
240
|
+
|
241
|
+
#elif defined(__WATCOMC__)
|
242
|
+
# include <Z/inspection/compiler/modules/Watcom C - C++.h>
|
243
|
+
|
244
|
+
#elif defined(__ZTC__)
|
245
|
+
# include <Z/inspection/compiler/modules/Zortech C++.h>
|
246
|
+
|
247
|
+
#elif defined(__GNUC__)
|
248
|
+
# include <Z/inspection/compiler/modules/GCC.h>
|
249
|
+
|
250
|
+
#else
|
251
|
+
# include <Z/inspection/compiler/modules/generic.h>
|
252
|
+
#endif
|
253
|
+
|
254
|
+
#include <Z/inspection/compiler/completion.h>
|
255
|
+
|
256
|
+
#define Z_COMPILER_C_HAS( WHAT ) Z_COMPILER_C_HAS_##WHAT
|
257
|
+
#define Z_COMPILER_C_HAS_ATTRIBUTE( WHICH) Z_COMPILER_C_HAS_ATTRIBUTE_##WHICH
|
258
|
+
#define Z_COMPILER_C_HAS_LITERAL( WHICH) Z_COMPILER_C_HAS_LITERAL_##WHICH
|
259
|
+
#define Z_COMPILER_C_HAS_OPERATOR( WHICH) Z_COMPILER_C_HAS_OPERATOR_##WHICH
|
260
|
+
#define Z_COMPILER_C_HAS_SPECIFIER( WHICH) Z_COMPILER_C_HAS_SPECIFIER_##WHICH
|
261
|
+
#define Z_COMPILER_C_HAS_STORAGE_CLASS( WHICH) Z_COMPILER_C_HAS_STORAGE_CLASS_##WHICH
|
262
|
+
#define Z_COMPILER_C_HAS_TYPE( WHICH) Z_COMPILER_C_HAS_TYPE_##WHICH
|
263
|
+
#define Z_COMPILER_C_HAS_TYPE_QUALIFIER( WHICH) Z_COMPILER_C_HAS_TYPE_QUALIFIER_##WHICH
|
264
|
+
#define Z_COMPILER_CPP_HAS( WHAT ) Z_COMPILER_CPP_HAS_##WHAT
|
265
|
+
#define Z_COMPILER_CPP_HAS_ATTRIBUTE( WHICH) Z_COMPILER_CPP_HAS_ATTRIBUTE_##WHICH
|
266
|
+
#define Z_COMPILER_CPP_HAS_LITERAL( WHICH) Z_COMPILER_CPP_HAS_LITERAL_##WHICH
|
267
|
+
#define Z_COMPILER_CPP_HAS_OPERATOR( WHICH) Z_COMPILER_CPP_HAS_OPERATOR_##WHICH
|
268
|
+
#define Z_COMPILER_CPP_HAS_SPECIFIER( WHICH) Z_COMPILER_CPP_HAS_SPECIFIER_##WHICH
|
269
|
+
#define Z_COMPILER_CPP_HAS_STORAGE_CLASS( WHICH) Z_COMPILER_CPP_HAS_STORAGE_CLASS_##WHICH
|
270
|
+
#define Z_COMPILER_CPP_HAS_TYPE( WHICH) Z_COMPILER_CPP_HAS_TYPE_##WHICH
|
271
|
+
#define Z_COMPILER_CPP_HAS_TYPE_QUALIFIER( WHICH) Z_COMPILER_CPP_HAS_TYPE_QUALIFIER_##WHICH
|
272
|
+
#define Z_COMPILER_CPP_HAS_PREPROCESSOR_OPERATOR( WHICH) Z_COMPILER_CPP_HAS_PREPROCESSOR_OPERATOR_##WHICH
|
273
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS( WHAT ) Z_COMPILER_OBJECTIVE_C_HAS_##WHAT
|
274
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_ATTRIBUTE( WHICH) Z_COMPILER_OBJECTIVE_C_HAS_ATTRIBUTE_##WHICH
|
275
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_LITERAL( WHICH) Z_COMPILER_OBJECTIVE_C_HAS_LITERAL_##WHICH
|
276
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_OPERATOR( WHICH) Z_COMPILER_OBJECTIVE_C_HAS_OPERATOR_##WHICH
|
277
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_SPECIFIER( WHICH) Z_COMPILER_OBJECTIVE_C_HAS_SPECIFIER_##WHICH
|
278
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_STORAGE_CLASS( WHICH) Z_COMPILER_OBJECTIVE_C_HAS_STORAGE_CLASS_##WHICH
|
279
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_TYPE( WHICH) Z_COMPILER_OBJECTIVE_C_HAS_TYPE_##WHICH
|
280
|
+
#define Z_COMPILER_OBJECTIVE_C_HAS_TYPE_QUALIFIER(WHICH) Z_COMPILER_OBJECTIVE_C_HAS_TYPE_QUALIFIER_##WHICH
|
281
|
+
#define Z_COMPILER_HAS( WHAT ) Z_COMPILER_HAS_##WHAT
|
282
|
+
#define Z_COMPILER_HAS_ATTRIBUTE( WHICH) Z_COMPILER_HAS_ATTRIBUTE_##WHICH
|
283
|
+
#define Z_COMPILER_HAS_CONSTANT( WHICH) Z_COMPILER_HAS_CONSTANT_##WHICH
|
284
|
+
#define Z_COMPILER_HAS_FUNCTION( WHICH) Z_COMPILER_HAS_FUNCTION_##WHICH
|
285
|
+
#define Z_COMPILER_HAS_LITERAL( WHICH) Z_COMPILER_HAS_LITERAL_##WHICH
|
286
|
+
#define Z_COMPILER_HAS_MACRO( WHICH) Z_COMPILER_HAS_MACRO_##WHICH
|
287
|
+
#define Z_COMPILER_HAS_MAGIC_CONSTANT( WHICH) Z_COMPILER_HAS_MAGIC_CONSTANT_##WHICH
|
288
|
+
#define Z_COMPILER_HAS_TRAIT( WHICH) Z_COMPILER_HAS_TRAIT_##WHICH
|
289
|
+
#define Z_COMPILER_HAS_TYPE( WHICH) Z_COMPILER_HAS_TYPE_##WHICH
|
290
|
+
#define Z_COMPILER_ATTRIBUTE( WHICH) Z_COMPILER_ATTRIBUTE_##WHICH
|
291
|
+
#define Z_COMPILER_CONSTANT( WHICH) Z_COMPILER_CONSTANT_##WHICH
|
292
|
+
#define Z_COMPILER_FUNCTION( WHICH) Z_COMPILER_FUNCTION_##WHICH
|
293
|
+
#define Z_COMPILER_LITERAL( WHICH) Z_COMPILER_LITERAL_##WHICH
|
294
|
+
#define Z_COMPILER_MAGIC_CONSTANT( WHICH) Z_COMPILER_MAGIC_CONSTANT_##WHICH
|
295
|
+
#define Z_COMPILER_MACRO( WHICH) Z_COMPILER_MACRO_##WHICH
|
296
|
+
#define Z_COMPILER_TRAIT( WHICH) Z_COMPILER_TRAIT_##WHICH
|
297
|
+
#define Z_COMPILER_TYPE( WHICH) Z_COMPILER_TYPE_##WHICH
|
298
|
+
|
299
|
+
#endif /* _Z_inspection_compiler_H_ */
|
@@ -0,0 +1,128 @@
|
|
1
|
+
/* Z Kit - inspection/data model/completion.h
|
2
|
+
_____ _______________
|
3
|
+
/_ /_/ -_/_ _/ _ |
|
4
|
+
/____/\___/ /__//___/_| Kit
|
5
|
+
Copyright (C) 2006-2018 Manuel Sainz de Baranda y Goñi.
|
6
|
+
Released under the terms of the GNU Lesser General Public License v3. */
|
7
|
+
|
8
|
+
#ifdef Z_DATA_MODEL_LITERAL_UINT8
|
9
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT8 TRUE
|
10
|
+
#else
|
11
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT8 FALSE
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef Z_DATA_MODEL_LITERAL_SINT8
|
15
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT8 TRUE
|
16
|
+
#else
|
17
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT8 FALSE
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#ifdef Z_DATA_MODEL_LITERAL_UINT16
|
21
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT16 TRUE
|
22
|
+
#else
|
23
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT16 FALSE
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#ifdef Z_DATA_MODEL_LITERAL_SINT16
|
27
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT16 TRUE
|
28
|
+
#else
|
29
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT16 FALSE
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#ifdef Z_DATA_MODEL_LITERAL_UINT32
|
33
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT32 TRUE
|
34
|
+
#else
|
35
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT32 FALSE
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#ifdef Z_DATA_MODEL_LITERAL_SINT32
|
39
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT32 TRUE
|
40
|
+
#else
|
41
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT32 FALSE
|
42
|
+
#endif
|
43
|
+
|
44
|
+
#ifdef Z_DATA_MODEL_LITERAL_UINT64
|
45
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT64 TRUE
|
46
|
+
#else
|
47
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT64 FALSE
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#ifdef Z_DATA_MODEL_LITERAL_SINT64
|
51
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT64 TRUE
|
52
|
+
#else
|
53
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT64 FALSE
|
54
|
+
#endif
|
55
|
+
|
56
|
+
#ifdef Z_DATA_MODEL_LITERAL_UINT128
|
57
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT128 TRUE
|
58
|
+
#else
|
59
|
+
# define Z_DATA_MODEL_HAS_LITERAL_UINT128 FALSE
|
60
|
+
#endif
|
61
|
+
|
62
|
+
#ifdef Z_DATA_MODEL_LITERAL_SINT128
|
63
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT128 TRUE
|
64
|
+
#else
|
65
|
+
# define Z_DATA_MODEL_HAS_LITERAL_SINT128 FALSE
|
66
|
+
#endif
|
67
|
+
|
68
|
+
#ifdef Z_DATA_MODEL_TYPE_UINT8
|
69
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT8 TRUE
|
70
|
+
#else
|
71
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT8 FALSE
|
72
|
+
#endif
|
73
|
+
|
74
|
+
#ifdef Z_DATA_MODEL_TYPE_SINT8
|
75
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT8 TRUE
|
76
|
+
#else
|
77
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT8 FALSE
|
78
|
+
#endif
|
79
|
+
|
80
|
+
#ifdef Z_DATA_MODEL_TYPE_UINT16
|
81
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT16 TRUE
|
82
|
+
#else
|
83
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT16 FALSE
|
84
|
+
#endif
|
85
|
+
|
86
|
+
#ifdef Z_DATA_MODEL_TYPE_SINT16
|
87
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT16 TRUE
|
88
|
+
#else
|
89
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT16 FALSE
|
90
|
+
#endif
|
91
|
+
|
92
|
+
#ifdef Z_DATA_MODEL_TYPE_UINT32
|
93
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT32 TRUE
|
94
|
+
#else
|
95
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT32 FALSE
|
96
|
+
#endif
|
97
|
+
|
98
|
+
#ifdef Z_DATA_MODEL_TYPE_SINT32
|
99
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT32 TRUE
|
100
|
+
#else
|
101
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT32 FALSE
|
102
|
+
#endif
|
103
|
+
|
104
|
+
#ifdef Z_DATA_MODEL_TYPE_UINT64
|
105
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT64 TRUE
|
106
|
+
#else
|
107
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT64 FALSE
|
108
|
+
#endif
|
109
|
+
|
110
|
+
#ifdef Z_DATA_MODEL_TYPE_SINT64
|
111
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT64 TRUE
|
112
|
+
#else
|
113
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT64 FALSE
|
114
|
+
#endif
|
115
|
+
|
116
|
+
#ifdef Z_DATA_MODEL_TYPE_UINT128
|
117
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT128 TRUE
|
118
|
+
#else
|
119
|
+
# define Z_DATA_MODEL_HAS_TYPE_UINT128 FALSE
|
120
|
+
#endif
|
121
|
+
|
122
|
+
#ifdef Z_DATA_MODEL_TYPE_SINT128
|
123
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT128 TRUE
|
124
|
+
#else
|
125
|
+
# define Z_DATA_MODEL_HAS_TYPE_SINT128 FALSE
|
126
|
+
#endif
|
127
|
+
|
128
|
+
/* inspection/data model/completion.h EOF */
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/* Z Kit - inspection/data model/deduction.h
|
2
|
+
_____ _______________
|
3
|
+
/_ /_/ -_/_ _/ _ |
|
4
|
+
/____/\___/ /__//___/_| Kit
|
5
|
+
Copyright (C) 2006-2018 Manuel Sainz de Baranda y Goñi.
|
6
|
+
Released under the terms of the GNU Lesser General Public License v3. */
|
7
|
+
|
8
|
+
|
9
|
+
/* inspection/data model/deduction.h EOF */
|
@@ -0,0 +1,45 @@
|
|
1
|
+
/* Z Kit - inspection/data model/detection.h
|
2
|
+
_____ _______________
|
3
|
+
/_ /_/ -_/_ _/ _ |
|
4
|
+
/____/\___/ /__//___/_| Kit
|
5
|
+
Copyright (C) 2006-2018 Manuel Sainz de Baranda y Goñi.
|
6
|
+
Released under the terms of the GNU Lesser General Public License v3. */
|
7
|
+
|
8
|
+
#if defined(__ILP32__) || /* Clang, GCC */ \
|
9
|
+
defined(__ILP32 ) || \
|
10
|
+
defined(_ILP32_ ) || \
|
11
|
+
defined(_ILP32 ) /* Clang, HP aC++, Sun Studio */
|
12
|
+
|
13
|
+
# define Z_DATA_MODEL Z_DATA_MODEL_ILP32
|
14
|
+
|
15
|
+
#elif defined(__ILP64__) || \
|
16
|
+
defined(__ILP64 ) || \
|
17
|
+
defined(_ILP64_ ) || \
|
18
|
+
defined(_ILP64 )
|
19
|
+
|
20
|
+
# define Z_DATA_MODEL Z_DATA_MODEL_ILP64
|
21
|
+
|
22
|
+
#elif defined(__LLP64__) || \
|
23
|
+
defined(__LLP64 ) || \
|
24
|
+
defined(_LLP64_ ) || \
|
25
|
+
defined(_LLP64 )
|
26
|
+
|
27
|
+
# define Z_DATA_MODEL Z_DATA_MODEL_LLP64
|
28
|
+
|
29
|
+
#elif defined(__LP32__) || /* Clang */ \
|
30
|
+
defined(__LP32 ) || \
|
31
|
+
defined(_LP32_ ) || \
|
32
|
+
defined(_LP32 )
|
33
|
+
|
34
|
+
# define Z_DATA_MODEL Z_DATA_MODEL_LP32
|
35
|
+
|
36
|
+
#elif defined(__LP64__) || /* Clang, GCC */ \
|
37
|
+
defined(__LP64 ) || \
|
38
|
+
defined(_LP64_ ) || \
|
39
|
+
defined(_LP64 ) /* Clang, HP aC++, Sun Studio */ \
|
40
|
+
|
41
|
+
# define Z_DATA_MODEL Z_DATA_MODEL_LP64
|
42
|
+
|
43
|
+
#endif
|
44
|
+
|
45
|
+
/* inspection/data model/detection.h EOF */
|