]> Cypherpunks.ru repositories - gostls13.git/history - src/cmd/compile/internal/ssagen/ssa.go
cmd/compile: fix funcdata encode for functions with large frame size
[gostls13.git] / src / cmd / compile / internal / ssagen / ssa.go
2023-10-18 Cuong Manh Lecmd/compile: fix funcdata encode for functions with...
2023-10-09 Keith Randallcmd/compile: use type hash from itab field instead...
2023-10-06 David Chasecmd/compile: expand calls cleanup
2023-10-06 Keith Randallcmd/compile: use cache in front of type assert runtime...
2023-10-06 Keith Randallcmd/compile: use descriptors for type assertion runtime...
2023-10-06 Keith Randallcmd/compile: pass only the itab to the assertI2I-style...
2023-10-06 Keith Randallcmd/compile: add a cache to interface type switches
2023-10-06 Keith Randallcmd/compile: improve interface type switches
2023-10-05 Matthew Dempskycmd/compile/internal/ir: tweak a couple names
2023-10-04 David Chasecmd/compile: adjust GOSSAFUNC html dumping to be more...
2023-10-03 Xianmiao Qucmd/compile/internal: intrinsify publicationBarrier...
2023-10-03 qiulaidongfengcmd/compile,runtime: remove runtime.mulUintptr
2023-09-20 Russ Coxcmd/compile: implement range over func
2023-09-14 Matthew Dempskycmd/compile: move remaining instrumentation logic into...
2023-09-14 Matthew Dempskycmd/compile/internal/ir: add Func.DeclareParams
2023-09-13 Matthew Dempskycmd/compile/internal/abi: replace types.Object with...
2023-09-12 Matthew Dempskycmd/compile: rename OEFACE to OMAKEFACE and remove...
2023-09-08 Matthew Dempskycmd/compile/internal/ssa: replace Frontend.Auto with...
2023-09-08 Matthew Dempskycmd/compile/internal/ssagen: call AllocFrame after...
2023-09-08 Matthew Dempskycmd/compile/internal/ssa: rename ssagen.TypeOK as CanSSA
2023-09-08 Matthew Dempskycmd/compile/internal/ssa: remove Frontend.MyImportPath
2023-09-08 Matthew Dempskycmd/compile/internal/ssa: simplify NewFunc API
2023-09-08 Matthew Dempskycmd/compile: cleanup uses of ir.Orig and ir.SepCopy
2023-08-23 Cuong Manh Lecmd/compile: use s.temp for creating defer struct
2023-08-22 Matthew Dempskycmd/compile: simplify various signature type handling...
2023-08-22 Matthew Dempskycmd/compile/internal/types: replace BOGUS_FUNARG_OFFSET...
2023-08-22 Matthew Dempskycmd/compile/internal/types: overhaul and simplify API
2023-08-21 Matthew Dempskycmd/compile/internal/ssagen: share runtime._defer types
2023-08-21 Matthew Dempskycmd/compile/internal/reflectdata: share hmap and hiter...
2023-08-18 Matthew Dempskycmd/compile: restore zero-copy string->[]byte optimization
2023-08-17 Matthew Dempskycmd/compile/internal/ssagen: fix race added in CL 510539
2023-08-17 Matthew DempskyRevert "cmd/compile: enable zero-copy string->[]byte...
2023-08-17 Matthew Dempskycmd/compile: enable zero-copy string->[]byte conversions
2023-08-17 Matthew Dempskycmd/compile/internal/ir: add typ parameter to NewNameAt
2023-08-17 Matthew Dempskycmd/compile/internal/ir: remove ODCLCONST and ODCLTYPE
2023-08-16 Russ Coxcmd/compile, runtime: make room for rangefunc defers
2023-08-16 Russ Coxruntime/internal/math: add Add64
2023-08-11 Keith Randallcmd/compile: separate out unsafe mark for end-of-block...
2023-08-07 Matthew Dempskyruntime, cmd/compile: optimize open-coded defers
2023-08-07 Matthew Dempskyruntime, cmd/compile: prune unused _defer fields
2023-08-01 Keith Randallcmd/compile: implement float min/max in hardware for...
2023-07-31 Junxian Zhucmd/compile: intrinsify Sub64 on mips64
2023-07-31 Junxian Zhucmd/compile: intrinsify Add64 on mips64
2023-06-28 Matthew Dempskycmd/compile/internal/ssagen: fix min/max codegen, again
2023-06-24 Keith Randallcmd/compile: fix min/max builtin code generation
2023-05-23 Matthew Dempskycmd/compile: implement min/max builtins
2023-05-18 Junxian Zhucmd/compile: intrinsify runtime/internal/atomic.{And...
2023-05-10 cui fliterall: fix a lot of comments
2023-05-09 Russ Coxcmd/compile: standardize on outer-to-inner for pos...
2023-05-08 Junxian Zhumath: optimize math.Abs on mipsx
2023-05-05 Junxian Zhumath: optimize math.Abs on mips64x
2023-04-21 Austin Clementsinternal/abi, runtime, cmd: merge PCDATA_* and FUNCDATA...
2023-04-20 Michael Prattcmd/compile: expose ir.Func to ssa
2023-03-29 Keith Randallcmd/compile: casts from slices to array pointers are...
2023-03-28 Keith Randallcmd/compile: don't assume pointer of a slice is non-nil
2023-03-14 Wayne Zuocmd/compile: instrinsify TrailingZeros{8,32,64} for 386
2023-03-09 Andy Pancmd/compile: clarify a few redundant deletions of inter...
2023-03-06 David Chasecmd/compile: add flag to FOR/RANGE to preserve loop...
2023-03-03 Keith Randallcmd/compile: ensure FuncForPC works on closures that...
2023-02-28 Cuong Manh Lecmd/compile: update documentation for ONAME node with...
2023-02-24 Keith Randallcmd/compile: batch write barrier calls
2023-02-17 Keith Randallcmd/compile: move raw writes out of write barrier code
2023-02-16 Keith Randallruntime: reimplement GODEBUG=cgocheck=2 as a GOEXPERIMENT
2023-02-16 Keith Randallcmd/compile: detect write barrier completion differently
2023-02-08 Wayne Zuocmd/compile: intrinsify math/bits/ReverseBytes{32|64...
2023-02-06 Keith Randallcmd/compile: ensure first instruction in a function...
2023-02-03 Archana Rcmd/compile: intrinsify math/bits/ReverseBytes{16|32...
2023-01-26 Matthew Dempskycmd/compile/internal/types: remove unneeded functionality
2023-01-20 Keith Randallcmd/compile: improve scheduling pass
2023-01-19 Keith Randallcmd/compile: add memory argument to GetCallerSP
2022-12-03 cui fliterall: fix some comments for method
2022-11-23 Russ Coxcmd/compile: fix error message wording
2022-11-18 cui fliterall: add missing periods in comments
2022-10-27 Garet Hallidayruntime: add wasm bulk memory operations
2022-10-18 Youlin Fengruntime: replace all uses of CtzXX with TrailingZerosXX
2022-10-07 Wayne Zuocmd/compile: intrinsify Sub64 on loong64
2022-10-07 Wayne Zuocmd/compile: intrinsify Add64 on loong64
2022-09-27 Keith Randallcmd/compile: use stricter rule for possible partial...
2022-09-14 Emmanuel T Odekeall: remove unnecessary allocations from w.WriteString...
2022-09-07 cuiweixiecmd/compile/internal/ssagen: use strings.Builder
2022-09-01 Keith Randallcmd/compile,runtime: redo growslice calling convention
2022-08-31 cuiweixiecmd/compile: add support for unsafe.{String,StringData...
2022-08-30 Wayne Zuocmd/compile: intrinsify RotateLeft{32,64} on loong64
2022-08-27 Wayne Zuocmd/compile: intrinsify Sub64 on riscv64
2022-08-27 Wayne Zuocmd/compile: intrinsify Add64 on riscv64
2022-08-26 Cherry Muicmd/compile: align stack offset to alignment larger...
2022-08-23 Keith Randallcmd/compile: handle partially overlapping assignments
2022-08-22 Keith Randallcmd/compile: issue VarDef only for pointer-ful types
2022-08-22 Keith Randallcmd/compile: remove OVARDEF and OVARLIVE
2022-08-22 Keith Randallcmd/compile: rip out support for OVARKILL from compiler...
2022-08-19 ruinancmd/compile: add intrinsic for MulUintptr on arm64
2022-08-18 Keith Randallcmd/compile: remove OFORUNTIL
2022-08-18 Keith Randallcmd/compile: rip out support for OpVarKill from ssa...
2022-08-18 Keith Randallcmd/compile: stop using VARKILL
2022-08-15 cuiweixiecmd/compile/internal/ssagen: gofmt -w -s ssa.go
2022-08-15 Wayne Zuocmd/compile,math: remove all sqrt assembly code
2022-08-10 David Chasecmd/compile: refactor GOSSAHASH debugging to make it...
2022-08-08 Keith Randallcmd/compile: optimize unsafe.Slice generated code
2022-08-08 Cuong Manh Lecmd/compile: rename types.Rnd -> types.RoundUp
2022-08-04 Matthew Dempskyall: REVERSE MERGE dev.unified (d558507) into master
next