Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
9eff1d3b
Commit
9eff1d3b
authored
Sep 18, 2013
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'int-conversion'
parents
73e5cb51
1cbf6ba0
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
259 additions
and
259 deletions
+259
-259
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+1
-0
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+5
-6
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+35
-203
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+1
-1
Cython/Utility/ModuleSetupCode.c
Cython/Utility/ModuleSetupCode.c
+1
-1
Cython/Utility/TypeConversion.c
Cython/Utility/TypeConversion.c
+162
-37
tests/run/cpp_nonstdint.h
tests/run/cpp_nonstdint.h
+48
-8
tests/run/int_literals.pyx
tests/run/int_literals.pyx
+5
-2
tests/run/wundram1.pyx
tests/run/wundram1.pyx
+1
-1
No files found.
Cython/Compiler/ExprNodes.py
View file @
9eff1d3b
...
...
@@ -3020,6 +3020,7 @@ class IndexNode(ExprNode):
else
:
self
.
is_temp
=
1
self
.
index
=
self
.
index
.
coerce_to
(
PyrexTypes
.
c_py_ssize_t_type
,
env
).
coerce_to_simple
(
env
)
self
.
original_index_type
.
create_to_py_utility_code
(
env
)
else
:
self
.
index
=
self
.
index
.
coerce_to_pyobject
(
env
)
self
.
is_temp
=
1
...
...
Cython/Compiler/ModuleNode.py
View file @
9eff1d3b
...
...
@@ -592,6 +592,11 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
'#define __Pyx_PyObject_FromStringAndSize __Pyx_Py%s_FromStringAndSize'
%
c_string_type
.
title
())
code
.
put
(
UtilityCode
.
load_as_string
(
"TypeConversions"
,
"TypeConversion.c"
)[
0
])
# These utility functions are assumed to exist and used elsewhere.
PyrexTypes
.
c_long_type
.
create_to_py_utility_code
(
env
)
PyrexTypes
.
c_long_type
.
create_from_py_utility_code
(
env
)
PyrexTypes
.
c_int_type
.
create_from_py_utility_code
(
env
)
code
.
put
(
Nodes
.
branch_prediction_macros
)
code
.
putln
(
''
)
code
.
putln
(
'static PyObject *%s;'
%
env
.
module_cname
)
...
...
@@ -606,12 +611,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
'static const char * %s= %s;'
%
(
Naming
.
cfilenm_cname
,
Naming
.
file_c_macro
))
code
.
putln
(
'static const char *%s;'
%
Naming
.
filename_cname
)
# XXX this is a mess
for
utility_code
in
PyrexTypes
.
c_int_from_py_function
.
specialize_list
:
env
.
use_utility_code
(
utility_code
)
for
utility_code
in
PyrexTypes
.
c_long_from_py_function
.
specialize_list
:
env
.
use_utility_code
(
utility_code
)
def
generate_extern_c_macro_definition
(
self
,
code
):
name
=
Naming
.
extern_c_macro
code
.
putln
(
"#ifndef %s"
%
name
)
...
...
Cython/Compiler/PyrexTypes.py
View file @
9eff1d3b
...
...
@@ -368,11 +368,12 @@ class CTypedefType(BaseType):
if
not
self
.
to_py_utility_code
:
base_type
=
self
.
typedef_base_type
if
type
(
base_type
)
is
CIntType
:
# Various subclasses have special methods
# that should be inherited.
self
.
to_py_utility_code
,
self
.
to_py_function
=
\
self
.
_create_utility_code
(
c_typedef_int_to_py_function
,
'__Pyx_PyInt_to_py_%s'
)
self
.
to_py_function
=
"__Pyx_PyInt_From_"
+
self
.
specialization_name
()
env
.
use_utility_code
(
TempitaUtilityCode
.
load
(
"CIntToPy"
,
"TypeConversion.c"
,
context
=
{
"TYPE"
:
self
.
declaration_code
(
''
),
"TO_PY_FUNCTION"
:
self
.
to_py_function
}))
return
True
elif
base_type
.
is_float
:
pass
# XXX implement!
elif
base_type
.
is_complex
:
...
...
@@ -389,11 +390,12 @@ class CTypedefType(BaseType):
if
not
self
.
from_py_utility_code
:
base_type
=
self
.
typedef_base_type
if
type
(
base_type
)
is
CIntType
:
# Various subclasses have special methods
# that should be inherited.
self
.
from_py_utility_code
,
self
.
from_py_function
=
\
self
.
_create_utility_code
(
c_typedef_int_from_py_function
,
'__Pyx_PyInt_from_py_%s'
)
self
.
from_py_function
=
"__Pyx_PyInt_As_"
+
self
.
specialization_name
()
env
.
use_utility_code
(
TempitaUtilityCode
.
load
(
"CIntFromPy"
,
"TypeConversion.c"
,
context
=
{
"TYPE"
:
self
.
declaration_code
(
''
),
"FROM_PY_FUNCTION"
:
self
.
from_py_function
}))
return
True
elif
base_type
.
is_float
:
pass
# XXX implement!
elif
base_type
.
is_complex
:
...
...
@@ -1363,191 +1365,14 @@ class CNumericType(CType):
return
"(int, long)"
return
"float"
c_int_from_py_function
=
UtilityCode
(
proto
=
"""
static CYTHON_INLINE %(type)s __Pyx_PyInt_As%(SignWord)s%(TypeName)s(PyObject *);
"""
,
impl
=
"""
static CYTHON_INLINE %(type)s __Pyx_PyInt_As%(SignWord)s%(TypeName)s(PyObject* x) {
const %(type)s neg_one = (%(type)s)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(%(type)s) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(%(type)s)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to %(type)s" :
"value too large to convert to %(type)s");
}
return (%(type)s)-1;
}
return (%(type)s)val;
}
return (%(type)s)__Pyx_PyInt_As%(SignWord)sLong(x);
}
"""
)
#fool emacs: '
c_long_from_py_function
=
UtilityCode
(
proto
=
"""
static CYTHON_INLINE %(type)s __Pyx_PyInt_As%(SignWord)s%(TypeName)s(PyObject *);
"""
,
impl
=
"""
#if CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
#if CYTHON_USE_PYLONG_INTERNALS
#include "longintrepr.h"
#endif
#endif
static CYTHON_INLINE %(type)s __Pyx_PyInt_As%(SignWord)s%(TypeName)s(PyObject* x) {
const %(type)s neg_one = (%(type)s)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_MAJOR_VERSION < 3
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to %(type)s");
return (%(type)s)-1;
}
return (%(type)s)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
#if CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
#if CYTHON_USE_PYLONG_INTERNALS
if (sizeof(digit) <= sizeof(%(type)s)) {
switch (Py_SIZE(x)) {
case 0: return 0;
case 1: return (%(type)s) ((PyLongObject*)x)->ob_digit[0];
}
}
#endif
#endif
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to %(type)s");
return (%(type)s)-1;
}
return (%(type)s)PyLong_AsUnsigned%(TypeName)s(x);
} else {
#if CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
#if CYTHON_USE_PYLONG_INTERNALS
if (sizeof(digit) <= sizeof(%(type)s)) {
switch (Py_SIZE(x)) {
case 0: return 0;
case 1: return +(%(type)s) ((PyLongObject*)x)->ob_digit[0];
case -1: return -(%(type)s) ((PyLongObject*)x)->ob_digit[0];
}
}
#endif
#endif
return (%(type)s)PyLong_As%(TypeName)s(x);
}
} else {
%(type)s val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (%(type)s)-1;
val = __Pyx_PyInt_As%(SignWord)s%(TypeName)s(tmp);
Py_DECREF(tmp);
return val;
}
}
"""
)
c_typedef_int_from_py_function
=
UtilityCode
(
proto
=
"""
static CYTHON_INLINE %(type)s __Pyx_PyInt_from_py_%(TypeName)s(PyObject *);
"""
,
impl
=
"""
static CYTHON_INLINE %(type)s __Pyx_PyInt_from_py_%(TypeName)s(PyObject* x) {
const %(type)s neg_one = (%(type)s)-1, const_zero = (%(type)s)0;
const int is_unsigned = const_zero < neg_one;
if (sizeof(%(type)s) == sizeof(char)) {
if (is_unsigned)
return (%(type)s)__Pyx_PyInt_AsUnsignedChar(x);
else
return (%(type)s)__Pyx_PyInt_AsSignedChar(x);
} else if (sizeof(%(type)s) == sizeof(short)) {
if (is_unsigned)
return (%(type)s)__Pyx_PyInt_AsUnsignedShort(x);
else
return (%(type)s)__Pyx_PyInt_AsSignedShort(x);
} else if (sizeof(%(type)s) == sizeof(int)) {
if (is_unsigned)
return (%(type)s)__Pyx_PyInt_AsUnsignedInt(x);
else
return (%(type)s)__Pyx_PyInt_AsSignedInt(x);
} else if (sizeof(%(type)s) == sizeof(long)) {
if (is_unsigned)
return (%(type)s)__Pyx_PyInt_AsUnsignedLong(x);
else
return (%(type)s)__Pyx_PyInt_AsSignedLong(x);
} else if (sizeof(%(type)s) == sizeof(PY_LONG_LONG)) {
if (is_unsigned)
return (%(type)s)__Pyx_PyInt_AsUnsignedLongLong(x);
else
return (%(type)s)__Pyx_PyInt_AsSignedLongLong(x);
} else {
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString(PyExc_RuntimeError,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
#else
%(type)s val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_MAJOR_VERSION < 3
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
#endif
return (%(type)s)-1;
}
}
"""
)
class
ForbidUseClass
:
def
__repr__
(
self
):
raise
RuntimeError
()
def
__str__
(
self
):
raise
RuntimeError
()
ForbidUse
=
ForbidUseClass
()
c_typedef_int_to_py_function
=
UtilityCode
(
proto
=
"""
static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_%(TypeName)s(%(type)s);
"""
,
impl
=
"""
static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_%(TypeName)s(%(type)s val) {
const %(type)s neg_one = (%(type)s)-1, const_zero = (%(type)s)0;
const int is_unsigned = const_zero < neg_one;
if ((sizeof(%(type)s) == sizeof(char)) ||
(sizeof(%(type)s) == sizeof(short))) {
return PyInt_FromLong((long)val);
} else if ((sizeof(%(type)s) == sizeof(int)) ||
(sizeof(%(type)s) == sizeof(long))) {
if (is_unsigned)
return PyLong_FromUnsignedLong((unsigned long)val);
else
return PyInt_FromLong((long)val);
} else if (sizeof(%(type)s) == sizeof(PY_LONG_LONG)) {
if (is_unsigned)
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
else
return PyLong_FromLongLong((PY_LONG_LONG)val);
} else {
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
return _PyLong_FromByteArray(bytes, sizeof(%(type)s),
little, !is_unsigned);
}
}
"""
)
class
CIntType
(
CNumericType
):
...
...
@@ -1557,12 +1382,23 @@ class CIntType(CNumericType):
from_py_function
=
None
exception_value
=
-
1
def
__init__
(
self
,
rank
,
signed
=
1
):
CNumericType
.
__init__
(
self
,
rank
,
signed
)
if
self
.
to_py_function
is
None
:
self
.
to_py_function
=
self
.
get_to_py_type_conversion
()
if
self
.
from_py_function
is
None
:
self
.
from_py_function
=
self
.
get_from_py_type_conversion
()
def
create_to_py_utility_code
(
self
,
env
):
if
type
(
self
).
to_py_function
is
None
:
self
.
to_py_function
=
"__Pyx_PyInt_From_"
+
self
.
specialization_name
()
env
.
use_utility_code
(
TempitaUtilityCode
.
load
(
"CIntToPy"
,
"TypeConversion.c"
,
context
=
{
"TYPE"
:
self
.
declaration_code
(
''
),
"TO_PY_FUNCTION"
:
self
.
to_py_function
}))
return
True
def
create_from_py_utility_code
(
self
,
env
):
if
type
(
self
).
from_py_function
is
None
:
self
.
from_py_function
=
"__Pyx_PyInt_As_"
+
self
.
specialization_name
()
env
.
use_utility_code
(
TempitaUtilityCode
.
load
(
"CIntFromPy"
,
"TypeConversion.c"
,
context
=
{
"TYPE"
:
self
.
declaration_code
(
''
),
"FROM_PY_FUNCTION"
:
self
.
from_py_function
}))
return
True
def
get_to_py_type_conversion
(
self
):
if
self
.
rank
<
list
(
rank_to_type_name
).
index
(
'int'
):
...
...
@@ -1761,16 +1597,12 @@ class CSSizeTType(CIntType):
class
CSizeTType
(
CIntType
):
to_py_function
=
"__Pyx_PyInt_FromSize_t"
from_py_function
=
"__Pyx_PyInt_AsSize_t"
def
sign_and_name
(
self
):
return
"size_t"
class
CPtrdiffTType
(
CIntType
):
to_py_function
=
"__Pyx_PyInt_FromPtrdiff_t"
from_py_function
=
"__Pyx_PyInt_AsPtrdiff_t"
def
sign_and_name
(
self
):
return
"ptrdiff_t"
...
...
Cython/Compiler/Visitor.py
View file @
9eff1d3b
...
...
@@ -64,7 +64,7 @@ class TreeVisitor(object):
self
.
access_path
=
[]
def
dump_node
(
self
,
node
,
indent
=
0
):
ignored
=
list
(
node
.
child_attrs
)
+
[
u'child_attrs'
,
u'pos'
,
ignored
=
list
(
node
.
child_attrs
or
[]
)
+
[
u'child_attrs'
,
u'pos'
,
u'gil_message'
,
u'cpp_message'
,
u'subexprs'
]
values
=
[]
...
...
Cython/Utility/ModuleSetupCode.c
View file @
9eff1d3b
...
...
@@ -51,7 +51,7 @@
#define PY_FORMAT_SIZE_T ""
#define CYTHON_FORMAT_SSIZE_T ""
#define PyInt_FromSsize_t(z) PyInt_FromLong(z)
#define PyInt_AsSsize_t(o) __Pyx_PyInt_As
I
nt(o)
#define PyInt_AsSsize_t(o) __Pyx_PyInt_As
_i
nt(o)
#define PyNumber_Index(o) ((PyNumber_Check(o) && !PyFloat_Check(o)) ? PyNumber_Int(o) : \
(PyErr_Format(PyExc_TypeError, \
"expected index value, got %.200s", Py_TYPE(o)->tp_name), \
...
...
Cython/Utility/TypeConversion.c
View file @
9eff1d3b
...
...
@@ -45,10 +45,6 @@ static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x);
static
CYTHON_INLINE
Py_ssize_t
__Pyx_PyIndex_AsSsize_t
(
PyObject
*
);
static
CYTHON_INLINE
PyObject
*
__Pyx_PyInt_FromSize_t
(
size_t
);
static
CYTHON_INLINE
size_t
__Pyx_PyInt_AsSize_t
(
PyObject
*
);
static
CYTHON_INLINE
PyObject
*
__Pyx_PyInt_FromPtrdiff_t
(
ptrdiff_t
);
static
CYTHON_INLINE
ptrdiff_t
__Pyx_PyInt_AsPtrdiff_t
(
PyObject
*
);
#if CYTHON_COMPILING_IN_CPYTHON
#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x))
...
...
@@ -281,37 +277,6 @@ static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
#endif
}
static
CYTHON_INLINE
size_t
__Pyx_PyInt_AsSize_t
(
PyObject
*
x
)
{
unsigned
PY_LONG_LONG
val
=
__Pyx_PyInt_AsUnsignedLongLong
(
x
);
if
(
unlikely
(
val
!=
(
unsigned
PY_LONG_LONG
)(
size_t
)
val
))
{
if
((
val
!=
(
unsigned
PY_LONG_LONG
)
-
1
)
||
!
PyErr_Occurred
())
PyErr_SetString
(
PyExc_OverflowError
,
"value too large to convert to size_t"
);
return
(
size_t
)
-
1
;
}
return
(
size_t
)
val
;
}
static
CYTHON_INLINE
PyObject
*
__Pyx_PyInt_FromPtrdiff_t
(
ptrdiff_t
ival
)
{
if
(
LONG_MIN
<
ival
&&
ival
<=
LONG_MAX
)
return
PyInt_FromLong
((
long
)
ival
);
else
{
unsigned
char
*
bytes
=
(
unsigned
char
*
)
&
ival
;
int
one
=
1
;
int
little
=
(
int
)
*
(
unsigned
char
*
)
&
one
;
return
_PyLong_FromByteArray
(
bytes
,
sizeof
(
ptrdiff_t
),
little
,
0
);
}
}
static
CYTHON_INLINE
ptrdiff_t
__Pyx_PyInt_AsPtrdiff_t
(
PyObject
*
x
)
{
unsigned
PY_LONG_LONG
val
=
__Pyx_PyInt_AsLongLong
(
x
);
if
(
unlikely
(
val
!=
(
unsigned
PY_LONG_LONG
)(
ptrdiff_t
)
val
))
{
if
((
val
!=
(
unsigned
PY_LONG_LONG
)
-
1
)
||
!
PyErr_Occurred
())
PyErr_SetString
(
PyExc_OverflowError
,
"value too large to convert to size_t"
);
return
(
ptrdiff_t
)
-
1
;
}
return
(
ptrdiff_t
)
val
;
}
/////////////// FromPyStructUtility.proto ///////////////
{{
struct_type_decl
}};
...
...
@@ -386,7 +351,7 @@ static CYTHON_INLINE Py_UCS4 __Pyx_PyObject_AsPy_UCS4(PyObject* x) {
"got length %"
CYTHON_FORMAT_SSIZE_T
"d"
,
length
);
return
(
Py_UCS4
)
-
1
;
}
ival
=
__Pyx_PyInt_As
L
ong
(
x
);
ival
=
__Pyx_PyInt_As
_l
ong
(
x
);
if
(
unlikely
(
ival
<
0
))
{
if
(
!
PyErr_Occurred
())
PyErr_SetString
(
PyExc_OverflowError
,
...
...
@@ -434,7 +399,7 @@ static CYTHON_INLINE Py_UNICODE __Pyx_PyObject_AsPy_UNICODE(PyObject* x) {
if
(
unlikely
(
!
maxval
))
maxval
=
(
long
)
PyUnicode_GetMax
();
#endif
ival
=
__Pyx_PyInt_As
L
ong
(
x
);
ival
=
__Pyx_PyInt_As
_l
ong
(
x
);
}
if
(
unlikely
(
ival
<
0
))
{
if
(
!
PyErr_Occurred
())
...
...
@@ -448,3 +413,163 @@ static CYTHON_INLINE Py_UNICODE __Pyx_PyObject_AsPy_UNICODE(PyObject* x) {
}
return
(
Py_UNICODE
)
ival
;
}
/////////////// CIntToPy.proto ///////////////
static
CYTHON_INLINE
PyObject
*
{{
TO_PY_FUNCTION
}}({{
TYPE
}}
value
);
/////////////// CIntToPy ///////////////
static
CYTHON_INLINE
PyObject
*
{{
TO_PY_FUNCTION
}}({{
TYPE
}}
value
)
{
const
{{
TYPE
}}
neg_one
=
({{
TYPE
}})
-
1
,
const_zero
=
0
;
const
int
is_unsigned
=
neg_one
>
const_zero
;
if
(
is_unsigned
)
{
if
(
sizeof
({{
TYPE
}})
<
sizeof
(
unsigned
long
))
{
return
PyInt_FromLong
(
value
);
}
else
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
unsigned
long
))
{
return
PyLong_FromUnsignedLong
(
value
);
}
else
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
unsigned
long
long
))
{
return
PyLong_FromUnsignedLongLong
(
value
);
}
}
else
{
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
long
))
{
return
PyInt_FromLong
(
value
);
}
else
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
long
long
))
{
return
PyLong_FromLongLong
(
value
);
}
}
{
int
one
=
1
;
int
little
=
(
int
)
*
(
unsigned
char
*
)
&
one
;
unsigned
char
*
bytes
=
(
unsigned
char
*
)
&
value
;
return
_PyLong_FromByteArray
(
bytes
,
sizeof
({{
TYPE
}}),
little
,
!
is_unsigned
);
}
}
/////////////// CIntFromPyVerify ///////////////
#define __PYX_VERIFY_RETURN_INT(type, value_type, func) \
{ \
value_type value = func(x); \
if (sizeof(type) < sizeof(value_type)) { \
if (unlikely(value != (type) value)) { \
PyErr_SetString(PyExc_OverflowError, \
(is_unsigned && unlikely(value < 0)) ? \
"can't convert negative value to " #type : \
"value too large to convert to " #type); \
return (type) -1; \
} \
} \
return (type) value; \
}
/////////////// CIntFromPy.proto ///////////////
static
CYTHON_INLINE
{{
TYPE
}}
{{
FROM_PY_FUNCTION
}}(
PyObject
*
);
/////////////// CIntFromPy ///////////////
//@requires: CIntFromPyVerify
#if CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
#if CYTHON_USE_PYLONG_INTERNALS
#include "longintrepr.h"
#endif
#endif
static
CYTHON_INLINE
{{
TYPE
}}
{{
FROM_PY_FUNCTION
}}(
PyObject
*
x
)
{
const
{{
TYPE
}}
neg_one
=
({{
TYPE
}})
-
1
,
const_zero
=
0
;
const
int
is_unsigned
=
neg_one
>
const_zero
;
#if PY_MAJOR_VERSION < 3
if
(
likely
(
PyInt_Check
(
x
)))
{
if
(
sizeof
({{
TYPE
}})
<
sizeof
(
long
))
{
__PYX_VERIFY_RETURN_INT
({{
TYPE
}},
long
,
PyInt_AS_LONG
)
}
else
{
long
val
=
PyInt_AS_LONG
(
x
);
if
(
is_unsigned
&&
unlikely
(
val
<
0
))
{
PyErr_SetString
(
PyExc_OverflowError
,
"can't convert negative value to {{TYPE}}"
);
return
({{
TYPE
}})
-
1
;
}
return
({{
TYPE
}})
val
;
}
}
else
#endif
if
(
likely
(
PyLong_Check
(
x
)))
{
if
(
is_unsigned
)
{
#if CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
#if CYTHON_USE_PYLONG_INTERNALS
if
(
sizeof
(
digit
)
<=
sizeof
({{
TYPE
}}))
{
switch
(
Py_SIZE
(
x
))
{
case
0
:
return
0
;
case
1
:
return
({{
TYPE
}})
((
PyLongObject
*
)
x
)
->
ob_digit
[
0
];
}
}
#endif
#endif
if
(
unlikely
(
Py_SIZE
(
x
)
<
0
))
{
PyErr_SetString
(
PyExc_OverflowError
,
"can't convert negative value to {{TYPE}}"
);
return
({{
TYPE
}})
-
1
;
}
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
unsigned
long
))
{
__PYX_VERIFY_RETURN_INT
({{
TYPE
}},
unsigned
long
,
PyLong_AsUnsignedLong
)
}
else
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
unsigned
long
long
))
{
__PYX_VERIFY_RETURN_INT
({{
TYPE
}},
unsigned
long
long
,
PyLong_AsUnsignedLongLong
)
}
}
else
{
#if CYTHON_COMPILING_IN_CPYTHON && PY_MAJOR_VERSION >= 3
#if CYTHON_USE_PYLONG_INTERNALS
if
(
sizeof
(
digit
)
<=
sizeof
({{
TYPE
}})
{
switch
(
Py_SIZE
(
x
))
{
case
0
:
return
0
;
case
1
:
return
+
({{
TYPE
}})
((
PyLongObject
*
)
x
)
->
ob_digit
[
0
];
case
-
1
:
return
-
({{
TYPE
}})
((
PyLongObject
*
)
x
)
->
ob_digit
[
0
];
}
}
#endif
#endif
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
long
))
{
__PYX_VERIFY_RETURN_INT
({{
TYPE
}},
long
,
PyLong_AsLong
)
}
else
if
(
sizeof
({{
TYPE
}})
<=
sizeof
(
long
long
))
{
__PYX_VERIFY_RETURN_INT
({{
TYPE
}},
long
long
,
PyLong_AsLongLong
)
}
}
{
#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
PyErr_SetString
(
PyExc_RuntimeError
,
"_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"
);
#else
{{
TYPE
}}
val
;
PyObject
*
v
=
__Pyx_PyNumber_Int
(
x
);
#if PY_MAJOR_VERSION < 3
if
(
likely
(
v
)
&&
!
PyLong_Check
(
v
))
{
PyObject
*
tmp
=
v
;
v
=
PyNumber_Long
(
tmp
);
Py_DECREF
(
tmp
);
}
#endif
if
(
likely
(
v
))
{
int
one
=
1
;
int
is_little
=
(
int
)
*
(
unsigned
char
*
)
&
one
;
unsigned
char
*
bytes
=
(
unsigned
char
*
)
&
val
;
int
ret
=
_PyLong_AsByteArray
((
PyLongObject
*
)
v
,
bytes
,
sizeof
(
val
),
is_little
,
!
is_unsigned
);
Py_DECREF
(
v
);
if
(
likely
(
!
ret
))
return
val
;
}
#endif
return
({{
TYPE
}})
-
1
;
}
}
else
{
{{
TYPE
}}
val
;
PyObject
*
tmp
=
__Pyx_PyNumber_Int
(
x
);
if
(
!
tmp
)
return
({{
TYPE
}})
-
1
;
val
=
{{
FROM_PY_FUNCTION
}}(
tmp
);
Py_DECREF
(
tmp
);
return
val
;
}
}
tests/run/cpp_nonstdint.h
View file @
9eff1d3b
...
...
@@ -14,16 +14,16 @@ class Integral {
for
(
unsigned
int
i
=
0
;
i
<
N
;
i
++
)
bytes
[
i
]
=
I
.
bytes
[
i
];
}
Integral
(
signed
char
I
)
{
unsigned
char
p
=
(
I
<
0
)
?
0xFF
:
0x00
;
for
(
unsigned
int
i
=
0
;
i
<
N
;
i
++
)
bytes
[
i
]
=
p
;
bytes
[
lsb
()]
=
*
(
unsigned
char
*
)
&
I
;
Integral
(
long
long
value
)
{
resize_signed_int
((
unsigned
char
*
)
&
value
,
sizeof
(
value
),
bytes
,
N
);
}
operator
signed
char
()
const
{
return
*
(
signed
char
*
)
&
bytes
[
lsb
()];
operator
long
long
()
const
{
long
long
value
;
resize_signed_int
(
bytes
,
N
,
(
unsigned
char
*
)
&
value
,
sizeof
(
value
));
return
value
;
}
Integral
&
operator
=
(
const
Integral
&
I
)
{
for
(
unsigned
int
i
=
0
;
i
<
N
;
i
++
)
bytes
[
i
]
=
I
.
bytes
[
i
];
...
...
@@ -42,6 +42,23 @@ class Integral {
bool
operator
!=
(
const
Integral
&
I
)
const
{
return
cmp
(
I
)
!=
0
;
}
bool
operator
==
(
const
long
long
value
)
const
{
size_t
len
=
sizeof
(
long
long
)
>
N
?
sizeof
(
long
long
)
:
N
;
unsigned
char
*
extended
=
new
unsigned
char
[
len
];
unsigned
char
*
other
;
if
(
sizeof
(
long
long
)
<
N
)
{
resize_signed_int
((
unsigned
char
*
)
&
value
,
sizeof
(
value
),
extended
,
len
);
other
=
bytes
;
}
else
{
resize_signed_int
(
bytes
,
N
,
extended
,
len
);
}
bool
res
=
memcmp
(
extended
,
other
,
len
);
delete
extended
;
return
res
;
}
bool
operator
!=
(
const
long
long
val
)
const
{
return
!
(
*
this
==
val
);
}
private:
static
bool
is_le
()
{
int
one
=
1
;
...
...
@@ -82,6 +99,29 @@ class Integral {
else
return
+
cmpabs
;
}
static
void
resize_signed_int
(
const
unsigned
char
*
src
,
size_t
src_len
,
unsigned
char
*
dst
,
size_t
dst_len
)
{
unsigned
char
msb
;
size_t
dst_offset
=
0
;
size_t
src_offset
=
0
;
if
(
is_le
())
{
dst_offset
=
0
;
src_offset
=
0
;
msb
=
((
unsigned
char
*
)
src
)[
src_len
-
1
];
}
else
{
if
(
dst_len
>
src_len
)
{
dst_offset
=
dst_len
-
src_len
;
}
else
{
src_offset
=
src_len
-
dst_len
;
}
msb
=
((
unsigned
char
*
)
src
)[
0
];
}
if
(
msb
&
0x80
)
{
memset
(
dst
,
0xFF
,
dst_len
);
}
else
{
memset
(
dst
,
0
,
dst_len
);
}
memcpy
(
dst
+
dst_offset
,
src
+
src_offset
,
src_len
);
}
};
typedef
Integral
<
3
>
Int24
;
...
...
tests/run/int_literals.pyx
View file @
9eff1d3b
__doc__
=
u"""
>>> c_longs()
(1, 1L, -1
L
, 18446744073709551615L)
(1, 1L, -1, 18446744073709551615L)
>>> negative_c_longs()
(-1, -9223285636854775809L)
>>> py_longs()
...
...
@@ -19,6 +19,9 @@ import sys
if
sys
.
version_info
[
0
]
>=
3
:
__doc__
=
__doc__
.
replace
(
u'L'
,
u''
)
elif
sys
.
maxint
>
2
**
31
:
# sizeof(long) == sizeof(long long)
__doc__
=
__doc__
.
replace
(
"9223285636854775809L"
,
"9223285636854775809"
)
@
cython
.
test_assert_path_exists
(
'//IntNode[@longness = "LL"]'
,
...
...
@@ -30,7 +33,7 @@ def c_longs():
cdef
unsigned
long
ua
=
1
UL
cdef
long
long
aa
=
0xFFFFFFFFFFFFFFFF
LL
cdef
unsigned
long
long
uaa
=
0xFFFFFFFFFFFFFFFF
ULL
return
a
,
ua
,
aa
,
uaa
return
a
,
ua
,
int
(
aa
)
,
uaa
@
cython
.
test_assert_path_exists
(
'//IntNode[@longness = "LL"]'
,
...
...
tests/run/wundram1.pyx
View file @
9eff1d3b
...
...
@@ -4,7 +4,7 @@ __doc__ = u"""
"""
import
sys
if
sys
.
version_info
[
0
]
>=
3
:
if
sys
.
version_info
[
0
]
>=
3
or
sys
.
maxint
>
2
**
31
:
__doc__
=
__doc__
.
replace
(
u"5L"
,
u"5"
)
cdef
unsigned
int
ui
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment