Ralf Jung
bf372a8fbc
remove warning about thread support being experimental
2022-06-06 20:16:02 -04:00
Ralf Jung
b64c9a0a83
make scheduler preemptive, with configurable preemption rate
2022-06-06 20:16:02 -04:00
Ralf Jung
dac95a3ad8
rename AllocationMap → RangeObjectMap
2022-06-06 20:16:02 -04:00
Andy Wang
1b32d14255
Make racy imperfectly overlapping atomic access unsupported instead of UB
...
Co-authored-by: Ralf Jung <post@ralfj.de>
2022-06-06 19:16:02 +01:00
Andy Wang
bf7a5c4154
Add more backgrounds on lazy store buffers
...
Co-authored-by: Ralf Jung <post@ralfj.de>
2022-06-06 19:16:02 +01:00
Andy Wang
6fb7c131ed
Remove unused lifetimes
2022-06-06 19:16:02 +01:00
Andy Wang
c731071640
Give flag temp disabling race detector a better name
2022-06-06 19:16:00 +01:00
Andy Wang
8215702d5a
Refer to GitHub issue on overwritten init value
2022-06-06 19:16:00 +01:00
Andy Wang
4a07f78dad
Forbade all racing mixed size atomic accesses
2022-06-06 19:16:00 +01:00
Andy Wang
ceb173d647
Move logic out of machine.rs
2022-06-06 19:15:59 +01:00
Andy Wang
a7c832b04a
Wording improvements
...
Co-authored-by: Ralf Jung <post@ralfj.de>
2022-06-06 19:15:59 +01:00
Andy Wang
6a73dedb36
Update experimental threading warning
2022-06-06 19:15:59 +01:00
Andy Wang
bfa56454e9
Split extra_cpp tests into sound and unsafe
2022-06-06 19:15:58 +01:00
Andy Wang
613d60db0b
Allow non-racy mixed size accesses
2022-06-06 19:15:58 +01:00
Andy Wang
226ed41cca
Destroy store buffers on non-racy non-atomic accesses
2022-06-06 19:15:58 +01:00
Andy Wang
2321b15342
Differentiate between not multithreading and temp disabling race detection
2022-06-06 19:15:57 +01:00
Andy Wang
6d27f188c2
Update src/concurrency/weak_memory.rs
...
Co-authored-by: Ralf Jung <post@ralfj.de>
2022-06-06 19:15:56 +01:00
Andy Wang
e2002b4c65
Amend experimental thread support warnings
2022-06-06 19:15:55 +01:00
Andy Wang
92145373c3
Put the initialisation value into the store buffer
2022-06-06 19:15:55 +01:00
Andy Wang
577054c6de
Rename variables in AllocationMap
2022-06-06 19:15:54 +01:00
Andy Wang
6b54c92377
Throw UB on imperfectly overlapping access
2022-06-06 19:15:54 +01:00
Andy Wang
5a4a1bfccc
Remove incorrect comment
2022-06-06 19:15:54 +01:00
Andy Wang
335667c774
Move buffered functions into their own ext trait
2022-06-06 19:15:53 +01:00
Andy Wang
8739e45bef
Move data_race and weak_memory into a submodule
2022-06-06 19:15:53 +01:00
Andy Wang
6040c9f50a
Refactor store buffer search conditions
2022-06-06 19:15:25 +01:00
Andy Wang
773131bb26
Improve privacy and comments
2022-06-06 19:15:24 +01:00
Andy Wang
62b514e235
Update README
2022-06-06 19:15:24 +01:00
Andy Wang
89138a67dc
Add more top-level comments
2022-06-06 19:15:23 +01:00
Andy Wang
11ca975cd8
Move type definitions together and clarify fetch_store on empty buffer
2022-06-06 19:15:22 +01:00
Andy Wang
53f4887659
Use a new AllocationMap to store store buffers in the same allocation
2022-06-06 19:15:21 +01:00
Andy Wang
ecdab5ff35
Clearer boundries between alloc metadata with multiple buffers and an individual store buffer
2022-06-06 19:15:21 +01:00
Andy Wang
aca3b3a645
set_at_index sets the default value (0) if index doesn't exist in the other vector
2022-06-06 19:15:20 +01:00
Andy Wang
e7698f4f07
Implement weak memory emulation
2022-06-06 19:15:20 +01:00
Andy Wang
8d36e8b32c
Add weak memory config option
2022-06-06 19:15:19 +01:00
bors
3361eabf38
Auto merge of #2183 - RalfJung:better-provenance-control, r=RalfJung
...
adjust for better provenance control
This is the Miri side of https://github.com/rust-lang/rust/pull/97684 .
2022-06-06 16:57:34 +00:00
bors
cd73c861c4
Auto merge of #2202 - InfRandomness:infrandomness/rustdoc-fixes, r=RalfJung
...
Fix rustdoc warnings
This fixes the rustdoc warnings presented by the tool
2022-06-06 16:32:05 +00:00
infrandomness
3ba6456181
Fix rustdoc warnings
2022-06-06 18:30:15 +02:00
Ralf Jung
63625b0397
adjust for better provenance control
2022-06-06 11:43:25 -04:00
Ralf Jung
f31a8e0951
argument parsing: make better use of strip_prefix
2022-06-06 11:07:25 -04:00
infrandomness
d0a0369a24
Refactor POSIX to UNIX
...
This renames the directory containing posix to unix; where applicable,
it also rename functions with the word "posix" to "unix"
2022-06-05 22:46:34 +02:00
bors
2eae474673
Auto merge of #2197 - RalfJung:round-robin, r=RalfJung
...
make Miri's scheduler proper round-robin
When thread N blocks or yields, we activate thread N+1 next, rather than always activating thread 0. This should guarantee that as long as all threads regularly yield, each thread eventually takes a step again.
Fixes the "multiple loops that yield playing ping-pong" part of https://github.com/rust-lang/miri/issues/1388 .
`@cbeuw` I hope this doesn't screw up the scheduler-dependent tests you are adding in your PR.
2022-06-05 18:37:07 +00:00
Ralf Jung
47745380cd
make Miri's scheduler proper round-robin
2022-06-05 14:22:00 -04:00
bors
5f988ab553
Auto merge of #2189 - RalfJung:clippy, r=RalfJung
...
run Clippy on CI
and fix some things it complains about. Also use `rustup-toolchain` script on CI (reduces code duplication, and good thing to make sure it keeps working, since we recommend it in the docs).
I left `ui_test` out for now; I'll leave those nits to `@oli-obk.` ;)
2022-06-05 15:18:39 +00:00
Ralf Jung
32c03080f1
rustup
2022-06-04 19:43:46 -04:00
Ralf Jung
151b6b13e0
clippy: main crate
2022-06-04 13:29:00 -04:00
Matthias Krüger
bcc491a6ba
clippy fixes
...
clippy::redundant_closure
clippy::unnecessary_mut_passed
clippy::single_char_pattern
clippy::clone_on_copy
clippy::into_iter_on_ref
clippy::extra_unused_lifetimes
2022-06-04 17:10:32 +02:00
Ralf Jung
e79a331fea
do not pass TyCtxt by reference
2022-06-02 15:11:22 -04:00
Oli Scherer
4b100a1b58
Check that diagnostics happen in the line that they are annotated for
2022-06-01 11:47:54 +00:00
Ralf Jung
62c48b2998
fix some lifetime names
2022-05-31 08:45:01 -04:00
Ralf Jung
eb6d4cdac0
reduce some code duplication
2022-05-31 08:43:17 -04:00