aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
AgeCommit message (Expand)Author
2022-05-19x64: re-enable behavior testsJakub Konka
2022-05-18wasm: enable 128bit integer behavior testsLuuk de Gram
2022-05-16aarch64: sub_with_overflow should always track V flagJakub Konka
2022-05-11Merge pull request #11628 from ziglang/x64-shiftsJakub Konka
2022-05-10Sema: comptime float negation supports negative zeroAndrew Kelley
2022-05-10x64: fix binary not implementationJakub Konka
2022-05-10x64: enable additional math testJakub Konka
2022-05-10x64: implement shl with overflow for non-pow-2Jakub Konka
2022-05-10x64: implement shl_with_overflow for powers of twoJakub Konka
2022-05-10x64: implement missing bits in add_with_overflow and sub_with_overflowJakub Konka
2022-05-10x64: implement shl_exact and shr_exactJakub Konka
2022-05-09x64: add naive impl of shrJakub Konka
2022-05-07stage2: Split `@mulWithOverflow` testsLuuk de Gram
2022-05-05test: pass extended mul_with_overflow tests on x64Jakub Konka
2022-05-05test: test bitwidths between 1...8 and 8...16 for mul_with_overflowJakub Konka
2022-05-05test: test more int sizes for @mulWithOverflow builtinJakub Konka
2022-05-05aarch64: implement mul_with_overflow for <= 32bit intsJakub Konka
2022-05-05stage2 AArch64: implement shl_with_overflowjoachimschmidt557
2022-05-05stage2 AArch64: initial implementation of {add,sub}_with_overflowjoachimschmidt557
2022-05-03temporary fix for stage2/stage1 f128 rounding discrepencyMarc Tiehuis
2022-04-27stage1: fix i386-windows f80 sizeof/alignofAndrew Kelley
2022-04-27disable failing behavior testAndrew Kelley
2022-04-27enable newly passing behavior testsAndrew Kelley
2022-04-27disable failing behavior testsAndrew Kelley
2022-04-27compiler-rt: math functions reorgAndrew Kelley
2022-04-19stage2 AArch64: fix shl, shr, shl_exact, shr_exactjoachimschmidt557
2022-04-19stage2 AArch64: implement addwrap, subwrap, mulwrapjoachimschmidt557
2022-04-12Skip `@rem`/`@mod` tests on stage2, due to missing `fmodl` implementationCody Tapscott
2022-04-02wasm: Enable passing behavior testsLuuk de Gram
2022-04-01stage2 ARM: implement mul_with_overflow for ints <= 16 bitsjoachimschmidt557
2022-04-01stage2 ARM: implement shl_with_overflow for ints <= 32 bitsjoachimschmidt557
2022-04-01stage2 ARM: implement add/sub_with_overflow for ints < 32 bitsjoachimschmidt557
2022-04-01x64: implement add/sub with wrapping and xor opJakub Konka
2022-03-30replace other uses of `std.meta.Vector` with `@Vector` (#11346)Meghan
2022-03-30x64: redo @mulWithOverflow using rax/rdx based multiplicationJakub Konka
2022-03-28x64: partially fix genImul, enable overflow testsJakub Konka
2022-03-27wasm: Enable overflow behavior testsLuuk de Gram
2022-03-23stage2: enable some passing array & vector testsWilliam Sengir
2022-03-19CBE: implement mod, divFloor, divTruncDaniele Cocca
2022-03-17CBE: enable more tests that are currently passingDaniele Cocca
2022-03-17Merge pull request #11192 from joachimschmidt557/stage2-armJoachim Schmidt
2022-03-16stage2: bit_not on u0 is always 0Mitchell Hashimoto
2022-03-16stage2 ARM: implement addwrap, subwrap, mulwrapjoachimschmidt557
2022-03-16stage2 ARM: fix shl for ints with bits < 32joachimschmidt557
2022-03-16stage2 ARM: fix bitwise negation of ints with bits < 32joachimschmidt557
2022-03-14Merge pull request #11143 from jmc-88/cbeAndrew Kelley
2022-03-14CBE: split {clz,ctz,mod,popCount,byteSwap,bitReverse} by typeDaniele Cocca
2022-03-14Sema: improve lowering of stores to bitcasted vector pointersAndrew Kelley
2022-03-13stage2 AArch64: enable mul for ints with <= 64 bitsjoachimschmidt557
2022-03-13stage2 AArch64: Implement bit shifting with immediate operandsjoachimschmidt557