Skip to content
  1. Nov 10, 2010
  2. Nov 09, 2010
  3. Sep 24, 2010
  4. Sep 14, 2010
  5. Sep 11, 2010
  6. Sep 06, 2010
  7. Aug 06, 2010
  8. May 11, 2010
  9. Mar 22, 2010
  10. Mar 20, 2010
  11. Mar 19, 2010
  12. Jan 06, 2010
    • Duncan Sands's avatar
      Partially address a README by having functionattrs consider calls to · 78376ad7
      Duncan Sands authored
      memcpy, memset and other intrinsics that only access their arguments
      to be readnone if the intrinsic's arguments all point to local memory.
      This improves the testcase in the README to readonly, but it could in
      theory be made readnone, however this would involve more sophisticated
      analysis that looks through the memcpy.
      
      llvm-svn: 92829
      78376ad7
  13. Aug 13, 2009
  14. Aug 11, 2009
  15. Aug 06, 2009
  16. Jul 29, 2009
    • Bob Wilson's avatar
      Fix the verifier to handle intrinsics with LLVMMatchType parameters, where · 1024634d
      Bob Wilson authored
      the return type of the intrinsic is not overloaded, i.e., where the type
      being matched is some other parameter.  The argument to LLVMMatchType is
      an index into the list of overloaded types (ignoring the fixed types),
      but VerifyIntrinsicPrototype is expecting its arguments for LLVMMatchType
      parameters to be indices into the combined list of _all_ return values and
      parameters, not just the overloaded ones.
      
      This patch changes TableGen to keep track for each overloaded type of the
      corresponding index into the list of return values and parameters.  It
      then generates the values expected by VerifyIntrinsicPrototype.
      
      llvm-svn: 77467
      1024634d
  17. Jul 07, 2009
  18. Jul 03, 2009
  19. Jul 01, 2009
  20. Apr 16, 2009
    • Bob Wilson's avatar
      Fix PR3994: LLVMMatchType arguments do not refer to absolute return value · b8c370a8
      Bob Wilson authored
      and argument positions but only to the overloaded intrinsic parameters.
      Keep a separate list of these overloaded parameters in CodeGenTarget.cpp
      so they can be resolved easily.  Remove assertions from IntrinsicEmitter.cpp:
      they were harmless but confusing, and the assertions elsewhere in TableGen
      will catch any incorrect values.
      
      llvm-svn: 69316
      b8c370a8
  21. Mar 26, 2009
  22. Feb 25, 2009
  23. Feb 14, 2009
  24. Feb 05, 2009
  25. Feb 04, 2009
  26. Jan 12, 2009
  27. Jan 07, 2009
  28. Nov 13, 2008
  29. Sep 25, 2008
    • Devang Patel's avatar
      Large mechanical patch. · 4c758ea3
      Devang Patel authored
      s/ParamAttr/Attribute/g
      s/PAList/AttrList/g
      s/FnAttributeWithIndex/AttributeWithIndex/g
      s/FnAttr/Attribute/g
      
      This sets the stage 
      - to implement function notes as function attributes and 
      - to distinguish between function attributes and return value attributes.
      
      This requires corresponding changes in llvm-gcc and clang.
      
      llvm-svn: 56622
      4c758ea3
  30. Jul 30, 2008
  31. Jun 06, 2008
    • Duncan Sands's avatar
      Wrap MVT::ValueType in a struct to get type safety · 13237ac3
      Duncan Sands authored
      and better control the abstraction.  Rename the type
      to MVT.  To update out-of-tree patches, the main
      thing to do is to rename MVT::ValueType to MVT, and
      rewrite expressions like MVT::getSizeInBits(VT) in
      the form VT.getSizeInBits().  Use VT.getSimpleVT()
      to extract a MVT::SimpleValueType for use in switch
      statements (you will get an assert failure if VT is
      an extended value type - these shouldn't exist after
      type legalization).
      This results in a small speedup of codegen and no
      new testsuite failures (x86-64 linux).
      
      llvm-svn: 52044
      13237ac3
Loading