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

Rename old upcalls and move them to rust_builtin #3922

Closed
brson opened this issue Nov 5, 2012 · 5 comments
Closed

Rename old upcalls and move them to rust_builtin #3922

brson opened this issue Nov 5, 2012 · 5 comments
Labels
A-runtime Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.

Comments

@brson
Copy link
Contributor

brson commented Nov 5, 2012

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_, not upcall_ and moved to rust_builtin.cpp. Better yet, rewrite them in Rust.

@vertexclique
Copy link
Member

Already have prefix like rust_ in libcore/rt.rs

#[rt(free)] pub fn rt_free(ptr: *c_char) { rustrt::rust_upcall_free(ptr); }

@graydon
Copy link
Contributor

graydon commented Jun 19, 2013

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.

@graydon
Copy link
Contributor

graydon commented Jul 18, 2013

just a bug, removing milestone/nomination.

@huonw
Copy link
Member

huonw commented Oct 18, 2013

Triage: there are five upcall_ functions left in src/rt.

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 rust_ functions.

@alexcrichton
Copy link
Member

There is only one of these left, upcall_rust_personality, and it's in its own separate file/location. I don't think that this can be easily rewritten in rust due to the conditional on SJLJ/SEH/normal unwinding flavors, so I'm going to close this for now (this is far less relevant with just the one upcall lying around).

flip1995 pushed a commit to flip1995/rust that referenced this issue Oct 9, 2020
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
RalfJung pushed a commit to RalfJung/rust that referenced this issue Sep 29, 2024
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-runtime Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Projects
None yet
Development

No branches or pull requests

5 participants