Skip to content
  1. Jul 20, 2016
    • Renato Golin's avatar
      [docs] Fixing Sphinx warnings to unclog the buildbot · 124f2593
      Renato Golin authored
      Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
      the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
      doesn't even exist (nasm?).
      
      Other documents had :options: what were invalid. I only removed those that had
      warnings, and left the ones that didn't, in order to follow the principle of
      least surprise.
      
      This is like this for ages, but the buildbot is now failing on errors. It may
      take a while to upgrade the buildbot's sphinx, if that's even possible, but
      that shouldn't stop us from getting docs updates (which seem down for quite
      a while).
      
      Also, we're not losing any syntax highlight, since when it doesn't parse, it
      doesn't colour. Ie. those blocks are not being highlighted anyway.
      
      I'm trying to get all docs in one go, so that it's easy to revert later if we
      do fix, or at least easy to know what's to fix.
      
      llvm-svn: 276109
      124f2593
  2. Mar 04, 2016
  3. Feb 14, 2016
  4. Jan 20, 2016
    • Sanjoy Das's avatar
      Add a "gc-transition" operand bundle · a34ce95b
      Sanjoy Das authored
      Summary:
      This adds a new kind of operand bundle to LLVM denoted by the
      `"gc-transition"` tag.  Inputs to `"gc-transition"` operand bundle are
      lowered into the "transition args" section of `gc.statepoint` by
      `RewriteStatepointsForGC`.
      
      This removes the last bit of functionality that was unsupported in the
      deopt bundle based code path in `RewriteStatepointsForGC`.
      
      Reviewers: pgavlin, JosephTremoulet, reames
      
      Subscribers: sanjoy, mcrosier, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D16342
      
      llvm-svn: 258338
      a34ce95b
  5. Jan 15, 2016
  6. Dec 26, 2015
    • Chen Li's avatar
      [gc.statepoint] Change gc.statepoint intrinsic's return type to token type instead of i32 type · d71999ef
      Chen Li authored
      Summary: This patch changes gc.statepoint intrinsic's return type to token type instead of i32 type. Using token types could prevent LLVM to merge different gc.statepoint nodes into PHI nodes and cause further problems with gc relocations. The patch also changes the way on how gc.relocate and gc.result look for their corresponding gc.statepoint on unwind path. The current implementation uses the selector value extracted from a { i8*, i32 } landingpad as a hook to find the gc.statepoint, while the patch directly uses a token type landingpad (http://reviews.llvm.org/D15405) to find the gc.statepoint. 
      
      Reviewers: sanjoy, JosephTremoulet, pgavlin, igor-laevsky, mjacob
      
      Subscribers: reames, mjacob, sanjoy, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D15662
      
      llvm-svn: 256443
      d71999ef
  7. Sep 12, 2015
  8. Aug 27, 2015
    • Philip Reames's avatar
      [docs][Statepoints] More on base pointers · ca22b869
      Philip Reames authored
      Expand the information on base pointers to include an example, the assumptions a collector is allowed to make, legal optimizations over gc.relocates, and the assumptions made by RewriteStatepointsForGC.  This is the result of a recent conversation with folks from LLIC and the confusions that came to light therein. 
      
      llvm-svn: 246103
      ca22b869
  9. Aug 26, 2015
  10. Aug 05, 2015
  11. Jul 29, 2015
    • Sanjoy Das's avatar
      [Statepoints] Let patchable statepoints have a symbolic call target. · cfe41f05
      Sanjoy Das authored
      Summary:
      As added initially, statepoints required their call targets to be a
      constant pointer null if ``numPatchBytes`` was non-zero.  This turns out
      to be a problem ergonomically, since there is no way to mark patchable
      statepoints as calling a (readable) symbolic value.
      
      This change remove the restriction of requiring ``null`` call targets
      for patchable statepoints, and changes PlaceSafepoints to maintain the
      symbolic call target through its transformation.
      
      Reviewers: reames, swaroop.sridhar
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D11550
      
      llvm-svn: 243502
      cfe41f05
  12. Jul 16, 2015
  13. May 13, 2015
    • Sanjoy Das's avatar
      [Statepoints][Docs] Fix a couple of out of date examples. · 6d9da4b2
      Sanjoy Das authored
      Things I had missed in r237285.
      
      llvm-svn: 237290
      6d9da4b2
    • Sanjoy Das's avatar
      [Statepoints][Docs] Fix typo: change a period to a comma. · dc4932fb
      Sanjoy Das authored
      llvm-svn: 237289
      dc4932fb
    • Sanjoy Das's avatar
      [PlaceSafepoints] New attributes for patchable statepoints. · ba74e645
      Sanjoy Das authored
      Summary:
      This patch teaches the PlaceSafepoints pass about two `CallSite`
      function attributes:
      
       * "statepoint-id": if the string value of this attribute can be parsed
         as an integer, then it is propagated to the ID parameter of the
         statepoint created.
      
       * "statepoint-num-patch-bytes": if the string value of this attribute
         can be parsed as an integer, then it is propagated to the `num patch
         bytes` parameter of the statepoint created.
      
      This change intentionally does not assert on a malformed value for these
      attributes, given that they're not "official" attributes.
      
      Reviewers: reames, pgavlin
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D9735
      
      llvm-svn: 237286
      ba74e645
    • Sanjoy Das's avatar
      [PlaceSafepoints] Update docs for r237214. · 9158274a
      Sanjoy Das authored
      Show the two new ID and NumPatchBytes fields in the PlaceSafepoint
      examples in Statepoints.rst to avoid confusion.
      
      llvm-svn: 237285
      9158274a
    • Sanjoy Das's avatar
      [Statepoints] Support for "patchable" statepoints. · a1d39ba9
      Sanjoy Das authored
      Summary:
      This change adds two new parameters to the statepoint intrinsic, `i64 id`
      and `i32 num_patch_bytes`.  `id` gets propagated to the ID field
      in the generated StackMap section.  If the `num_patch_bytes` is
      non-zero then the statepoint is lowered to `num_patch_bytes` bytes of
      nops instead of a call (the spill and reload code remains unchanged).
      A non-zero `num_patch_bytes` is useful in situations where a language
      runtime requires complete control over how a call is lowered.
      
      This change brings statepoints one step closer to patchpoints.  With
      some additional work (that is not part of this patch) it should be
      possible to get rid of `TargetOpcode::STATEPOINT` altogether.
      
      PlaceSafepoints generates `statepoint` wrappers with `id` set to
      `0xABCDEF00` (the old default value for the ID reported in the stackmap)
      and `num_patch_bytes` set to `0`.  This can be made more sophisticated
      later.
      
      Reviewers: reames, pgavlin, swaroop.sridhar, AndyAyers
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D9546
      
      llvm-svn: 237214
      a1d39ba9
  14. May 12, 2015
  15. May 08, 2015
    • Pat Gavlin's avatar
      Fix a docs build break introduced by rL236888. · 7afaed28
      Pat Gavlin authored
      llvm-svn: 236891
      7afaed28
    • Pat Gavlin's avatar
      Extend the statepoint intrinsic to allow statepoints to be marked as... · cc0431d1
      Pat Gavlin authored
      Extend the statepoint intrinsic to allow statepoints to be marked as transitions from GC-aware code to code that is not GC-aware.
      
      This changes the shape of the statepoint intrinsic from:
      
        @llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 unused, ...call args, i32 # deopt args, ...deopt args, ...gc args)
      
      to:
      
        @llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 flags, ...call args, i32 # transition args, ...transition args, i32 # deopt args, ...deopt args, ...gc args)
      
      This extension offers the backend the opportunity to insert (somewhat) arbitrary code to manage the transition from GC-aware code to code that is not GC-aware and back.
      
      In order to support the injection of transition code, this extension wraps the STATEPOINT ISD node generated by the usual lowering lowering with two additional nodes: GC_TRANSITION_START and GC_TRANSITION_END. The transition arguments that were passed passed to the intrinsic (if any) are lowered and provided as operands to these nodes and may be used by the backend during code generation.
      
      Eventually, the lowering of the GC_TRANSITION_{START,END} nodes should be informed by the GC strategy in use for the function containing the intrinsic call; for now, these nodes are instead replaced with no-ops.
      
      Differential Revision: http://reviews.llvm.org/D9501
      
      llvm-svn: 236888
      cc0431d1
  16. Feb 26, 2015
  17. Feb 25, 2015
  18. Jan 22, 2015
  19. Jan 02, 2015
  20. Dec 04, 2014
  21. Dec 02, 2014
    • Philip Reames's avatar
      [Statepoints 4/4] Statepoint infrastructure for garbage collection: Documentation · f6123226
      Philip Reames authored
      This is the fourth and final patch in the statepoint series.  It contains the documentation for the statepoint intrinsics and their usage.  
      
      There's definitely still room to improve the documentation here, but I wanted to get this landed so it was available for others.  There will likely be a series of small cleanup changes over the next few weeks as we work to clarify and revise the documentation.  If you have comments or questions, please feel free to discuss them either in this commit thread, the original review thread, or on llvmdev.  Comments are more than welcome.
      
      Reviewed by: atrick, ributzka
      Differential Revision: http://reviews.llvm.org/D5683
      
      llvm-svn: 223143
      f6123226
Loading