about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/mir
AgeCommit message (Expand)AuthorLines
2022-06-30Auto merge of #98377 - davidv1992:add-lifetimes-to-argument-temporaries, r=ol...bors-2/+16
2022-06-30Change enum->int casts to not go through MIR casts.Oli Scherer-70/+8
2022-06-29rustc_codegen_ssa: use `project_index`, not `project_field`, for array literals.Eduard-Mihai Burtescu-1/+6
2022-06-29Some tracing cleanupsOli Scherer-5/+4
2022-06-29Rollup merge of #97423 - m-ou-se:memory-ordering-intrinsics, r=tmiaskoDylan DPC-32/+26
2022-06-28Avoid unnecessary string interning for const_strbjorn3-3/+2
2022-06-28Rename/restructure memory ordering intrinsics.Mara Bos-32/+26
2022-06-25Improved naming for copied constant arguments vector.David Venhoek-7/+7
2022-06-22Added llvm lifetime annotations to function call argument temporaries.David Venhoek-2/+16
2022-06-15fix codegen assertionDrMeepster-2/+2
2022-06-15remove box derefs from codgenDrMeepster-30/+8
2022-06-14Auto merge of #96285 - flip1995:pk-vfe, r=nagisabors-5/+13
2022-06-14implement valtrees as the type-system representation for constant valuesb-naber-4/+4
2022-06-14Add llvm.type.checked.load intrinsicflip1995-5/+13
2022-06-14Rename the `ConstS::val` field as `kind`.Nicholas Nethercote-2/+2
2022-06-02commentRalf Jung-0/+3
2022-06-02add cast kind of from_exposed_addr (int-to-ptr casts)Ralf Jung-1/+2
2022-06-01rename PointerAddress → PointerExposeAddressRalf Jung-1/+1
2022-05-31Add a pointer to address cast kindTomasz Miąsko-3/+7
2022-05-26clippy::complexity fixesMatthias Krüger-1/+1
2022-05-26Auto merge of #97369 - tmiasko:codgen-ssa-atomic-ordering, r=michaelwoeristerbors-5/+5
2022-05-25rustc_codegen_ssa: cleanup `AtomicOrdering`Tomasz Miąsko-5/+5
2022-05-24Add flag for stricter checks on uninit/zeroed5225225-3/+5
2022-05-23Refactor call terminator to always hold a destination placeJakob Degen-17/+19
2022-05-17Change `Successors` to `impl Iterator<Item = BasicBlock>`SparrowLii-1/+1
2022-05-11Add `unsigned_offset_from` on pointersScott McMurray-7/+14
2022-05-01Use reverse postorder in `non_ssa_locals`Tomasz Miąsko-2/+2
2022-04-30Auto merge of #96500 - SparrowLii:rpo, r=tmiaskobors-1/+0
2022-04-30Eliminate duplication of RPO calculation for mirSparrowLii-1/+0
2022-04-29Auto merge of #96474 - SparrowLii:langcall, r=lcnrbors-19/+5
2022-04-28use tcx.require_lang_item() insteadSparrowLii-4/+4
2022-04-27Eliminate duplication of building panic langcall in codegenSparrowLii-19/+5
2022-04-26not need `Option` for `dbg_scope`SparrowLii-9/+3
2022-04-14Add additional `extract_field` / `project_field` to take into account extra l...Eduardo Sánchez Muñoz-2/+6
2022-04-11Add new `MutatatingUseContext`s for deinit and `SetDiscriminant`Jakob Degen-0/+2
2022-04-11Add new `Deinit` statement kindJakob Degen-0/+6
2022-04-05Mark scalar layout unions so that backends that do not support partially init...Oli Scherer-15/+20
2022-03-27fix other source of box derefDrMeepster-3/+11
2022-03-26check the the right fieldDrMeepster-1/+1
2022-03-25widen special case on deref to all non-zst allocatorsDrMeepster-4/+2
2022-03-16rustc_error: make ErrorReported impossible to constructmark-2/+1
2022-03-12Auto merge of #94873 - DrMeepster:box_alloc_ice3, r=oli-obkbors-1/+8
2022-03-11fix another assumption about boxDrMeepster-1/+8
2022-03-11Improve `AdtDef` interning.Nicholas Nethercote-1/+1
2022-03-02rename ErrorReported -> ErrorGuaranteedmark-2/+2
2022-03-01Auto merge of #94402 - erikdesjardins:revert-coldland, r=nagisabors-3/+7
2022-02-27expadn abi check + condese & fix testsDrMeepster-1/+1
2022-02-27Revert "Auto merge of #92419 - erikdesjardins:coldland, r=nagisa"Erik Desjardins-3/+7
2022-02-27fix box icing when it has aggregate abiDrMeepster-1/+12
2022-02-24Auto merge of #94123 - bjorn3:cg_ssa_singleton_builder, r=tmiaskobors-41/+41