Skip to content
  1. Dec 03, 2014
    • Matt Arsenault's avatar
      Fix sphinx error from Statepoints.rst · 03f0e83d
      Matt Arsenault authored
      It was complaining it wasn't included in any toctree
      
      llvm-svn: 223254
      03f0e83d
    • Benjamin Poulain's avatar
      Fix a typo in the documentation of LTO · 78e1380a
      Benjamin Poulain authored
      Fix defininitions->definitions.
      
      Reviewed by David Blaikie.
      
      llvm-svn: 223216
      78e1380a
    • Peter Collingbourne's avatar
      Prologue support · 51d2de7b
      Peter Collingbourne authored
      Patch by Ben Gamari!
      
      This redefines the `prefix` attribute introduced previously and
      introduces a `prologue` attribute.  There are a two primary usecases
      that these attributes aim to serve,
      
        1. Function prologue sigils
      
        2. Function hot-patching: Enable the user to insert `nop` operations
           at the beginning of the function which can later be safely replaced
           with a call to some instrumentation facility
      
        3. Runtime metadata: Allow a compiler to insert data for use by the
           runtime during execution. GHC is one example of a compiler that
           needs this functionality for its tables-next-to-code functionality.
      
      Previously `prefix` served cases (1) and (2) quite well by allowing the user
      to introduce arbitrary data at the entrypoint but before the function
      body. Case (3), however, was poorly handled by this approach as it
      required that prefix data was valid executable code.
      
      Here we redefine the notion of prefix data to instead be data which
      occurs immediately before the function entrypoint (i.e. the symbol
      address). Since prefix data now occurs before the function entrypoint,
      there is no need for the data to be valid code.
      
      The previous notion of prefix data now goes under the name "prologue
      data" to emphasize its duality with the function epilogue.
      
      The intention here is to handle cases (1) and (2) with prologue data and
      case (3) with prefix data.
      
      References
      ----------
      
      This idea arose out of discussions[1] with Reid Kleckner in response to a
      proposal to introduce the notion of symbol offsets to enable handling of
      case (3).
      
      [1] http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-May/073235.html
      
      Test Plan: testsuite
      
      Differential Revision: http://reviews.llvm.org/D6454
      
      llvm-svn: 223189
      51d2de7b
  2. 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
  3. Dec 01, 2014
  4. Nov 26, 2014
  5. Nov 24, 2014
    • Philip Reames's avatar
      Clarify wording in the LangRef around !invariant.load · e1526fc2
      Philip Reames authored
      Clarify the wording around !invariant.load to properly reflect the semantics of such loads with respect to control dependence and location lifetime.  To the best of my knowledge, the revised wording respects the actual implementation and understanding of issues involved highlighted in the recent 'Optimization hints for "constant" loads' thread on LLVMDev.  
      
      In particular, I'm aiming for the following results:
      - To clarify that an invariant.load can fault and must respect control dependence.  In particular, it is not sound to unconditionally pull an invariant load out of a loop if that loop would potentially never execute.  
      - To clarify that the invariant nature of a given pointer does not preclude the modification of that location through a pointer which is unrelated to the load operand.  In particular, initializing a location and then passing a pointer through an opaque intrinsic which produces a new unrelated pointer, should behave as expected provided that the intrinsic is memory dependent on the initializing store.  
      - To clarify that storing a value to an invariant location is defined.  It can not, for example, be considered unreachable.  The value stored can be assumed to be equal to the value of any previous (or following!) invariant load, but the store itself is defined.  
      
      I recommend that anyone interested in using !invariant.load, or optimizing for them, read over the discussion in the review thread.  A number of motivating examples are discussed.
      
      Differential Revision: http://reviews.llvm.org/D6346
      
      llvm-svn: 222700
      e1526fc2
    • Sergey Dmitrouk's avatar
      Correct path to regression tests in ExtendingLLVM · c98f8bc1
      Sergey Dmitrouk authored
      llvm-svn: 222678
      c98f8bc1
  6. Nov 21, 2014
    • Hal Finkel's avatar
      Clarify the description of the noalias attribute · 12d36309
      Hal Finkel authored
      The previous description of the noalias attribute did not accurately specify
      the implemented semantics, and the terminology used differed unnecessarily
      from that used by the C specification to define the semantics of restrict. For
      the argument attribute, the semantics can be precisely specified in terms of
      objects accessed through pointers based on the arguments, and this is now what
      is done.
      
      Saying that the semantics are 'slightly weaker' than that provided by C99
      restrict is not really useful without further elaboration, so that has been
      removed from the sentence.
      
      noalias on a return value is really used to mean that the function is
      malloc-like (and, in fact, we use this attribute to represent
      __attribute__((malloc)) in Clang), and this is a stronger guarantee than that
      provided by restrict (because it is a property of the pointed-to memory region,
      not just a guarantee on object access). Clarifying this is relevant to fixing
      (and was motivated by the discussion on) PR21556.
      
      llvm-svn: 222497
      12d36309
  7. Nov 19, 2014
  8. Nov 18, 2014
  9. Nov 14, 2014
  10. Nov 10, 2014
  11. Nov 06, 2014
  12. Nov 05, 2014
  13. Nov 04, 2014
  14. Nov 02, 2014
  15. Oct 29, 2014
  16. Oct 28, 2014
  17. Oct 24, 2014
  18. Oct 22, 2014
  19. Oct 21, 2014
    • Philip Reames's avatar
      Introduce a 'nonnull' metadata on Load instructions. · cdb72f36
      Philip Reames authored
      The newly introduced 'nonnull' metadata is analogous to existing 'nonnull' attributes, but applies to load instructions rather than call arguments or returns.  Long term, it would be nice to combine these into a single construct.   The value of the load is allowed to vary between successive loads, but null is not a valid value to be loaded by any load marked nonnull.
      
      Reviewed by: Hal Finkel
      Differential Revision:  http://reviews.llvm.org/D5220
      
      llvm-svn: 220240
      cdb72f36
  20. Oct 17, 2014
  21. Oct 16, 2014
  22. Oct 14, 2014
  23. Oct 13, 2014
  24. Oct 08, 2014
    • Frederic Riss's avatar
      Update dwarf::ApplePropertyAttributes enum to meaningful values. · eea4f885
      Frederic Riss authored
      Summary:
      We currently emit an DW_AT_APPLE_property_attribute with a value that is a
      bitfield describing the various attributes applied to an ObjectiveC property.
      While trying to add testing to one of my dwarfdump patches that would pretty
      print that, I realized this information looks totally broken and has maybe
      never been correct.
      
      As with every DWARF info, we have some enum in Dwarf.h that describes this
      attribute (enum ApplePropertyAttributes). It seems however that the attribute
      value is set from another definition of these flags in Sema/DeclSpec.h (enum
      ObjCPropertyAttributeKind). And these 2 enums aren't in sync.
      
      This patch updates the Dwarf.h values to the ones we are (and have been for
      a very long time) emitting. We change some publicly (and even documented
      in SourceLevelDebugging.rst) values, but I doubt this could be an issue as
      the information has been wrong for so long...
      
      Reviewers: echristo, dblaikie, aprantl
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D5653
      
      llvm-svn: 219311
      eea4f885
  25. Oct 06, 2014
  26. Oct 04, 2014
  27. Oct 03, 2014
Loading