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
5b19916d
Commit
5b19916d
authored
6 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py/asmx64: Extend asm_x64_mov_reg_pcrel to accept high registers.
parent
1dc720dc
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/asmx64.c
+1
-2
1 addition, 2 deletions
py/asmx64.c
with
1 addition
and
2 deletions
py/asmx64.c
+
1
−
2
View file @
5b19916d
...
...
@@ -579,10 +579,9 @@ void asm_x64_mov_local_addr_to_r64(asm_x64_t *as, int local_num, int dest_r64) {
}
void
asm_x64_mov_reg_pcrel
(
asm_x64_t
*
as
,
int
dest_r64
,
mp_uint_t
label
)
{
assert
(
dest_r64
<
8
);
mp_uint_t
dest
=
get_label_dest
(
as
,
label
);
mp_int_t
rel
=
dest
-
(
as
->
base
.
code_offset
+
7
);
asm_x64_write_byte_3
(
as
,
REX_PREFIX
|
REX_W
,
OPCODE_LEA_MEM_TO_R64
,
MODRM_R64
(
dest_r64
)
|
MODRM_RM_R64
(
5
));
asm_x64_write_byte_3
(
as
,
REX_PREFIX
|
REX_W
|
REX_R_FROM_R64
(
dest_r64
)
,
OPCODE_LEA_MEM_TO_R64
,
MODRM_R64
(
dest_r64
)
|
MODRM_RM_R64
(
5
));
asm_x64_write_word32
(
as
,
rel
);
}
...
...
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