about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back/write.rs
AgeCommit message (Expand)AuthorLines
2022-03-01Querify `global_backend_features`Simonas Kazlauskas-1/+2
2022-02-23rustc_errors: let `DiagnosticBuilder::emit` return a "guarantee of emission".Eduard-Mihai Burtescu-1/+1
2022-02-23rustc_errors: add `downgrade_to_delayed_bug` to `Diagnostic` itself.Eduard-Mihai Burtescu-1/+1
2022-02-09Ensure that queries only return Copy types.Camille GILLOT-2/+2
2022-01-14Remove LLVMRustMarkAllFunctionsNounwindAmanieu d'Antras-3/+1
2022-01-06sess/cg: re-introduce split dwarf kindDavid Wood-1/+7
2021-12-20Load new pass manager plugins only if the new pm is actually usedAxel Cohen-5/+1
2021-12-13Fix conditions for using legacy or new pm pluginsAxel Cohen-1/+5
2021-12-13Use the existing llvm-plugins option for both legacy and new pm registrationAxel Cohen-4/+2
2021-12-13Add a codegen option to allow loading LLVM pass pluginsAxel Cohen-0/+4
2021-12-09Remove redundant [..]sest31-2/+2
2021-12-07Use object crate for .rustc metadata generationNikita Popov-14/+5
2021-11-08Don't abort compilation after giving a lint errorJoshua Nelson-1/+1
2021-11-05Initialize LLVM time trace profiler on each code generation threadTomasz Miąsko-51/+51
2021-10-06Enable AutoFDO.Michael Benfield-0/+4
2021-09-30Move EncodedMetadata to rustc_metadata.Camille GILLOT-1/+1
2021-07-06Move LinkerInfo into CrateInfobjorn3-6/+1
2021-07-01Rename all_crate_nums query to crates and remove useless wrapperbjorn3-1/+1
2021-06-04Move crate_name field from OngoingCodegen to CrateInfobjorn3-5/+1
2021-06-04Move windows_subsystem field from CodegenResults to CrateInfobjorn3-14/+0
2021-05-12Use () for codegen queries.Camille GILLOT-3/+3
2021-05-12Auto merge of #83610 - bjorn3:driver_cleanup, r=cjgillotbors-1/+2
2021-05-08Explicitly register GCOV profiling pass as wellNikita Popov-13/+9
2021-05-08Explicitly register instrprof passNikita Popov-6/+2
2021-05-08Make -Z new-llvm-pass-manager an Option<bool>Nikita Popov-1/+1
2021-05-02Pass target_cpu to LinkerInfo::new instead of link_binarybjorn3-1/+2
2021-04-14Fix typos in rustc_codegen_ssa/src/back/write.rs.Edd Barrett-2/+2
2021-04-05Rollup merge of #82483 - tmiasko:option-from-str, r=matthewjasperDylan DPC-1/+1
2021-04-03Auto merge of #83682 - bjorn3:mmap_wrapper, r=cjgillotbors-1/+2
2021-04-03Move SanitizerSet to rustc_targetSimonas Kazlauskas-2/+2
2021-03-30Add an Mmap wrapper to rustc_data_structuresbjorn3-1/+2
2021-03-19coverage bug fixes and optimization supportRich Kadel-1/+1
2021-03-18Upgrade memmap to memmap2 in other crates.Camille GILLOT-1/+1
2021-03-09Remove hir::Crate::attrs.Camille GILLOT-6/+4
2021-03-09Use FromStr trait for number option parsingTomasz Miąsko-1/+1
2021-02-25Set codegen thread namesWesley Wiser-47/+77
2021-02-23Auto merge of #82127 - tgnottingham:tune-ahead-of-time-codegen, r=varkorbors-9/+64
2021-02-23Auto merge of #82102 - nagisa:nagisa/fix-dwo-name, r=davidtwcobors-1/+1
2021-02-21rustc_codegen_ssa: remove unneeded wrapping of return type of execute_copy_fr...Matthias Krüger-4/+4
2021-02-15rustc_codegen_ssa: tune codegen according to available concurrencyTyson Nottingham-9/+64
2021-02-14Don't fail to remove files if they are missingSimonas Kazlauskas-7/+7
2021-02-14Set path of the compile unit to the source directorySimonas Kazlauskas-1/+1
2021-01-28rustc: Stabilize `-Zrun-dsymutil` as `-Csplit-debuginfo`Alex Crichton-2/+18
2020-12-16cg_llvm: implement split dwarf supportDavid Wood-2/+22
2020-12-16cg_ssa: introduce `TargetMachineFactoryFn` aliasDavid Wood-12/+4
2020-11-12rustc_target: Mark UEFI targets as `is_like_windows`/`is_like_msvc`Vadim Petrochenkov-0/+2
2020-11-08Collapse all uses of `target.options.foo` into `target.foo`Vadim Petrochenkov-7/+7
2020-10-15Replace target.target with target and target.ptr_width with target.pointer_widthest31-9/+9
2020-10-15Rename target_pointer_width to pointer_width and turn it into an u32est31-2/+2
2020-10-15Rollup merge of #77739 - est31:remove_unused_code, r=petrochenkov,varkorYuki Okushi-2/+0