index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
compiler
/
rustc_mir_transform
/
src
/
check_alignment.rs
Age
Commit message (
Expand
)
Author
Lines
2025-06-29
mir: Add a `new` method to `statement`
dianqk
-19
/
+15
2025-04-25
Extend the alignment check to borrows
Bastian Kersting
-5
/
+5
2025-04-07
check_align: we can still check low alignments on MSVC
Ralf Jung
-3
/
+27
2025-04-07
mitigate MSVC unsoundness by not emitting alignment attributes on win32-msvc ...
Ralf Jung
-2
/
+2
2025-02-08
Detect (non-raw) borrows of null ZST pointers in CheckNull
Michael Goulet
-0
/
+2
2025-01-30
Refactor `PointerFinder` into a separate module
Bastian Kersting
-160
/
+38
2025-01-23
Disable non-required MIR opts with `optimize(none)`
clubby789
-0
/
+4
2024-11-19
move `fn is_item_raw` to `TypingEnv`
lcnr
-5
/
+5
2024-09-13
Rename and reorder lots of lifetimes.
Nicholas Nethercote
-2
/
+2
2024-09-09
Reduce visibilities, and add `warn(unreachable_pub)`.
Nicholas Nethercote
-1
/
+1
2024-09-03
Move `MirPass` to `rustc_mir_transform`.
Nicholas Nethercote
-1
/
+1
2024-08-30
Remove `#[macro_use] extern crate tracing` from `rustc_mir_transform`.
Nicholas Nethercote
-0
/
+1
2024-08-18
rename AddressOf -> RawBorrow inside the compiler
Ralf Jung
-1
/
+1
2024-07-29
Reformat `use` declarations.
Nicholas Nethercote
-4
/
+2
2024-05-09
Make builtin_deref just return a Ty
Michael Goulet
-1
/
+1
2024-04-06
Put checks that detect UB under their own flag below debug_assertions
Ben Kimock
-1
/
+1
2024-03-22
Eagerly convert some ctors to use their specialized ctors
Michael Goulet
-2
/
+2
2023-12-10
remove redundant imports
surechen
-1
/
+0
2023-11-04
Check alignment of pointers only when read/written through
Ben Kimock
-51
/
+54
2023-09-21
rename mir::Constant -> mir::ConstOperand, mir::ConstKind -> mir::Const
Ralf Jung
-10
/
+4
2023-09-19
move ConstValue into mir
Ralf Jung
-1
/
+1
2023-07-05
Move `TyCtxt::mk_x` to `Ty::new_x` where applicable
Boxy
-1
/
+1
2023-06-26
Mention the panic function in CheckAlignment
Ben Kimock
-3
/
+3
2023-06-18
Auto merge of #112599 - saethlin:cleaner-panics, r=thomcc
bors
-6
/
+4
2023-06-16
Update compiler/rustc_mir_transform/src/check_alignment.rs
Wesley Wiser
-0
/
+1
2023-06-16
Launch a non-unwinding panic for misaligned pointer deref
Ben Kimock
-6
/
+4
2023-06-16
Disable alignment checks on i686-pc-windows-msvc
Ben Kimock
-0
/
+3
2023-06-07
Remove wrongly emitted `.eh_frame` in `-Cpanic=abort`
Gary Guo
-1
/
+6
2023-05-27
Exclude Rvalue::AddressOf for raw pointer deref alignment checks
Ben Kimock
-0
/
+8
2023-05-01
Box AssertKind
Ben Kimock
-2
/
+2
2023-04-24
Split `{Idx, IndexVec, IndexSlice}` into their own modules
Maybe Waffle
-1
/
+1
2023-04-13
Only emit alignment checks if we have a panic_impl
Ben Kimock
-0
/
+7
2023-04-06
Fix new usage of old api
Gary Guo
-1
/
+1
2023-04-02
Use `&IndexSlice` instead of `&IndexVec` where possible
Scott McMurray
-1
/
+1
2023-03-24
Skip checks for common types with alignment 1
Ben Kimock
-0
/
+7
2023-03-24
Use Vec::split_off
Ben Kimock
-1
/
+1
2023-03-24
Clarify that we are doing ptr.addr() internally
Ben Kimock
-1
/
+1
2023-03-23
A MIR transform that checks pointers are aligned
Ben Kimock
-0
/
+220