about summary refs log tree commit diff
path: root/src/librustc/session/mod.rs
AgeCommit message (Expand)AuthorLines
2019-09-17Replace DiagnosticBuilder with Diagnostic when emitting errorMark Rousskov-4/+10
2019-09-07Aggregation of cosmetic changes made during work on REPL PRs: librustcAlexander Regueiro-28/+33
2019-08-21Add terminal_width debugging flagEsteban Küber-2/+4
2019-07-25Rollup merge of #62735 - petrochenkov:galloc, r=alexcrichtonMazdak Farrokhzad-1/+1
2019-07-24Gate binary dependency information behind -Zbinary-dep-depinfoMark Rousskov-0/+3
2019-07-24Merge `rustc_allocator` into `libsyntax_ext`Vadim Petrochenkov-1/+1
2019-07-11Only error about MSVC + PGO + unwind if we're generating codeWesley Wiser-2/+5
2019-07-11Revert "Emit warning when trying to use PGO in conjunction with unwinding on ...Wesley Wiser-4/+4
2019-07-09Emit warning when trying to use PGO in conjunction with unwinding on Windows.Eric Rahm-4/+4
2019-07-03Remove needless lifetimesJeremy Stucki-26/+26
2019-07-02Auto merge of #61268 - michaelwoerister:stabilize-pgo, r=alexcrichtonbors-3/+3
2019-06-22Prefer to use `has_errors` to `err_count`Matthew Jasper-9/+6
2019-06-21Stabilize profile-guided optimization.Michael Woerister-3/+3
2019-06-05librustc_errors: Rename AnnotateRs -> AnnotateSnippetPhilipp Hansch-3/+3
2019-06-04Add new error-format value to use annotate-snippet outputPhilipp Hansch-14/+25
2019-05-30Auto merge of #61005 - michaelwoerister:error-pgo-windows-unwind, r=zackmdavisbors-0/+12
2019-05-29rustc_codegen_llvm: remove LLVM instruction count stats.Eduard-Mihai Burtescu-6/+0
2019-05-28Rename PgoGenerate to something more general.Michael Woerister-2/+2
2019-05-28Allow to specify profiling data output directory as -Zself-profile argument.Michael Woerister-3/+13
2019-05-28Emit error when trying to use PGO in conjunction with unwinding on Windows.Michael Woerister-0/+12
2019-05-27PGO: Check that pgo-use file actually exists. LLVM seems to only emit an easy...Michael Woerister-0/+9
2019-05-13Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions.Nicholas Nethercote-1/+2
2019-05-08Optimize HIR mapJohn Kåre Alsaker-3/+0
2019-04-26Remove unused `DiagnosticOutput::Emitter` variant.Nicholas Nethercote-3/+1
2019-04-19Rollup merge of #60045 - estebank:suggest-std, r=petrochenkovMazdak Farrokhzad-0/+5
2019-04-18Suggest appropriate path when calling associated item on bare typesEsteban Küber-0/+5
2019-04-18Implement event filtering for self-profiler.Michael Woerister-1/+1
2019-04-17Rollup merge of #59128 - oli-obk:colorful_json, r=mark-i-m,eddybMazdak Farrokhzad-32/+33
2019-04-12Use measureme in self-profilerWesley Wiser-9/+17
2019-04-09Do not render ascii colors to buffersOliver Scherer-2/+2
2019-04-09Make trait_methods_not_found use a lockJohn Kåre Alsaker-2/+2
2019-04-02Rename `colorful-json` to `json-rendered` and make it a selection instead of ...Oliver Scherer-39/+33
2019-04-02Emit ansi color codes in the `rendered` field of json diagnosticsOliver Scherer-7/+14
2019-04-01Rollup merge of #58507 - Zoxc:time-extended, r=michaelwoeristerMazdak Farrokhzad-0/+3
2019-03-20Add a -Z time option which prints only passes which runs onceJohn Kåre Alsaker-0/+3
2019-03-15Elide object safety errors on non-existent trait functionEsteban Küber-0/+4
2019-03-10Make the rustc driver and interface demand drivenJohn Kåre Alsaker-14/+4
2019-03-06Make `-Z treat-err-as-bug` take a number of errors to be emittedEsteban Küber-2/+2
2019-03-03Remove profiler output and replace with a raw event dumpWesley Wiser-4/+1
2019-03-03Wrap the self-profiler in an `Arc<Mutex<>>`Wesley Wiser-24/+22
2019-03-01Add support for using a jobserver with RayonJohn Kåre Alsaker-27/+3
2019-02-28Introduce rustc_interface and move some methods thereJohn Kåre Alsaker-43/+66
2019-02-14Rollup merge of #58378 - alexcrichton:incremental-lto, r=michaelwoeristerMazdak Farrokhzad-15/+1
2019-02-13Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasperMazdak Farrokhzad-2/+2
2019-02-13Rollup merge of #58057 - michaelwoerister:stabilize-xlto, r=alexcrichtonMazdak Farrokhzad-1/+1
2019-02-13Rename rustc_errors dependency in rust 2018 cratesTaiki Endo-2/+2
2019-02-12Stabilize linker-plugin based LTO.Michael Woerister-1/+1
2019-02-12rustc: Implement incremental "fat" LTOAlex Crichton-15/+1
2019-02-10rustc: doc commentsAlexander Regueiro-15/+15
2019-02-07Auto merge of #58010 - Zoxc:parallel-passes, r=michaelwoeristerbors-2/+2