summaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ir/expr.go
Commit message (Expand)AuthorAgeFilesLines
* cmd/compile: fix ir.StaticValue for ORANGEJunwei Zuo2023-04-121-0/+5
* all: fix misuses of "a" vs "an"cui fliter2023-04-041-1/+1
* cmd/compile: update documentation for ONAME node with nil FuncCuong Manh Le2023-02-281-2/+1
* cmd/compile: add clear(x) builtinCuong Manh Le2023-01-311-1/+1
* cmd/compile: implement slice-to-array conversionsMatthew Dempsky2022-09-191-1/+1
* cmd/compile: add support for unsafe.{String,StringData,SliceData}cuiweixie2022-08-311-2/+18
* cmd/compile: remove OVARDEF and OVARLIVEKeith Randall2022-08-221-1/+1
* cmd/compile: rip out support for OVARKILL from compiler frontendKeith Randall2022-08-221-1/+1
* all: use ":" for compiler generated symbolsCuong Manh Le2022-08-091-1/+0
* [dev.unified] cmd/compile: plumb rtype through for OMAPLITMatthew Dempsky2022-06-231-0/+1
* [dev.unified] cmd/compile: add RType fieldsMatthew Dempsky2022-06-231-5/+20
* [dev.unified] cmd/compile: avoid reflectType in ssagenMatthew Dempsky2022-06-211-0/+15
* cmd/compile/internal/ir: more idiomatic DynamicType{,AssertExpr}Matthew Dempsky2022-05-161-16/+21
* cmd/compile/internal/ir: remove NilExpr.Sym_Cuong Manh Le2022-05-131-4/+0
* cmd/compile/internal/ir: prune down possible Ntype nodesMatthew Dempsky2022-05-051-25/+0
* cmd/compile: change ir.InstExpr.Targs from Node to NtypeMatthew Dempsky2022-05-051-2/+2
* cmd/compile: remove ir.TypeAssertExpr.NtypeMatthew Dempsky2022-05-051-4/+6
* cmd/compile: remove ir.CompLitExpr.Ntype fieldMatthew Dempsky2022-05-051-2/+1
* cmd/compile: change ir.NewCompLitExpr from Ntype to *types.TypeMatthew Dempsky2022-05-051-3/+5
* all: gofmt main repoRuss Cox2022-04-111-5/+5
* all: fix various doc comment formatting nitsRuss Cox2022-04-011-5/+5
* Revert "cmd/compile: stop interface conversions for generic method calls from...Keith Randall2022-03-261-2/+1
* cmd/compile/internal/ir: remove NewClosureExprCuong Manh Le2022-03-251-8/+0
* cmd/compile: remove n.Diag() deadcode pathsCuong Manh Le2022-03-181-1/+0
* cmd/compile: set conversions to unsafe.Pointer as an escaping operation when ...fanzha022022-03-171-0/+6
* Revert "cmd/compile: set conversions to unsafe.Pointer as an escaping operati...Fannie Zhang2022-03-171-6/+0
* cmd/compile: allow noop conversions when comparing expressionsKeith Randall2022-03-161-5/+6
* cmd/compile: set conversions to unsafe.Pointer as an escaping operation when ...fanzha022022-03-161-0/+6
* cmd/compile: include all entries in map literal hint sizeKeith Randall2022-03-011-1/+4
* cmd/compile: stop interface conversions for generic method calls from allocatingKeith Randall2022-01-131-1/+2
* cmd/compile: move checkptr alignment to SSA generationCuong Manh Le2021-09-091-5/+4
* cmd/compile: ignore SliceExpr.CheckPtrCall for mknodeCuong Manh Le2021-08-281-1/+1
* cmd/compile: fix checkptr false positive for (*[Big]T)(ptr)[:n:n] patternCuong Manh Le2021-08-251-4/+5
* cmd/compile: fix typoswangyuntao2021-08-171-1/+1
* [dev.typeparams] cmd/compile: implement generic type switchesKeith Randall2021-08-091-0/+9
* [dev.typeparams] cmd/compile: implement generic .(T) operationsKeith Randall2021-07-291-0/+23
* [dev.typeparams] cmd/compile: introduce OCONVIDATA opKeith Randall2021-07-241-1/+1
* [dev.typeparams] Fix problem with 14.goDan Scales2021-07-221-0/+8
* [dev.typeparams] cmd/compile: remove ir.CallUseMatthew Dempsky2021-07-031-12/+0
* [dev.typeparams] cmd/compile: flatten OINLCALL in walkMatthew Dempsky2021-07-031-1/+13
* [dev.typeparams] cmd/compile: rename OCALLPART to OMETHVALUECuong Manh Le2021-06-271-3/+3
* [dev.typeparams] cmd/compile: add derived types and subdictionaries to dicti...Dan Scales2021-06-241-0/+5
* [dev.typeparams] cmd/compile: desugar ORECOVER into ORECOVERFPMatthew Dempsky2021-06-231-2/+6
* [dev.typeparams] cmd/compile: remove CallExpr.PreserveClosureMatthew Dempsky2021-06-231-7/+6
* [dev.typeparams] cmd/compile: refactor closure constructionMatthew Dempsky2021-06-121-0/+1
* [dev.typeparams] cmd/compile: point StructKeyExpr at the types.FieldMatthew Dempsky2021-06-041-6/+4
* [dev.typeparams] cmd/compile: allow go'd closure to escape when compiling run...Cherry Mui2021-06-041-0/+1
* [dev.typeparams] cmd/compile: add and use ir.RawOrigExprMatthew Dempsky2021-05-271-0/+14
* [dev.typeparams] cmd/compile: fix use of method values with stenciled methodsDan Scales2021-05-121-2/+7
* cmd/compile: implement unsafe.Add and unsafe.SliceMatthew Dempsky2021-05-021-1/+1