Skip to content

docs: Fully spell out the name of docs/ABI/CallConvSummary.rst #78760

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

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
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
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/ABI/RegisterUsage.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## 64-Bit Architecture Register Usage

This file has been replaced by [CallConvSummary.rst](CallConvSummary.rst),
This file has been replaced by [CallingConventionSummary.rst](CallingConventionSummary.rst),
which gives information about register usage and also shows the stack frame
layouts for the 64-bit architectures.
2 changes: 1 addition & 1 deletion docs/ABIStabilityManifesto.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ Having the call context register be callee-saved is advantageous. It keeps the r

Throwing functions communicate error values to their callers through the *error* register on some platforms. The error register holds a pointer to the error value if an error occurred, otherwise 0. The caller of a throwing function is expected to quickly check for 0 before continuing on with non-error code, otherwise branching to code to handle or propagate the error. Using a callee-saved register for the error register enables free conversion from non-throwing to throwing functions, which is required to honor the subtyping relationship.

The specific registers used in these roles are documented in [the calling convention summary document](ABI/CallConvSummary.rst).
The specific registers used in these roles are documented in [the calling convention summary document](ABI/CallingConventionSummary.rst).

### <a name="function-signature-lowering"></a>Function Signature Lowering

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ documentation, please create a thread on the Swift forums under the

### ABI

- [CallConvSummary.rst](/docs/ABI/CallConvSummary.rst):
- [CallingConventionSummary.rst](/docs/ABI/CallingConventionSummary.rst):
A concise summary of the calling conventions used for C/C++, Objective-C
and Swift on Apple platforms. Contains references to source documents,
where further detail is required.
Expand Down