-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Rename old upcalls and move them to rust_builtin #3922
Comments
Already have prefix like
|
Certainly still true. Not sure this is so much of a backwards-compatibility risk as it's unlikely these will be part of the public API. Maybe lang items; but again I think that (at least "pre-standardization") we can assume lang items are not part of the public APIs. Re-nominating for discussion of this matter. |
just a bug, removing milestone/nomination. |
Triage: there are five upcall_rust_personality
upcall_call_shim_on_c_stack
upcall_call_shim_on_rust_stack
upcall_new_stack
upcall_del_stack
upcall_reset_stack_limit Tagging as E-easy, since these all look simple enough to convert to |
There is only one of these left, |
UI tests cleanup `@matthiaskrgr` noticed some `run-pass` annotations in some crash tests that were added in rust-lang#3922. At that moment they seemed to be necessary to make the tests fail in case of an ICE, but they do not seem to be needed anymore. To test this I forced an ICE in a file with and without annotations, with and without stderr files, and the ICE makes the test fail every time. In addition, I've applied a suggestion from `@ehuss` and `@jyn514` to add `emit=metadata` to the rustc flags for the UI tests. In my machine this improved the run time from ~17 to ~12 seconds. changelog: none
add tests for validity of Box with custom allocator Ensure that the validity visitor visits both parts of a box with custom allocator using the right types.
core::rt implements several functions that used to be upcalls. It does so by calling the old upcalls (upcall_free, malloc, fail, etc). These functions should be renamed to
rust_
, notupcall_
and moved to rust_builtin.cpp. Better yet, rewrite them in Rust.The text was updated successfully, but these errors were encountered: