-
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
Remove vicious hack for runtime-calculated state-ness in derived type descriptors. #136
Labels
A-runtime
Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows
A-type-system
Area: Type system
Comments
Shifted to rustc |
is_stateful looks to be vestigial at this point. Can we just remove it and close this? |
mbrubeck
pushed a commit
to mbrubeck/rust
that referenced
this issue
Oct 17, 2011
oli-obk
pushed a commit
to oli-obk/rust
that referenced
this issue
Jul 19, 2017
refactor drop glue and fix Box<Box<Struct>> as Box<Trait>
keeperofdakeys
pushed a commit
to keeperofdakeys/rust
that referenced
this issue
Dec 12, 2017
Skip C/Rust type checks for eventfd.
kazcw
pushed a commit
to kazcw/rust
that referenced
this issue
Oct 23, 2018
* Add single output _mm_cvt[t]ss_* variants The *_pi variants are currently blocked by rust-lang/stdarch#74 * Add _mm_cvtsi*_ss The _mm_cvtpi*_ps intrinsics are blocked by rust-lang/stdarch#74 * Fix Linux builds Also the si64 variants are only available on x86_64
dlrobertson
pushed a commit
to dlrobertson/rust
that referenced
this issue
Nov 29, 2018
Blocks grammar
bors
pushed a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 1, 2021
* Add from_bitmask * Add mips workaround
bjorn3
pushed a commit
to bjorn3/rust
that referenced
this issue
Mar 26, 2022
Stop removing the llvm-asm tests in test.sh since they don't exist anymore
jaisnan
pushed a commit
to jaisnan/rust-dev
that referenced
this issue
Jul 29, 2024
We now only have 12 uses of `Location::none` left, all of which have no reasonable location to use. Resolves: rust-lang#136
carolynzech
pushed a commit
to celinval/rust-dev
that referenced
this issue
Dec 13, 2024
…ion (rust-lang#136) Resolves rust-lang#72 We added invariants for Nanoseconds and Duration to match the safety conditions for those types. We add safety requirements to the following methods: - `new`, `from_secs`, `from_millis`, `from_micros`, `from_nanos`, `as_secs`, `as_millis`, `as_micros`, `as_nanos`, `subsec_millis`, `subsec_micros`, `subsec_nanos`, `checked_add`, `checked_sub`, `checked_mul`, `checked_div` We additionally add correctness conditions to the following methods: - `from_secs`, `as_secs`, `subsec_millis`, `subsec_micros`, `subsec_nanos`, `as_millis`, `as_micros` Support for `kani::Invariant` depends on rust-lang#87. For the interim we implemented a proxy trait `TempInvariant` that exposes the same `is_safe` method. We will update this once rust-lang#87 is merged. While the safety check for `Duration::as_nanos()` succeeds, we ran into timeouts for `Duration::as_nanos()` when we tried to use a correctness contract and we're looking for advice on how to speed up that verification time. We were able to prove it for `u16::MAX`, but hit timeouts for larger numbers. We are unsure if the pre-conditions for `Duration::new()` are acceptable because they limit the range of values that you can call `Duration::new()` with. However, we think it's reasonable since we limit the values to values that don't panic. Let us know if this is a thing that we should change. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses. --------- Co-authored-by: Cole Vick <[email protected]> Co-authored-by: Celina G. Val <[email protected]> Co-authored-by: Michael Tautschnig <[email protected]>
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
A-type-system
Area: Type system
See
rust_crate_cache::get_type_desc
, in particular the lineThis is clearly not the correct way to decide whether the derived type is itself stateful.
It isn't clear whether this ought to be fixed as is or should remain open pending unsettled deliberations about the mutability system.
The text was updated successfully, but these errors were encountered: