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
c1075ddc
Commit
c1075ddc
authored
11 years ago
by
Damien
Browse files
Options
Downloads
Patches
Plain Diff
py: add some more opcodes to showbc.
parent
1895cf91
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/showbc.c
+8
-9
8 additions, 9 deletions
py/showbc.c
with
8 additions
and
9 deletions
py/showbc.c
+
8
−
9
View file @
c1075ddc
...
...
@@ -45,12 +45,14 @@ void py_show_byte_code(const byte *ip, int len) {
DECODE_QSTR;
PUSH(rt_load_const_dec(qstr));
break;
*/
case
PYBC_LOAD_CONST_ID
:
DECODE_QSTR
;
PUSH(rt_load_con
st_str(qstr));
// TODO
printf
(
"LOAD_CONST_ID %s"
,
q
st
r
_str
(
qstr
));
break
;
/*
case PYBC_LOAD_CONST_STRING:
DECODE_QSTR;
PUSH(rt_load_const_str(qstr));
...
...
@@ -86,23 +88,19 @@ void py_show_byte_code(const byte *ip, int len) {
printf
(
"LOAD_GLOBAL %s"
,
qstr_str
(
qstr
));
break
;
/*
case
PYBC_LOAD_ATTR
:
DECODE_QSTR
;
*sp = rt_load_attr(*sp,
qstr);
printf
(
"LOAD_ATTR %s"
,
qstr_str
(
qstr
)
)
;
break
;
*/
case
PYBC_LOAD_METHOD
:
DECODE_QSTR
;
printf
(
"LOAD_METHOD %s"
,
qstr_str
(
qstr
));
break
;
/*
case
PYBC_LOAD_BUILD_CLASS
:
PUSH(rt_load_build_class()
);
printf
(
"LOAD_BUILD_CLASS"
);
break
;
*/
case
PYBC_STORE_FAST_0
:
printf
(
"STORE_FAST_0"
);
...
...
@@ -133,13 +131,14 @@ void py_show_byte_code(const byte *ip, int len) {
DECODE_QSTR;
rt_store_global(qstr, POP());
break;
*/
case
PYBC_STORE_ATTR
:
DECODE_QSTR
;
rt_store_attr(sp[0], qstr, sp[1]);
sp += 2;
printf
(
"STORE_ATTR %s"
,
qstr_str
(
qstr
));
break
;
/*
case PYBC_STORE_SUBSCR:
rt_store_subscr(sp[1], sp[0], sp[2]);
sp += 3;
...
...
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