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
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_mir
/
dataflow
/
impls
Age
Commit message (
Expand
)
Author
Lines
2018-05-03
Instrument `statement_effect_on_borrows` for the `lhs = &place` case.
Felix S. Klock II
-0
/
+6
2018-04-15
remove -Znll -- borrowck=mir implies nll now
Niko Matsakis
-31
/
+20
2018-04-15
stop using `borrows` for anything but iterating over live data
Niko Matsakis
-26
/
+1
2018-04-15
thread borrow-set around more
Niko Matsakis
-3
/
+3
2018-04-15
remove `ReserveOrActivateIndex`
Niko Matsakis
-59
/
+20
2018-04-15
use the `activations_at_location` map to check activations
Niko Matsakis
-0
/
+7
2018-04-15
construct the `BorrowSet` outside of `borrows`
Niko Matsakis
-8
/
+8
2018-04-15
extract code to build borrow-set into `borrow_check::borrow_set`
Niko Matsakis
-404
/
+12
2018-04-15
relocate `BorrowData` etc into `borrow_check::borrow_set`
Niko Matsakis
-76
/
+25
2018-04-15
gather activation locations for 2-phase borrows in 1 pass
Niko Matsakis
-98
/
+139
2018-04-15
remove `assigned_map` (appears to be dead code)
Niko Matsakis
-9
/
+0
2018-04-07
Auto merge of #49678 - bobtwinkles:fix_multiple_activations, r=nikomatsakis
bors
-14
/
+8
2018-04-04
two-phase borrows: support multiple activations in one statement
bobtwinkles
-14
/
+8
2018-04-02
avoid IdxSets containing garbage above the universe length
Ariel Ben-Yehuda
-2
/
+2
2018-03-22
Added UserAssertTy statement.
David Wood
-0
/
+1
2018-03-09
Remove some commented out code
bobtwinkles
-12
/
+0
2018-03-09
Check for two_phase_borrows in the right place
bobtwinkles
-1
/
+1
2018-03-09
Fix tests after two-phase borrow rewrite
bobtwinkles
-17
/
+10
2018-03-09
Remove unused field on BorrowData
bobtwinkles
-3
/
+1
2018-03-09
Complete re-implementation of 2-phase borrows
bobtwinkles
-32
/
+32
2018-03-09
Finally start down the right path
bobtwinkles
-351
/
+365
2018-03-09
Rename BorrowData::location to BorrowData::reserve_location
bobtwinkles
-4
/
+7
2018-03-08
Fully use miri in trans
Oliver Schneider
-1
/
+1
2018-03-02
Replace Rc with Lrc for shared data
John Kåre Alsaker
-2
/
+3
2018-02-17
fix more typos found by codespell.
Matthias Krüger
-2
/
+2
2018-02-09
Auto merge of #47802 - bobtwinkles:loop_false_edge, r=nikomatsakis
bors
-0
/
+1
2018-02-08
Encode (in MIR) whether borrows are explicit in source or arise due to autoref.
Felix S. Klock II
-1
/
+1
2018-02-05
mir: Add TerminatorKind::FalseUnwind
bobtwinkles
-0
/
+1
2018-02-03
Auto merge of #47845 - Zoxc:gen-fixes, r=nikomatsakis
bors
-0
/
+122
2018-01-30
Fix ICE when assigning references to a static mut with NLL
Aaron Hill
-2
/
+1
2018-01-30
Force locals to be live after they are borrowed for immovable generators. Fix...
John Kåre Alsaker
-0
/
+122
2018-01-29
rustc: replace "lvalue" terminology with "place" in the code.
Eduard-Mihai Burtescu
-56
/
+56
2018-01-27
end_point handling multibyte characters correctly.
David Wood
-2
/
+2
2018-01-18
in which the unused-parens lint comes to cover function and method args
Zack M. Davis
-1
/
+1
2018-01-03
Auto merge of #46984 - arielb1:pre-statement-effect, r=nikomatsakis
bors
-0
/
+28
2017-12-26
Auto merge of #46975 - matthewjasper:mir-moveck-asm, r=arielb1
bors
-1
/
+14
2017-12-24
Make killing of out-of-scope borrows a pre-statement effect
Ariel Ben-Yehuda
-0
/
+28
2017-12-24
Auto merge of #46833 - diwic:7c-abort-ffi, r=arielb1
bors
-0
/
+1
2017-12-23
Give MIR borrowck a better understanding of inline asm
Matthew Jasper
-1
/
+14
2017-12-21
Issue #46589 - Kill borrows on a local variable whenever we assign over this ...
David Teller
-10
/
+25
2017-12-21
Rollup merge of #46887 - pnkfelix:ensure-activations-are-from-assignments-to-...
Guillaume Gomez
-1
/
+17
2017-12-21
Mir: Add Terminatorkind::Abort
David Henningsson
-0
/
+1
2017-12-20
use Rc to store nonlexical_regioncx in Borrows
Niko Matsakis
-2
/
+2
2017-12-20
Ensure separate activations only occur for assignments to locals, not project...
Felix S. Klock II
-1
/
+17
2017-12-19
Split PlaceContext::Store into Store & AsmOutput
Scott McMurray
-0
/
+4
2017-12-13
After discussion with ariel, replacing a guard within kill_loans_out_of_scope...
Felix S. Klock II
-33
/
+33
2017-12-13
Add some doc to `struct Borrows`.
Felix S. Klock II
-3
/
+22
2017-12-13
New `ActiveBorrows` dataflow for two-phase `&mut`; not yet borrowed-checked.
Felix S. Klock II
-64
/
+394
2017-12-13
Refactoring alpha-rename `place` (`BorrowData` field) to `borrowed_place`.
Felix S. Klock II
-4
/
+4
2017-12-13
Refactoring: pull bitvector initialization out from other parts of dataflow.
Felix S. Klock II
-9
/
+9
[next]