1. 23 Aug, 2018 4 commits
    • Martin Möhrmann's avatar
      cmd/compile: add convnop helper function · c5d38b89
      Martin Möhrmann authored
      Like the conv helper function but for creating OCONVNOP nodes
      instead of OCONV nodes.
      
      passes toolstash -cmp
      
      Change-Id: Ib93ffe66590ebaa2b4fa552c81f1a2902e789d8e
      Reviewed-on: https://go-review.googlesource.com/112597
      Run-TryBot: Martin Möhrmann <moehrmann@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarJosh Bleecher Snyder <josharian@gmail.com>
      c5d38b89
    • Yury Smolsky's avatar
      cmd/compile: add sources for inlined functions to ssa.html · 9e2a04d5
      Yury Smolsky authored
      This CL adds the source code of all inlined functions
      into the function specified in $GOSSAFUNC.
      The code is appended to the sources column of ssa.html.
      
      ssaDumpInlined is populated with references to inlined functions.
      Then it is used for dumping the sources in buildssa.
      
      The source columns contains code in following order:
      target function, inlined functions sorted by filename, lineno.
      
      Fixes #25904
      
      Change-Id: I4f6d4834376f1efdfda1f968a5335c0543ed36bc
      Reviewed-on: https://go-review.googlesource.com/126606
      Run-TryBot: Yury Smolsky <yury@smolsky.by>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarKeith Randall <khr@golang.org>
      9e2a04d5
    • Yury Smolsky's avatar
      cmd/compile: export the Func.Endlineno field · c374984e
      Yury Smolsky authored
      This CL exports the Func.Endlineno value for inlineable functions.
      It is needed to grab the source code of an imported function
      inlined into the function specified in $GOSSAFUNC.
      
      See CL 126606 for details.
      
      Updates #25904
      
      Change-Id: I1e259e20445e4109b4621a95abb5bde1be457af1
      Reviewed-on: https://go-review.googlesource.com/126605
      Run-TryBot: Yury Smolsky <yury@smolsky.by>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarKeith Randall <khr@golang.org>
      c374984e
    • Yury Smolsky's avatar
      cmd/compile: clean the output of GOSSAFUNC · c35069d6
      Yury Smolsky authored
      Since we print almost everything to ssa.html in the GOSSAFUNC mode,
      there is a need to stop spamming stdout when user just wants to see
      ssa.html.
      
      This changes cleans output of the GOSSAFUNC debug mode.
      To enable the dump of the debug data to stdout, one must
      put suffix + after the function name like that:
      
      GOSSAFUNC=Foo+
      
      Otherwise gc will not print the IR and ASM to stdout after each phase.
      AST IR is still sent to stdout because it is not included
      into ssa.html. It will be fixed in a separate change.
      
      The change adds printing out the full path to the ssa.html file.
      
      Updates #25942
      
      Change-Id: I711e145e05f0443c7df5459ca528dced273a62ee
      Reviewed-on: https://go-review.googlesource.com/126603
      Run-TryBot: Yury Smolsky <yury@smolsky.by>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarKeith Randall <khr@golang.org>
      c35069d6
  2. 22 Aug, 2018 36 commits