]> git.lizzy.rs Git - rust.git/history - src/base.rs
Rustup to rustc 1.46.0-nightly (7750c3d46 2020-06-26)
[rust.git] / src / base.rs
2020-06-27 bjorn3Rustup to rustc 1.46.0-nightly (7750c3d46 2020-06-26)
2020-06-24 bjorn3Remove leftover of removed hack
2020-06-20 bjorn3Prelude cleanup
2020-06-20 bjorn3Rustup to rustc 1.46.0-nightly (2d8bd9b74 2020-06-19)
2020-06-16 bjorn3Only call build_value_labels_ranges when necessary
2020-06-16 bjorn3Some changes necessary for Windows support
2020-06-13 bjorn3Remove FunctionDebugContext
2020-06-12 bjorn3Remove all non-tcx references from CodegenCx
2020-06-12 bjorn3Rustup to rustc 1.46.0-nightly (a37c32e2d 2020-06-11)
2020-06-11 bjorn3Rustup to rustc 1.46.0-nightly (449e8eaa2 2020-06-10)
2020-06-04 bjorn3Rustup to rustc 1.45.0-nightly (56daaf669 2020-06-03)
2020-05-29 bjorn3Merge pull request #1022 from osa1/clif_dump_in_release...
2020-05-29 Ömer Sinan AğacanMark blocks that call cold funs as cold (#1021)
2020-05-29 Ömer Sinan AğacanDump clif with --emit llvm-ir in release mode
2020-05-25 bjorn3Rustup to rustc 1.45.0-nightly (46e85b432 2020-05-24)
2020-05-01 bjorn3Always emit .eh_frame section
2020-04-25 bjorn3Call panic lang item on failed TerminatorKind::Assert
2020-04-25 bjorn3Rustup to rustc 1.44.0-nightly (3360cc3a0 2020-04-24)
2020-04-22 bjorn3Rustup to rustc 1.44.0-nightly (45d050cde 2020-04-21)
2020-04-21 bjorn3Merge pull request #972 from l4l/debug-file-hash
2020-04-19 SerenttyFix spelling error in comment (#974)
2020-04-13 bjorn3Pre-allocate local_map
2020-04-11 bjorn3Codegen goto return block as return terminator
2020-04-11 bjorn3Remove unchecked_cast_to
2020-04-11 bjorn3Remove CPlace::NoPlace
2020-04-09 bjorn3Fix rustc::internals lint warnings
2020-04-09 bjorn3Enable the rust_2018_idioms and unused_lifetimes lints...
2020-04-03 bjorn3Rustup to rustc 1.44.0-nightly (537ccdf3a 2020-04-02)
2020-04-02 bjorn3Take Place by value instead of by reference
2020-03-31 bjorn3Rustup to rustc 1.44.0-nightly (211365947 2020-03-30)
2020-03-28 bjorn3Rustup to rustc 1.44.0-nightly (75208942f 2020-03-27)
2020-03-28 bjorn3Update Cranelift
2020-03-27 bjorn3Limit publicness to crate where possible and remove...
2020-03-21 bjorn3Fix some FIXME's and add some new FIXME's
2020-03-17 bjorn3Simplify handling of unimplemented stuff
2020-03-11 bjorn3Merge pull request #916 from bjorn3/fn_once_for_box_wit...
2020-03-10 bjorn3Emulate `<Box<F> as FnOnce>::call_once` without `alloca`
2020-03-07 bjorn3Remove unused inline asm whitelist
2020-03-04 bjorn3Rustup to rustc 1.43.0-nightly (4ad624882 2020-03-03)
2020-02-22 bjorn3Silence some warnings
2020-02-22 bjorn3Rustup to rustc 1.43.0-nightly (8aa9d2014 2020-02-21)
2020-02-15 bjorn3Update Cranelift and use the new ineg instruction
2020-02-14 bjorn3Update Cranelift for basic blocks
2020-02-14 bjorn3Rustup to rustc 1.43.0-nightly (5d04ce67f 2020-02-13)
2020-02-01 bjorn3Don't mark unwind ebbs as cold
2020-01-25 bjorn3Replace unimplemented! with unreachable! when it will...
2020-01-22 bjorn3Improve PlaceElem::Subslice handling
2020-01-15 bjorn3Reduce the amount of calls to layout_of
2020-01-14 bjorn3Rustup to rustc 1.42.0-nightly (3ebcfa145 2020-01-12)
2020-01-11 bjorn3Move all cold code to the end of the function
2020-01-11 bjorn3Implement `#[track_caller]`
2020-01-11 bjorn3Fix PlaceElem::Subslice length computation
2020-01-10 bjorn3Better self profiling integration
2020-01-10 bjorn3Prepare for basic blocks
2020-01-09 bjorn3Rustup to rustc 1.42.0-nightly (caa231d99 2020-01-08)
2020-01-04 bjorn3Re-use cranelift_codegen::ir::Function for every function
2020-01-04 bjorn3Use DUMMY_SP in less places
2020-01-04 bjorn3Use IndexVec for ebb_map
2020-01-04 bjorn3Merge pull request #853 from bjorn3/opt_stack2reg
2019-12-31 bjorn3Revert some changes
2019-12-31 bjorn3Check for cross-ebb temporal overlap between loads...
2019-12-31 bjorn3[WIP] Add stack2reg optimization pass
2019-12-28 bjorn3Only codegen a trap for functions with uninhabited...
2019-12-24 bjorn3Directly depend on cranelift_{codegen,frontend}
2019-12-21 bjorn3Rustup to rustc 1.42.0-nightly (01a46509a 2019-12-20)
2019-12-20 bjorn3Merge pull request #839 from bjorn3/fold_offset_into_lo...
2019-12-20 bjorn3[OPT] Use load and store offsets instead of iadd_imm
2019-12-18 bjorn3Monomorphize type of promoted
2019-12-17 bjorn3[OPT] Push fx.monomorphize to the callers of fx.layout_of
2019-12-17 bjorn3[OPT] Avoid calling target_triple for every call to...
2019-12-16 bjorn3Merge pull request #802 from bjorn3/debuginfo_locals
2019-12-16 bjorn3Some optimizations
2019-12-16 bjorn3Implement local reading for locals on stack
2019-12-16 bjorn3Monomorphize locals
2019-12-16 bjorn3[WIP] debuginfo: Add types for locals
2019-12-16 bjorn3[WIP] debuginfo for locals
2019-12-16 bjorn3Rustup to rustc 1.41.0-nightly (a605441e0 2019-12-15)
2019-12-08 bjorn3Remove some workarounds for missing inst legalizations
2019-12-05 bjorn3Rustup to rustc 1.41.0-nightly (6d77e45f0 2019-12-04)
2019-11-22 bjorn3Rustup to rustc 1.41.0-nightly (53712f863 2019-11-21)
2019-11-11 bjorn3Rustup to rustc 1.40.0-nightly (3fc30d884 2019-11-10)
2019-11-09 bjorn3Rustup to rustc 1.40.0-nightly (9e346646e 2019-11-08)
2019-10-19 bjorn3Merge pull request #758 from bjorn3/object_write
2019-10-18 bjorn3Make debuginfo writing backend agnostic
2019-10-06 bjorn3Remove logfile support from unimpl.rs
2019-10-06 bjorn3More 128bit support
2019-10-06 bjorn3Rustup to rustc 1.40.0-nightly (787005079 2019-10-04)
2019-10-03 bjorn3Merge pull request #729 from bjorn3/misc_changes
2019-10-03 bjorn3Update cranelift, faerie and target-lexicon
2019-09-28 bjorn3Rustup to rustc 1.40.0-nightly (084beb83e 2019-09-27)
2019-09-14 bjorn3Fix foreign type handling
2019-09-14 bjorn3Rustup to rustc 1.39.0-nightly (a6946a817 2019-09-13)
2019-09-11 bjorn3Merge pull request #700 from bjorn3/upstream_cranelift
2019-09-08 bjorn3Use upstream cranelift
2019-09-07 bjorn3Don't perform neg overflow checks when they are disabled
2019-09-07 bjorn3Rustup to rustc 1.39.0-nightly (6e19f3f38 2019-09-06)
2019-08-31 bjorn3Merge pull request #694 from Atul9/cargo-fmt
2019-08-31 Atul BhosaleFormat code using 'cargo fmt'
2019-08-27 bjorn3Rustup to rustc 1.39.0-nightly (9b91b9c10 2019-08-26)
2019-08-18 bjorn3Use anonymous lifetimes where possible
next