aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/noder
AgeCommit message (Expand)Author
2021-09-20cmd/link: generate DIE for types referenced only through dictionariesAlessandro Arzilli
2021-09-20cmd/compile: delay all transforms for generic funcs/methodsDan Scales
2021-09-20cmd/compile: fix transform.AssignOp to deal with tricky caseDan Scales
2021-09-17cmd/compile: delay transformAssign if lhs/rhs have typeparamDan Scales
2021-09-17cmd/compile/internal/noder: hide TestUnifiedCompare behind -cmp flagMatthew Dempsky
2021-09-16cmd/compile: fixing writebarrier.go for -G=3wdvxdr
2021-09-15cmd/compile: remove unneeded early transforms, with dictionary changeDan Scales
2021-09-15cmd/compile: switch to computing dict format on instantiated functionsDan Scales
2021-09-15cmd/compile: emit DWARF info about dictionary entriesAlessandro Arzilli
2021-09-09cmd/compile: fix implement for closure in a global assignmentkorzhao
2021-09-09cmd/compile: fix case where init info of OAS node is droppedDan Scales
2021-09-09go/types, types2: rename RParams -> RecvTypeParamsRobert Findley
2021-09-09cmd/compile: stenciled conversions might be NOPsKeith Randall
2021-09-09cmd/compile: fix unified IR panic when expanding nested inline functionCuong Manh Le
2021-09-09cmd/compile: fix wrong instantiated type for embedded receiverCuong Manh Le
2021-09-09cmd/compile: remove 'ext' fields from unified IR reader/writer typesMatthew Dempsky
2021-09-09cmd/compile: simplify value coding for unified IRMatthew Dempsky
2021-09-09cmd/compile: extrapolate $GOROOT in unified IRMatthew Dempsky
2021-09-08go/types, types2: add Environment to ConfigRobert Griesemer
2021-09-08cmd/compile/internal/types2: spell out 'Type' in type parameter APIsRobert Griesemer
2021-09-08cmd/compile/internal/types2: move NewTypeParam off of CheckerRobert Griesemer
2021-09-08cmd/compile/internal/types2: implement deduplication of instances using the E...Robert Griesemer
2021-09-07cmd/compile: add CONVIFACE nodes needed in generic code due to assignmentsDan Scales
2021-09-07cmd/compile: make sure imported instantiated types have their methods createdDan Scales
2021-09-07cmd/compile: fix lazy loading in reader2Matthew Dempsky
2021-09-07cmd/compile: make sure that the names created for instantiated type are the samekorzhao
2021-09-06cmd/compile: fix delay transformation in *subster.node()korzhao
2021-09-02cmd/compile: use types2.Unsafe to represent package unsafe in gcimportsCuong Manh Le
2021-09-02cmd/compile: allow objStub from unsafe packageCuong Manh Le
2021-09-01cmd/compile: optimize unified IR handling of imported functionsMatthew Dempsky
2021-09-01cmd/compile: emit unified IR wrappers after inliningMatthew Dempsky
2021-09-01cmd/compile: remove useless fcountLeonard Wang
2021-09-01cmd/compile: fix irgen mis-handling invalid function declarationCuong Manh Le
2021-09-01cmd/compile: assign results of transformAssign back to source locationKeith Randall
2021-09-01cmd/compile: fix missing case for shape double-check functionDan Scales
2021-08-31cmd/compile: fix handling of Defn field during stencilingDan Scales
2021-08-31cmd/compile: make unified IR more selective about method wrappersMatthew Dempsky
2021-08-30cmd/compile: fix bug with Inferred targsDan Scales
2021-08-30cmd/compile: fix error when revcType is ptr in selectorExprkorzhao
2021-08-27cmd/compile: use Type.OrigSym getter/setters [generated]Matthew Dempsky
2021-08-27cmd/compile: unexport Type.Width and Type.Align [generated]Matthew Dempsky
2021-08-27cmd/compile: fix stenciling of conversions between interfacesKeith Randall
2021-08-27cmd/compile: delay fillinMethods to deal with mutually-recursive typesDan Scales
2021-08-27cmd/compile: add types.RecalcSizeMatthew Dempsky
2021-08-26cmd/compile: move types init code into package typesMatthew Dempsky
2021-08-26cmd/compile: fix reference to generic type needed by crawlerDan Scales
2021-08-26cmd/compile: unexport Type.VargenMatthew Dempsky
2021-08-26cmd/compile: change typecheck.iscmp into ir.Op.IsCmpMatthew Dempsky
2021-08-25cmd/compile: always accept 1.18 syntax but complain if not 1.18Robert Griesemer
2021-08-25cmd/compile: fix stencil call expression.wdvxdr