Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
d02f6eaa
Commit
d02f6eaa
authored
11 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Fix int-longlong binary operations.
parent
7f8be591
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
py/objint_longlong.c
+35
-44
35 additions, 44 deletions
py/objint_longlong.c
with
35 additions
and
44 deletions
py/objint_longlong.c
+
35
−
44
View file @
d02f6eaa
...
...
@@ -41,80 +41,71 @@ mp_obj_t int_unary_op(int op, mp_obj_t o_in) {
}
mp_obj_t
int_binary_op
(
int
op
,
mp_obj_t
lhs_in
,
mp_obj_t
rhs_in
)
{
mp_obj_int_t
*
lhs
=
lhs_in
;
mp_obj_int_t
*
rhs
=
rhs_in
;
long
long
lhs_val
;
long
long
rhs_val
;
// TODO it can be that lhs is a small int (eg 1 + longlong)
// TODO inplace operations should not modify the int!
if
(
MP_OBJ_IS_SMALL_INT
(
lhs_in
))
{
lhs_val
=
MP_OBJ_SMALL_INT_VALUE
(
lhs_in
);
}
else
if
(
MP_OBJ_IS_TYPE
(
lhs_in
,
&
int_type
))
{
lhs_val
=
((
mp_obj_int_t
*
)
lhs_in
)
->
val
;
}
else
{
return
MP_OBJ_NULL
;
}
if
(
MP_OBJ_IS_SMALL_INT
(
rhs
))
{
rhs_val
=
MP_OBJ_SMALL_INT_VALUE
(
rhs
);
}
else
if
(
MP_OBJ_IS_TYPE
(
rhs
,
&
int_type
))
{
rhs_val
=
rhs
->
val
;
if
(
MP_OBJ_IS_SMALL_INT
(
rhs
_in
))
{
rhs_val
=
MP_OBJ_SMALL_INT_VALUE
(
rhs
_in
);
}
else
if
(
MP_OBJ_IS_TYPE
(
rhs
_in
,
&
int_type
))
{
rhs_val
=
((
mp_obj_int_t
*
)
rhs_in
)
->
val
;
}
else
{
return
MP_OBJ_NULL
;
}
switch
(
op
)
{
case
RT_BINARY_OP_ADD
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
+
rhs_val
);
case
RT_BINARY_OP_SUBTRACT
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
-
rhs_val
);
case
RT_BINARY_OP_MULTIPLY
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
*
rhs_val
);
case
RT_BINARY_OP_FLOOR_DIVIDE
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
/
rhs_val
);
case
RT_BINARY_OP_MODULO
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
%
rhs_val
);
case
RT_BINARY_OP_INPLACE_ADD
:
lhs
->
val
+=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
+
rhs_val
);
case
RT_BINARY_OP_SUBTRACT
:
case
RT_BINARY_OP_INPLACE_SUBTRACT
:
lhs
->
val
-=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
-
rhs_val
);
case
RT_BINARY_OP_MULTIPLY
:
case
RT_BINARY_OP_INPLACE_MULTIPLY
:
lhs
->
val
*=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
*
rhs_val
);
case
RT_BINARY_OP_FLOOR_DIVIDE
:
case
RT_BINARY_OP_INPLACE_FLOOR_DIVIDE
:
lhs
->
val
/=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
/
rhs_val
);
case
RT_BINARY_OP_MODULO
:
case
RT_BINARY_OP_INPLACE_MODULO
:
lhs
->
val
%
=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs
_
val
%
rhs_val
)
;
case
RT_BINARY_OP_AND
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
&
rhs_val
);
case
RT_BINARY_OP_OR
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
|
rhs_val
);
case
RT_BINARY_OP_XOR
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
^
rhs_val
);
case
RT_BINARY_OP_INPLACE_AND
:
lhs
->
val
&=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
&
rhs_val
);
case
RT_BINARY_OP_OR
:
case
RT_BINARY_OP_INPLACE_OR
:
lhs
->
val
|=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
|
rhs_val
);
case
RT_BINARY_OP_XOR
:
case
RT_BINARY_OP_INPLACE_XOR
:
lhs
->
val
^
=
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs
_
val
^
rhs_val
)
;
case
RT_BINARY_OP_LSHIFT
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
<<
(
int
)
rhs_val
);
case
RT_BINARY_OP_RSHIFT
:
return
mp_obj_new_int_from_ll
(
lhs
->
val
>>
(
int
)
rhs_val
);
case
RT_BINARY_OP_INPLACE_LSHIFT
:
lhs
->
val
<<=
(
int
)
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs_val
<<
(
int
)
rhs_val
);
case
RT_BINARY_OP_RSHIFT
:
case
RT_BINARY_OP_INPLACE_RSHIFT
:
lhs
->
val
>>
=
(
int
)
rhs_val
;
return
lhs
;
return
mp_obj_new_int_from_ll
(
lhs
_
val
>>
(
int
)
rhs_val
)
;
case
RT_BINARY_OP_LESS
:
return
MP_BOOL
(
lhs
->
val
<
rhs_val
);
return
MP_BOOL
(
lhs
_
val
<
rhs_val
);
case
RT_BINARY_OP_MORE
:
return
MP_BOOL
(
lhs
->
val
>
rhs_val
);
return
MP_BOOL
(
lhs
_
val
>
rhs_val
);
case
RT_BINARY_OP_LESS_EQUAL
:
return
MP_BOOL
(
lhs
->
val
<=
rhs_val
);
return
MP_BOOL
(
lhs
_
val
<=
rhs_val
);
case
RT_BINARY_OP_MORE_EQUAL
:
return
MP_BOOL
(
lhs
->
val
>=
rhs_val
);
return
MP_BOOL
(
lhs
_
val
>=
rhs_val
);
case
RT_BINARY_OP_EQUAL
:
return
MP_BOOL
(
lhs
->
val
==
rhs_val
);
return
MP_BOOL
(
lhs
_
val
==
rhs_val
);
case
RT_BINARY_OP_NOT_EQUAL
:
return
MP_BOOL
(
lhs
->
val
!=
rhs_val
);
return
MP_BOOL
(
lhs
_
val
!=
rhs_val
);
default:
// op not supported
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment