aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/rewriteMIPS.go
AgeCommit message (Expand)Author
2026-01-28cmd/compile: remove the NORconst op on mips{,64}Xiaolin Zhao
2026-01-23cmd/compile: cleanup isUnsignedPowerOfTwoJorropo
2025-10-30cmd/compile: implement bits.Mul64 on 32-bit systemsRuss Cox
2025-07-30cmd/compile: move mips32 over to new bounds check strategyKeith Randall
2025-07-29cmd/compile: removing log2uint32 functionCuong Manh Le
2025-05-21cmd/compile/internal: intrinsify publicationBarrier on mipsxJulian Zhu
2025-05-19cmd/compile: fold negation into addition/subtraction on mipsxJulian Zhu
2025-02-27cmd/compile: simplify intrinsification of TrailingZeros16 and TrailingZeros8Joel Sing
2025-02-26cmd/compile: simplify intrinsification of BitLen16 and BitLen8Joel Sing
2024-09-24cmd/compile: use generics for isPowerOfTwo predicateskhr@golang.org
2023-05-24cmd/compile: optimize math.Float32bits and math.Float32frombits on mipsxJunxian Zhu
2023-05-08math: optimize math.Abs on mipsxJunxian Zhu
2023-04-10cmd/compile: replace isSigned(t) with t.IsSigned()Keith Randall
2023-04-10cmd/compile: clean up store rules to use store type, not argument typeKeith Randall
2023-02-17cmd/compile: ensure constant folding of pointer arithmetic remains a pointerKeith Randall
2023-01-19cmd/compile: add anchored version of SPKeith Randall
2023-01-19cmd/compile/internal/ssa: generate code via a //go:generate directiveDmitri Shuralyov
2022-10-23cmd/internal/ssa: correct references to _gen folderJohan Brandhorst-Satzkorn
2021-09-17cmd/compile: restore tail call for method wrappersCherry Mui
2021-03-22cmd/compile: disallow rewrite rules from declaring reserved namesDaniel Martí
2021-03-02cmd/compile: optimize single-precision floating point square rootfanzha02
2021-02-23cmd/compile: fold MOV*nop and MOV*constKeith Randall
2020-12-10cmd/compile: don't constant fold divide by zeroKeith Randall
2020-11-18cmd/compile: stop MOVW-ing -1 as SRA shift amount in mipsAlberto Donizetti
2020-11-16cmd/compile: mask SLL,SRL,SRAconst shift amountAlberto Donizetti
2020-10-28cmd/compile: rename mergeSymTyped to mergeSymAlberto Donizetti
2020-10-27cmd/compile: replace int32(b2i(x)) with b2i32(x) in rulesAlberto Donizetti
2020-10-27cmd/compile: delete isPowerOfTwo, switch to isPowerOfTwo64Alberto Donizetti
2020-10-23cmd/compile: intrinsify runtime/internal/atomic.{And,Or} on MIPSMichael Pratt
2020-04-24cmd/compile: CSE the RHS of rewrite rulesJosh Bleecher Snyder
2020-04-24cmd/compile: convert remaining mips rules to typed auxAlberto Donizetti
2020-04-22cmd/compile: switch to typed aux for mips lowering rulesAlberto Donizetti
2020-04-07cmd/compile: delete the floating point Greater and Geq opsMichael Munday
2020-04-03cmd/compile: add logging for large (>= 128 byte) copiesDavid Chase
2020-03-02cmd/compile: make pre-elimination of rulegen bounds checks more preciseJosh Bleecher Snyder
2020-03-02cmd/compile: add streamlined Block Reset+AddControl routinesJosh Bleecher Snyder
2020-03-02cmd/compile: add specialized Value reset for OpCopyJosh Bleecher Snyder
2020-03-01cmd/compile: add specialized AddArgN functions for rewrite rulesJosh Bleecher Snyder
2020-02-29cmd/compile: use correct types in phioptJosh Bleecher Snyder
2020-02-26cmd/compile: remove Greater* and Geq* generic integer opsMichael Munday
2020-02-24cmd/compile: use ellipses in MIPS rulesJosh Bleecher Snyder
2020-02-21cmd/compile: remove chunking of rewrite rulesJosh Bleecher Snyder
2020-02-21cmd/compile: reduce bounds checks in generated rewrite rulesJosh Bleecher Snyder
2020-02-20cmd/compile: use loops to handle commutative ops in rulesJosh Bleecher Snyder
2019-10-29cmd/compile: fix missing lowering of atomic {Load,Store}8Austin Clements
2019-10-07cmd/compile: reduce amount of code generated for block rewrite rulesMichael Munday
2019-10-02cmd/compile: allow multiple SSA block control valuesMichael Munday
2019-09-23cmd/compile: reduce rulegen's output by 200 KiBDaniel Martí
2019-08-27cmd/compile: teach rulegen to remove unused declsDaniel Martí
2019-04-27cmd/compile: add unsigned divisibility rulesBrian Kessler