rust/src
bors 4e88b7363b Auto merge of #55270 - RalfJung:stacked-borrows-ng, r=oli-obk
miri engine: Stacked Borrows NG

For more refined tracking in miri, we do return untagged pointers from the memory abstraction after allocations and let the caller decide how to tag these.

Also refactor the `tag_(de)reference` hooks so they can be more easily called in the ref-to-place and place-to-ref methods, and reorder things in validation: validation calls ref-to-place which (when running in miri) triggers some checks, so we want to run it rather late and catch other problems first. We also do not need to redundantly check the ref to be allocated any more, the checks miri does anyway imply thath.

r? @oli-obk
2018-10-29 03:28:31 +00:00
..
bootstrap Rollup merge of #55391 - matthiaskrgr:bootstrap_cleanup, r=oli-obk 2018-10-26 23:10:38 +08:00
build_helper
ci CI: Set codegen-units-std=1 for dist builds. 2018-10-26 15:07:03 +02:00
dlmalloc@c99638dc2e
doc
etc
grammar
jemalloc@1f5a28755e
liballoc Update string.rs 2018-10-27 14:33:07 +08:00
liballoc_jemalloc
liballoc_system
libarena
libbacktrace@f4d02bbdbf
libcompiler_builtins@0703bfa725
libcore Rollup merge of #55421 - CAD97:patch-1, r=kennytm 2018-10-28 21:32:03 +08:00
libfmt_macros
libgraphviz
liblibc@1844a772b6
libpanic_abort
libpanic_unwind
libproc_macro
libprofiler_builtins
librustc Auto merge of #54487 - RalfJung:ctfe-backtrace, r=oli-obk 2018-10-28 18:49:46 +00:00
librustc_allocator
librustc_apfloat
librustc_asan
librustc_borrowck Auto merge of #55150 - pnkfelix:issues-47215-54797-fix-ice-from-moving-out-of-thread-local-under-ast-borrowck, r=nikomatsakis 2018-10-27 09:56:37 +00:00
librustc_codegen_llvm Auto merge of #54183 - qnighy:by-value-object-safety, r=oli-obk 2018-10-27 19:29:35 +00:00
librustc_codegen_utils Auto merge of #54183 - qnighy:by-value-object-safety, r=oli-obk 2018-10-27 19:29:35 +00:00
librustc_cratesio_shim
librustc_data_structures
librustc_driver
librustc_errors
librustc_fs_util
librustc_incremental
librustc_lint Auto merge of #54929 - csmoe:cfg_lint, r=petrochenkov 2018-10-26 21:46:13 +00:00
librustc_llvm
librustc_lsan
librustc_metadata Auto merge of #54626 - alexcrichton:dwarf-generics, r=michaelwoerister 2018-10-26 14:30:26 +00:00
librustc_metadata_utils
librustc_mir Auto merge of #55270 - RalfJung:stacked-borrows-ng, r=oli-obk 2018-10-29 03:28:31 +00:00
librustc_msan
librustc_passes Auto merge of #55150 - pnkfelix:issues-47215-54797-fix-ice-from-moving-out-of-thread-local-under-ast-borrowck, r=nikomatsakis 2018-10-27 09:56:37 +00:00
librustc_platform_intrinsics
librustc_plugin
librustc_privacy
librustc_resolve Add note linking to Rust 2018 path semantics docs. 2018-10-28 09:16:10 +01:00
librustc_save_analysis Remove redundant clone 2018-10-26 12:07:39 +09:00
librustc_target Remove redundant clone 2018-10-26 12:07:39 +09:00
librustc_traits add user_ty.projs support to AscribeUserType. 2018-10-26 23:47:53 +02:00
librustc_tsan
librustc_typeck Rollup merge of #55257 - mjbshaw:static, r=oli-obk 2018-10-28 21:38:12 +08:00
librustdoc Fix sub-variant doc display 2018-10-27 14:05:34 +02:00
libserialize
libstd Auto merge of #55043 - oliver-giersch:unchecked_thread_spawning, r=alexcrichton 2018-10-28 21:34:12 +00:00
libsyntax Auto merge of #55192 - cramertj:nested-mod, r=petrochenkov 2018-10-28 13:13:55 +00:00
libsyntax_ext Auto merge of #54929 - csmoe:cfg_lint, r=petrochenkov 2018-10-26 21:46:13 +00:00
libsyntax_pos
libterm
libtest
libunwind
llvm@caddcd9b9d
llvm-emscripten@2717444753
rtstartup
rustc
rustllvm
stdsimd@431766a3fb
test Auto merge of #55433 - kennytm:rollup, r=kennytm 2018-10-28 16:00:00 +00:00
tools
.gitignore
Cargo.lock
Cargo.toml
README.md
stage0.txt

This directory contains the source code of the rust project, including:

  • rustc and its tests
  • libstd
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc guide.

Their is also useful content in the following READMEs, which are gradually being moved over to the guide: