about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
AgeCommit message (Expand)AuthorLines
2024-03-12Ensure nested allocations in statics do not get deduplicatedOli Scherer-4/+34
2024-03-12Make some functions private that are only ever used in the same moduleOli Scherer-1/+1
2024-03-12Stop requiring a type when codegenning types. We can get all the type info we...Oli Scherer-10/+3
2024-03-12Check whether a static is mutable instead of passing it downOli Scherer-5/+5
2024-03-12Swap the order of a piece of code to make follow up diffs simplerOli Scherer-2/+2
2024-03-12Use information from allocation instead of from the static's typeOli Scherer-2/+6
2024-03-12Move `codegen_static` function body to an inherent method in preparation of s...Oli Scherer-23/+27
2024-03-12Reduce some duplicate work that is being done around staticsOli Scherer-8/+18
2024-03-12Share the llvm type computation between both arms of a conditionOli Scherer-5/+4
2024-03-11Rollup merge of #122166 - beetrees:remove-field-remapping, r=davidtwcoJubilee-34/+9
2024-03-11Rollup merge of #121438 - coolreader18:wasm32-panic-unwind, r=cuviperJubilee-0/+9
2024-03-11Auto merge of #122050 - erikdesjardins:sret, r=nikicbors-4/+16
2024-03-11Auto merge of #122132 - nnethercote:diag-renaming3, r=nnethercotebors-9/+9
2024-03-11Rename `IntoDiagnostic` as `Diagnostic`.Nicholas Nethercote-9/+9
2024-03-10use Instance::expect_resolve() instead of unwraping Instance::resolve()Ralf Jung-5/+6
2024-03-08Rollup merge of #122198 - beetrees:no-llvm-14, r=cuviperMatthias Krüger-10/+4
2024-03-08Rollup merge of #119365 - nbdd0121:asm-goto, r=AmanieuMatthias Krüger-10/+88
2024-03-08Remove handling for previously dropped LLVM versionbeetrees-10/+4
2024-03-08Remove the unused `field_remapping` field from `TypeLowering`beetrees-34/+9
2024-03-06Add arm64ec-pc-windows-msvc targetDaniel Paoliello-2/+10
2024-03-05use [N x i8] for byval/sret typesErik Desjardins-4/+16
2024-03-05only set noalias on Box with the global allocatorRalf Jung-3/+7
2024-03-03Auto merge of #121665 - erikdesjardins:ptradd, r=nikicbors-96/+62
2024-03-03Auto merge of #121763 - clubby789:llvm-old-comment, r=cjgillotbors-6/+3
2024-03-02Auto merge of #121914 - Nadrieril:rollup-ol98ncg, r=Nadrierilbors-1/+129
2024-03-02Rollup merge of #121841 - tgross35:f16-f128-step2-intrinsics, r=compiler-errorsGuillaume Boisseau-1/+116
2024-03-02avoid collecting into vecs in some placesMatthias Krüger-20/+16
2024-03-01Add initial support for DataFlowSanitizerRamon de C Valle-0/+13
2024-03-01Add `f16` and `f128` LLVM intrinsicsTrevor Gross-1/+116
2024-03-01Update outdated LLVM commentclubby789-6/+3
2024-03-01Auto merge of #121728 - tgross35:f16-f128-step1-ty-updates, r=compiler-errorsbors-4/+29
2024-02-28Add `f16` and `f128` to `rustc_type_ir::FloatTy` and `rustc_abi::Primitive`Trevor Gross-4/+29
2024-02-28Rename `DiagnosticBuilder` as `Diag`.Nicholas Nethercote-11/+7
2024-02-26introduce and use ptradd/inbounds_ptradd instead of gepErik Desjardins-28/+16
2024-02-26remove struct_gep, use manual layout calculations for va_argErik Desjardins-81/+62
2024-02-26always use gep inbounds i8 (ptradd) for field offsetsErik Desjardins-3/+0
2024-02-27Auto merge of #121635 - 823984418:remove_archive_builder_lifetime_a, r=nnethe...bors-2/+2
2024-02-27Rollup merge of #121598 - RalfJung:catch_unwind, r=oli-obkMatthias Krüger-4/+4
2024-02-26Rollup merge of #121389 - klensy:llvm-warn-fix, r=nikicMatthias Krüger-6/+6
2024-02-26remove useless lifetime of ArchiveBuilder823984418-2/+2
2024-02-26rename 'try' intrinsic to 'catch_unwind'Ralf Jung-4/+4
2024-02-25Rollup merge of #121060 - clubby789:bool-newtypes, r=cjgillotMatthias Krüger-24/+31
2024-02-24Auto merge of #121569 - matthiaskrgr:rollup-awglrax, r=matthiaskrgrbors-4/+4
2024-02-24Add assertions and clarify asm-goto with noreturnGary Guo-0/+1
2024-02-24Implement asm goto for LLVM and GCC backendGary Guo-10/+21
2024-02-24Add callbr support to LLVM wrapperGary Guo-0/+66
2024-02-24compiler: use `addr_of!`Pavel Grigorenko-4/+4
2024-02-23check that simd_insert/extract indices are in-boundsRalf Jung-19/+34
2024-02-22Unconditionally pass -wasm-enable-ehNoa-6/+6
2024-02-22std support for wasm32 panic=unwindNoa-2/+11