Skip to content

Commit 3166bbe

Browse files
committed
Auto merge of #119268 - matthiaskrgr:rollup-7ggmcdn, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #119165 (improve container runner script) - #119205 (fix minor mistake in comments describing VecDeque resizing) - #119257 (interpret/memory: explain why we check is_thread_local_static) r? `@ghost` `@rustbot` modify labels: rollup
2 parents cdd6374 + 511eb0a commit 3166bbe

File tree

3 files changed

+31
-8
lines changed
  • compiler/rustc_const_eval/src/interpret
  • library/alloc/src/collections/vec_deque
  • src/ci/docker

3 files changed

+31
-8
lines changed

compiler/rustc_const_eval/src/interpret/memory.rs

+6
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
165165
// We need to handle `extern static`.
166166
match self.tcx.try_get_global_alloc(alloc_id) {
167167
Some(GlobalAlloc::Static(def_id)) if self.tcx.is_thread_local_static(def_id) => {
168+
// Thread-local statics do not have a constant address. They *must* be accessed via
169+
// `ThreadLocalRef`; we can never have a pointer to them as a regular constant value.
168170
bug!("global memory cannot point to thread-local static")
169171
}
170172
Some(GlobalAlloc::Static(def_id)) if self.tcx.is_foreign_item(def_id) => {
@@ -539,6 +541,8 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
539541
None => throw_ub!(PointerUseAfterFree(id, CheckInAllocMsg::MemoryAccessTest)),
540542
Some(GlobalAlloc::Static(def_id)) => {
541543
assert!(self.tcx.is_static(def_id));
544+
// Thread-local statics do not have a constant address. They *must* be accessed via
545+
// `ThreadLocalRef`; we can never have a pointer to them as a regular constant value.
542546
assert!(!self.tcx.is_thread_local_static(def_id));
543547
// Notice that every static has two `AllocId` that will resolve to the same
544548
// thing here: one maps to `GlobalAlloc::Static`, this is the "lazy" ID,
@@ -740,6 +744,8 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
740744
match self.tcx.try_get_global_alloc(id) {
741745
Some(GlobalAlloc::Static(def_id)) => {
742746
assert!(self.tcx.is_static(def_id));
747+
// Thread-local statics do not have a constant address. They *must* be accessed via
748+
// `ThreadLocalRef`; we can never have a pointer to them as a regular constant value.
743749
assert!(!self.tcx.is_thread_local_static(def_id));
744750
// Use size and align of the type.
745751
let ty = self

library/alloc/src/collections/vec_deque/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -491,12 +491,12 @@ impl<T, A: Allocator> VecDeque<T, A> {
491491
// A [o o o o o o o . . . . . . . . . ]
492492
// L H
493493
// [o o o o o o o o ]
494-
// H L
495-
// B [. . . o o o o o o o . . . . . . ]
494+
// H L
495+
// B [. . . o o o o o o o o . . . . . ]
496496
// L H
497497
// [o o o o o o o o ]
498-
// L H
499-
// C [o o o o o . . . . . . . . . o o ]
498+
// L H
499+
// C [o o o o o o . . . . . . . . o o ]
500500

501501
// can't use is_contiguous() because the capacity is already updated.
502502
if self.head <= old_capacity - self.len {

src/ci/docker/run.sh

+21-4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ root_dir="`dirname $src_dir`"
3636
objdir=$root_dir/obj
3737
dist=$objdir/build/dist
3838

39+
40+
if [ -d "$root_dir/.git" ]; then
41+
IS_GIT_SOURCE=1
42+
fi
43+
3944
source "$ci_dir/shared.sh"
4045

4146
CACHE_DOMAIN="${CACHE_DOMAIN:-ci-caches.rust-lang.org}"
@@ -194,6 +199,14 @@ else
194199
args="$args --env SCCACHE_DIR=/sccache --volume $HOME/.cache/sccache:/sccache"
195200
fi
196201

202+
# By default, container volumes are bound as read-only; therefore doing experimental work
203+
# or debugging within the container environment (such as fetching submodules and
204+
# building them) is not possible. Setting READ_ONLY_SRC to 0 enables this capability by
205+
# binding the volumes in read-write mode.
206+
if [ "$READ_ONLY_SRC" != "0" ]; then
207+
SRC_MOUNT_OPTION=":ro"
208+
fi
209+
197210
# Run containers as privileged as it should give them access to some more
198211
# syscalls such as ptrace and whatnot. In the upgrade to LLVM 5.0 it was
199212
# discovered that the leak sanitizer apparently needs these syscalls nowadays so
@@ -228,7 +241,7 @@ if [ -f /.dockerenv ]; then
228241
docker cp . checkout:/checkout
229242
args="$args --volumes-from checkout"
230243
else
231-
args="$args --volume $root_dir:/checkout:ro"
244+
args="$args --volume $root_dir:/checkout$SRC_MOUNT_OPTION"
232245
args="$args --volume $objdir:/checkout/obj"
233246
args="$args --volume $HOME/.cargo:/cargo"
234247
args="$args --volume $HOME/rustsrc:$HOME/rustsrc"
@@ -249,9 +262,13 @@ if [ "$dev" = "1" ]
249262
then
250263
# Interactive + TTY
251264
args="$args -it"
252-
command="/bin/bash"
265+
if [ $IS_GIT_SOURCE -eq 1 ]; then
266+
command=(/bin/bash -c 'git config --global --add safe.directory /checkout;bash')
267+
else
268+
command=(/bin/bash)
269+
fi
253270
else
254-
command="/checkout/src/ci/run.sh"
271+
command=(/checkout/src/ci/run.sh)
255272
fi
256273

257274
if [ "$CI" != "" ]; then
@@ -301,7 +318,7 @@ docker \
301318
--init \
302319
--rm \
303320
rust-ci \
304-
$command
321+
"${command[@]}"
305322

306323
cat $objdir/${SUMMARY_FILE} >> "${GITHUB_STEP_SUMMARY}"
307324

0 commit comments

Comments
 (0)