about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2018-10-10Rollup merge of #54904 - Kerollmops:stabilize-option-replace, r=CentrilManish Goregaokar-5/+1
2018-10-10Rollup merge of #54893 - dsciarra:issue-54379, r=pnkfelixManish Goregaokar-0/+48
2018-10-10Rollup merge of #54870 - flip1995:stabilize_tool_lints, r=ManishearthManish Goregaokar-117/+11
2018-10-10Rollup merge of #54862 - Havvy:cfg_attr_multi, r=petrochenkovManish Goregaokar-46/+360
2018-10-10Rollup merge of #54848 - davidtwco:issue-52663-trait-object, r=nikomatsakisManish Goregaokar-37/+224
2018-10-10Auto merge of #54732 - cramertj:waker, r=aturonbors-32/+33
2018-10-10Auto merge of #54802 - davidtwco:issue-53040, r=pnkfelixbors-68/+214
2018-10-10Auto merge of #54461 - RalfJung:pointer-provenance, r=oli-obkbors-547/+990
2018-10-10tidy upRalf Jung-1/+6
2018-10-10vtables are not leaksRalf Jung-4/+9
2018-10-10more comments for these sublte games we are playing with allocations in the m...Ralf Jung-30/+40
2018-10-10abstract mono_hash_map through a trait, only miri actually needs the fancy oneRalf Jung-136/+167
2018-10-10typos and spacesRalf Jung-16/+16
2018-10-10clarify alloc_map descriptionRalf Jung-4/+6
2018-10-10fix typosRalf Jung-2/+2
2018-10-10expand safety comment in memory.rsRalf Jung-0/+4
2018-10-10rename extra -> meta in placeRalf Jung-34/+34
2018-10-10expand commentRalf Jung-0/+2
2018-10-10tidy, oh tidyRalf Jung-4/+16
2018-10-10miri engine: basic support for pointer provenance trackingRalf Jung-498/+870
2018-10-10Auto merge of #54831 - davidtwco:issue-52663-struct-field-suggestion, r=nikom...bors-0/+89
2018-10-10Auto merge of #54764 - tromey:test-rust-lldb, r=alexcrichtonbors-702/+1405
2018-10-09Remove nightly check for tool_lints warningflip1995-8/+2
2018-10-09Remove unstable-book documentationflip1995-35/+0
2018-10-09Remove feature-gate codeflip1995-16/+1
2018-10-09Remove feature-gate testsflip1995-49/+0
2018-10-09Remove `feature(tool_lints)` from testsflip1995-6/+6
2018-10-09Update feature-gate listingflip1995-3/+2
2018-10-09Auto merge of #54734 - pawroman:fix_range_borrowing_suggestion, r=varkorbors-3/+664
2018-10-09Auto merge of #54613 - matthiaskrgr:string_from_inline_53681, r=nagisabors-0/+2
2018-10-09Auto merge of #54762 - RalfJung:miri-validate, r=oli-obkbors-355/+638
2018-10-09validity: check dynamic size, not staticRalf Jung-6/+2
2018-10-09dont fail when validating non-local closuresRalf Jung-4/+8
2018-10-09box is also a primitive typeRalf Jung-7/+7
2018-10-09update miriRalf Jung-5/+5
2018-10-09add fixme for potential perf optimizationRalf Jung-0/+3
2018-10-09fix nits and handling of extern staticRalf Jung-36/+42
2018-10-09unify handling of thin and fat pointers by moving primitive type handling out...Ralf Jung-202/+225
2018-10-09add some tests with constants that better be validRalf Jung-0/+18
2018-10-09For now, accept all data for integer types when not in const modeRalf Jung-8/+10
2018-10-09tidy upRalf Jung-1/+1
2018-10-09do not look at refs to external statics at allRalf Jung-15/+22
2018-10-09miri engine: also check return type before calling functionRalf Jung-2/+36
2018-10-09add machine option to validate things on every copyRalf Jung-9/+39
2018-10-09move a test to a better placeRalf Jung-0/+0
2018-10-09also validate everything that has a Scalar layout, to catch NonNullRalf Jung-16/+146
2018-10-09fix validating arrays of ZSTsRalf Jung-19/+43
2018-10-09switch validation of scalars to be type-drivenRalf Jung-135/+117
2018-10-09check that entire ref is in-bounds before recursing; add macro for validation...Ralf Jung-96/+86
2018-10-09miri validity: make recursive ref checking optionalRalf Jung-87/+121