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
32f0b794
Commit
32f0b794
authored
10 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Implement sdiv/udiv for inline Thumb assembler.
parent
0d967b8a
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
py/emitinlinethumb.c
+11
-0
11 additions, 0 deletions
py/emitinlinethumb.c
py/objfun.c
+2
-0
2 additions, 0 deletions
py/objfun.c
tests/inlineasm/asmdiv.py
+16
-0
16 additions, 0 deletions
tests/inlineasm/asmdiv.py
tests/inlineasm/asmdiv.py.exp
+7
-0
7 additions, 0 deletions
tests/inlineasm/asmdiv.py.exp
with
36 additions
and
0 deletions
py/emitinlinethumb.c
+
11
−
0
View file @
32f0b794
...
...
@@ -490,6 +490,17 @@ STATIC void emit_inline_thumb_op(emit_inline_asm_t *emit, qstr op, mp_uint_t n_a
src_b
=
get_arg_i
(
emit
,
op_str
,
pn_args
[
2
],
0x7
);
}
asm_thumb_format_2
(
emit
->
as
,
op_code
,
rlo_dest
,
rlo_src
,
src_b
);
}
else
if
(
strcmp
(
op_str
,
"sdiv"
)
==
0
)
{
op_code
=
0xfb90
;
// sdiv high part
mp_uint_t
rd
,
rn
,
rm
;
op_sdiv_udiv:
rd
=
get_arg_reg
(
emit
,
op_str
,
pn_args
[
0
],
15
);
rn
=
get_arg_reg
(
emit
,
op_str
,
pn_args
[
1
],
15
);
rm
=
get_arg_reg
(
emit
,
op_str
,
pn_args
[
2
],
15
);
asm_thumb_op32
(
emit
->
as
,
op_code
|
rn
,
0xf0f0
|
(
rd
<<
8
)
|
rm
);
}
else
if
(
strcmp
(
op_str
,
"udiv"
)
==
0
)
{
op_code
=
0xfbb0
;
// udiv high part
goto
op_sdiv_udiv
;
}
else
if
(
strcmp
(
op_str
,
"sub"
)
==
0
)
{
op_code
=
ASM_THUMB_FORMAT_2_SUB
;
goto
op_format_2
;
...
...
This diff is collapsed.
Click to expand it.
py/objfun.c
+
2
−
0
View file @
32f0b794
...
...
@@ -431,6 +431,8 @@ STATIC mp_uint_t convert_obj_for_inline_asm(mp_obj_t obj) {
return
0
;
}
else
if
(
obj
==
mp_const_true
)
{
return
1
;
}
else
if
(
MP_OBJ_IS_TYPE
(
obj
,
&
mp_type_int
))
{
return
mp_obj_int_get_truncated
(
obj
);
}
else
if
(
MP_OBJ_IS_STR
(
obj
))
{
// pointer to the string (it's probably constant though!)
mp_uint_t
l
;
...
...
This diff is collapsed.
Click to expand it.
tests/inlineasm/asmdiv.py
0 → 100644
+
16
−
0
View file @
32f0b794
@micropython.asm_thumb
def
sdiv
(
r0
,
r1
):
sdiv
(
r0
,
r0
,
r1
)
@micropython.asm_thumb
def
udiv
(
r0
,
r1
):
udiv
(
r0
,
r0
,
r1
)
print
(
sdiv
(
1234
,
3
))
print
(
sdiv
(
-
1234
,
3
))
print
(
sdiv
(
1234
,
-
3
))
print
(
sdiv
(
-
1234
,
-
3
))
print
(
udiv
(
1234
,
3
))
print
(
udiv
(
0xffffffff
,
0x7fffffff
))
print
(
udiv
(
0xffffffff
,
0xffffffff
))
This diff is collapsed.
Click to expand it.
tests/inlineasm/asmdiv.py.exp
0 → 100644
+
7
−
0
View file @
32f0b794
411
-411
-411
411
411
2
1
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