Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates 2.0.4 issue 142 #162

Open
wants to merge 3 commits into
base: updates-2.0.4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ingressPort.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ The following information is optional:
* The _instruction_type_ of instructions for:
** Calls with a target that _cannot_ be inferred from the source code;
** Calls with a target that _can_ be inferred from the source code;
** Jumps with a target that _cannot_ be inferred from the source code;
** Jumps with a target that _can_ be inferred from the source code;
** Other jumps without linkage with a target that _cannot_ be inferred from the source code;
** Other jumps without linkage with a target that _can_ be inferred from the source code;
** Returns with a target that _cannot_ be inferred from the source code;
** Returns with a target that _can_ be inferred from the source code;
** Co-routine swap;
** Other jumps which don't fit any of the above classifications with a
** Other jumps with linkage which don't fit any of the above classifications with a
target that _cannot_ be inferred from the source code;
** Other jumps which don't fit any of the above classifications with a
** Other jumps with linkage which don't fit any of the above classifications with a
target that _can_ be inferred from the source code.
* If context or time is supported then the _instruction_address_ for:
** The last instruction retired before a context or a time change;
Expand Down Expand Up @@ -119,7 +119,7 @@ calling convention:
** *_jalr_* x5, rs where rs != x1;
** *_c.jalr_* rs1 where rs1 != x5;
** *_c.jal_*.
* _Jumps_:
* _Other jumps without linkage_:
** *_jal_* x0;
** *_c.j_*;
** *_jalr_* x0, rs where rs != x1 and rs != x5;
Expand All @@ -132,7 +132,7 @@ x5;
** *_jalr_* x1, x5;
** *_jalr_* x5, x1;
** *_c.jalr_* x5.
* _Other_:
* _Other jumps with linkage_:
** *_jal_* rd where rd != x0 and rd != x1 and rd != x5;
** *_jalr_* rd, rs where rs != x1 and rs != x5 and rd != x0 and rd != x1
and rd != x5.
Expand Down
Loading