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
43fe5b88
Commit
43fe5b88
authored
Jan 21, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify abs() optimisation for C integers and fix it for the most negative int/long value
parent
9f965289
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
10 deletions
+30
-10
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+10
-10
tests/run/builtin_abs.pyx
tests/run/builtin_abs.pyx
+20
-0
No files found.
Cython/Compiler/Builtin.py
View file @
43fe5b88
...
@@ -19,16 +19,16 @@ proto = """
...
@@ -19,16 +19,16 @@ proto = """
abs_int_utility_code
=
UtilityCode
(
abs_int_utility_code
=
UtilityCode
(
proto
=
'''
proto
=
'''
#if HAVE_LONG_LONG && defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
static CYTHON_INLINE unsigned int __Pyx_abs_int(int x) {
#define __Pyx_abs_int(x)
\
if (unlikely(x == -INT_MAX-1))
((sizeof(x) <= sizeof(int)) ? ((unsigned int)abs(x)) :
\
return ((unsigned int)INT_MAX) + 1U;
((sizeof(x) <= sizeof(long)) ? ((unsigned long)labs(x)) :
\
return (unsigned int) abs(x);
((unsigned PY_LONG_LONG)llabs(x))))
}
#else
static CYTHON_INLINE unsigned long __Pyx_abs_long(long x) {
#define __Pyx_abs_int(x)
\
if (unlikely(x == -LONG_MAX-1))
((sizeof(x) <= sizeof(int)) ? ((unsigned int)abs(x)) : ((unsigned long)labs(x)))
return ((unsigned long)LONG_MAX) + 1U;
#endif
return (unsigned long) labs(x);
#define __Pyx_abs_long(x) __Pyx_abs_int(x)
}
'''
)
'''
)
iter_next_utility_code
=
UtilityCode
.
load_cached
(
"IterNext"
,
"ObjectHandling.c"
)
iter_next_utility_code
=
UtilityCode
.
load_cached
(
"IterNext"
,
"ObjectHandling.c"
)
...
...
tests/run/builtin_abs.pyx
View file @
43fe5b88
...
@@ -47,6 +47,16 @@ def int_abs(int a):
...
@@ -47,6 +47,16 @@ def int_abs(int a):
"""
"""
return
abs
(
a
)
return
abs
(
a
)
@
cython
.
test_assert_path_exists
(
"//ReturnStatNode//NameNode[@entry.name = 'abs']"
)
@
cython
.
test_fail_if_path_exists
(
"//ReturnStatNode//NameNode[@entry.cname = '__Pyx_abs_int']"
,
"//ReturnStatNode//NameNode[@entry.cname = '__Pyx_abs_long']"
)
def
uint_abs
(
unsigned
int
a
):
"""
>>> uint_abs(max_int) == abs(max_int) or (max_int, uint_abs(max_int), abs(max_int))
True
"""
return
abs
(
a
)
@
cython
.
test_assert_path_exists
(
"//ReturnStatNode//NameNode[@entry.name = 'abs']"
,
@
cython
.
test_assert_path_exists
(
"//ReturnStatNode//NameNode[@entry.name = 'abs']"
,
"//ReturnStatNode//NameNode[@entry.cname = '__Pyx_abs_long']"
)
"//ReturnStatNode//NameNode[@entry.cname = '__Pyx_abs_long']"
)
def
long_abs
(
long
a
):
def
long_abs
(
long
a
):
...
@@ -64,6 +74,16 @@ def long_abs(long a):
...
@@ -64,6 +74,16 @@ def long_abs(long a):
"""
"""
return
abs
(
a
)
return
abs
(
a
)
@
cython
.
test_assert_path_exists
(
"//ReturnStatNode//NameNode[@entry.name = 'abs']"
)
@
cython
.
test_fail_if_path_exists
(
"//ReturnStatNode//NameNode[@entry.cname = '__Pyx_abs_int']"
,
"//ReturnStatNode//NameNode[@entry.cname = '__Pyx_abs_long']"
)
def
ulong_abs
(
unsigned
long
a
):
"""
>>> ulong_abs(max_long) == abs(max_long) or (max_int, ulong_abs(max_long), abs(max_long))
True
"""
return
abs
(
a
)
def
long_long_abs
(
long
long
a
):
def
long_long_abs
(
long
long
a
):
"""
"""
>>> long_long_abs(-(2**33)) == 2**33
>>> long_long_abs(-(2**33)) == 2**33
...
...
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