add extra checking code for different archand docs
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7909 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
bc5b7bc559
commit
815027893d
1 changed files with 59 additions and 12 deletions
71
Lib/stdint.i
71
Lib/stdint.i
|
|
@ -6,12 +6,59 @@
|
|||
#include <stdint.h>
|
||||
%}
|
||||
|
||||
|
||||
#ifndef __WORDSIZE64
|
||||
# if defined(__x86_64__) || (__WORDSIZE == 64)
|
||||
# define __WORDSIZE64
|
||||
/* 32bit/64bit code specialization and checking
|
||||
|
||||
Use only in extreme cases, when no arch. independent code can be
|
||||
generated
|
||||
|
||||
To activate architecture specific code, use
|
||||
|
||||
swig -DSWIGWORDSIZE32
|
||||
|
||||
or
|
||||
|
||||
swig -DSWIGWORDSIZE64
|
||||
|
||||
|
||||
Note that extra checking code will be added to the wrapped code,
|
||||
which will prevent the compilation in a different architecture.
|
||||
|
||||
If you don't specify the SWIGWORDSIZE (the default case), swig will
|
||||
generate architecture independent and/or 32bits code, with no extra
|
||||
checking code added.
|
||||
|
||||
*/
|
||||
#if !defined(SWIGWORDSIZE32) && !defined(SWIGWORDSIZE64)
|
||||
# if (__WORDSIZE == 32)
|
||||
# define SWIGWORDSIZE32
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if !defined(SWIGWORDSIZE64) && !defined(SWIGWORDSIZE32)
|
||||
# if defined(__x86_64) || defined(__x86_64__) || (__WORDSIZE == 64)
|
||||
# define SWIGWORDSIZE64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef SWIGWORDSIZE32
|
||||
%{
|
||||
#define SWIGWORDSIZE32
|
||||
#if LONG_MAX != INT_MAX
|
||||
# error "SWIG wrapped code invalid in 64 bit architecture, regenarete code using -DSWIGWORDSIZE64"
|
||||
#endif
|
||||
%}
|
||||
#endif
|
||||
|
||||
#ifdef SWIGWORDSIZE64
|
||||
%{
|
||||
#define SWIGWORDSIZE64
|
||||
#if LONG_MAX == INT_MAX
|
||||
# error "SWIG wrapped code invalid in 32 bit architecture, regenarete code using -DSWIGWORDSIZE32"
|
||||
#endif
|
||||
%}
|
||||
#endif
|
||||
|
||||
|
||||
/* Exact integral types. */
|
||||
|
||||
|
|
@ -20,7 +67,7 @@
|
|||
typedef signed char int8_t;
|
||||
typedef short int int16_t;
|
||||
typedef int int32_t;
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef long int int64_t;
|
||||
#else
|
||||
typedef long long int int64_t;
|
||||
|
|
@ -30,7 +77,7 @@ typedef long long int int64_t;
|
|||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short int uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef unsigned long int uint64_t;
|
||||
#else
|
||||
typedef unsigned long long int uint64_t;
|
||||
|
|
@ -43,7 +90,7 @@ typedef unsigned long long int uint64_t;
|
|||
typedef signed char int_least8_t;
|
||||
typedef short int int_least16_t;
|
||||
typedef int int_least32_t;
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef long int int_least64_t;
|
||||
#else
|
||||
typedef long long int int_least64_t;
|
||||
|
|
@ -53,7 +100,7 @@ typedef long long int int_least64_t;
|
|||
typedef unsigned char uint_least8_t;
|
||||
typedef unsigned short int uint_least16_t;
|
||||
typedef unsigned int uint_least32_t;
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef unsigned long int uint_least64_t;
|
||||
#else
|
||||
typedef unsigned long long int uint_least64_t;
|
||||
|
|
@ -64,7 +111,7 @@ typedef unsigned long long int uint_least64_t;
|
|||
|
||||
/* Signed. */
|
||||
typedef signed char int_fast8_t;
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef long int int_fast16_t;
|
||||
typedef long int int_fast32_t;
|
||||
typedef long int int_fast64_t;
|
||||
|
|
@ -76,7 +123,7 @@ typedef long long int int_fast64_t;
|
|||
|
||||
/* Unsigned. */
|
||||
typedef unsigned char uint_fast8_t;
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef unsigned long int uint_fast16_t;
|
||||
typedef unsigned long int uint_fast32_t;
|
||||
typedef unsigned long int uint_fast64_t;
|
||||
|
|
@ -88,7 +135,7 @@ typedef unsigned long long int uint_fast64_t;
|
|||
|
||||
|
||||
/* Types for `void *' pointers. */
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef long int intptr_t;
|
||||
typedef unsigned long int uintptr_t;
|
||||
#else
|
||||
|
|
@ -98,7 +145,7 @@ typedef unsigned int uintptr_t;
|
|||
|
||||
|
||||
/* Largest integral types. */
|
||||
#if defined(__WORDSIZE64)
|
||||
#if defined(SWIGWORDSIZE64)
|
||||
typedef long int intmax_t;
|
||||
typedef unsigned long int uintmax_t;
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue