| Age | Commit message (Expand) | Author | Lines |
| 2023-10-15 | Auto merge of #3118 - eduardosm:intrinsics-x86-sse41, r=RalfJung | bors | -0/+265 |
| 2023-10-15 | Implement `llvm.x86.sse41.*` intrinsics | Eduardo Sánchez Muñoz | -0/+265 |
| 2023-10-15 | more precise error for 'based on misaligned pointer' case | Ralf Jung | -50/+55 |
| 2023-10-15 | place evaluation: require the original pointer to be aligned if an access hap... | Ralf Jung | -0/+50 |
| 2023-10-15 | don't UB on dangling ptr deref, instead check inbounds on projections | Ralf Jung | -200/+261 |
| 2023-10-14 | Rollup merge of #116576 - eduardosm:const-eval-wasm-target-features, r=RalfJung | Guillaume Gomez | -0/+11 |
| 2023-10-14 | const-eval: allow calling functions with targat features disabled at compile ... | Eduardo Sánchez Muñoz | -0/+11 |
| 2023-10-13 | Clean up unchecked_math, separate out unchecked_shifts | ltdk | -2/+2 |
| 2023-10-12 | Fix identation of a `rustfmt::skip`ed statement | Eduardo Sánchez Muñoz | -6/+6 |
| 2023-10-12 | fmt | Ralf Jung | -5/+2 |
| 2023-10-12 | Merge from rustc | Ralf Jung | -0/+414 |
| 2023-10-10 | avoid confusing loop in catch_panic test | Ralf Jung | -5/+6 |
| 2023-10-09 | Auto merge of #3101 - eduardosm:x86-aes-intrinsics, r=RalfJung | bors | -0/+291 |
| 2023-10-09 | Implement `llvm.x86.aesni.*` intrinsics | Eduardo Sánchez Muñoz | -0/+291 |
| 2023-10-09 | return_pointer_aliasing2 should also run with SB | Ralf Jung | -2/+45 |
| 2023-10-09 | add test to ensure RET assignments do not get propagated on unwinding | Ralf Jung | -0/+74 |
| 2023-10-09 | add test for self-assignment on call through reference | Ralf Jung | -0/+16 |
| 2023-10-09 | float-to-float casts also have non-deterministic NaN results | Ralf Jung | -0/+90 |
| 2023-10-09 | ensure unary minus propagates NaN payloads exactly | Ralf Jung | -0/+8 |
| 2023-10-08 | miri: make NaN generation non-deterministic | Ralf Jung | -0/+316 |
| 2023-10-06 | Fix problems of Reserved -> Frozen | Neven Villani | -216/+625 |
| 2023-10-06 | add a direct dlsym test | Ralf Jung | -0/+14 |
| 2023-10-05 | Auto merge of #3106 - RalfJung:tree-borrows-initial, r=RalfJung | bors | -4/+28 |
| 2023-10-05 | Tree Borrows: do not create new tags as 'Active' | Ralf Jung | -4/+28 |
| 2023-10-04 | auto-detect no_std where possible | Ralf Jung | -3/+1 |
| 2023-10-02 | add test for a function ABI mismatch due to target features | Ralf Jung | -0/+50 |
| 2023-09-30 | fmt | Ralf Jung | -10/+4 |
| 2023-09-30 | Merge from rustc | Ralf Jung | -1/+20 |
| 2023-09-30 | Auto merge of #3086 - eduardosm:x86-sse3-intrinsics, r=RalfJung | bors | -0/+395 |
| 2023-09-30 | Implement `llvm.x86.ssse3.*` intrinsics | Eduardo Sánchez Muñoz | -114/+395 |
| 2023-09-30 | Implement `llvm.x86.sse3.*` intrinsics | Eduardo Sánchez Muñoz | -0/+114 |
| 2023-09-30 | Auto merge of #115933 - oli-obk:simd_shuffle_const, r=workingjubilee | bors | -1/+20 |
| 2023-09-29 | Auto merge of #3093 - eduardosm:llvm.x86.sse2.pmadd.wd, r=RalfJung | bors | -0/+18 |
| 2023-09-29 | Implement the `llvm.x86.sse2.pmadd.wd` intrinsic | Eduardo Sánchez Muñoz | -0/+18 |
| 2023-09-29 | add FMA test that would fail with apfloat | Ralf Jung | -9/+18 |
| 2023-09-29 | add tests for '%' sign on floats | Ralf Jung | -0/+10 |
| 2023-09-28 | Merge from rustc | The Miri Conjob Bot | -4/+16 |
| 2023-09-27 | Auto merge of #109597 - cjgillot:gvn, r=oli-obk | bors | -4/+16 |
| 2023-09-26 | Add tests for simd_shuffle{_generic} | Oli Scherer | -1/+20 |
| 2023-09-25 | fix normalization in backtrace-api tests | Ralf Jung | -5/+33 |
| 2023-09-25 | Auto merge of #3008 - oli-obk:ui_test_progress_bars, r=RalfJung | bors | -57/+48 |
| 2023-09-25 | Explain single element vector | Oli Scherer | -0/+2 |
| 2023-09-25 | remove some dead code | Ralf Jung | -0/+1 |
| 2023-09-25 | Auto merge of #3075 - eduardosm:x86-addcarry-subborrow, r=RalfJung | bors | -1753/+1840 |
| 2023-09-25 | Use `cfg` gates in x86 SSE and SSE2 tests | Eduardo Sánchez Muñoz | -1752/+1762 |
| 2023-09-25 | Implement `llvm.x86.subborrow.32` and `llvm.x86.subborrow.64` | Eduardo Sánchez Muñoz | -0/+42 |
| 2023-09-25 | Fix the carry semantics of `_addcarry_u32` and `_addcarry_u64` | Eduardo Sánchez Muñoz | -2/+14 |
| 2023-09-25 | Implement `llvm.x86.addcarry.32` by refactoring `llvm.x86.addcarry.64` to mak... | Eduardo Sánchez Muñoz | -0/+23 |
| 2023-09-24 | Put AVX512 tests together | Eduardo Sánchez Muñoz | -126/+85 |
| 2023-09-24 | Complete miri test. | Camille GILLOT | -3/+16 |