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

Remove vicious hack for runtime-calculated state-ness in derived type descriptors. #136

Closed
froystig opened this issue Jul 28, 2010 · 2 comments
Labels
A-runtime Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows A-type-system Area: Type system

Comments

@froystig
Copy link
Contributor

See rust_crate_cache::get_type_desc, in particular the line

td->is_stateful |= descs[i]->is_stateful;

This 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.

@graydon
Copy link
Contributor

graydon commented Jan 27, 2011

Shifted to rustc

@brson
Copy link
Contributor

brson commented Aug 24, 2011

is_stateful looks to be vestigial at this point. Can we just remove it and close this?

@brson brson closed this as completed in dbd2ee0 Sep 23, 2011
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
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
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
ZuseZ4 referenced this issue in EnzymeAD/rust Mar 7, 2023
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
Projects
None yet
Development

No branches or pull requests

3 participants