Skip to content
  1. Nov 15, 2018
    • JF Bastien's avatar
      CGDecl::emitStoresForConstant fix synthesized constant's name · 3a881e6b
      JF Bastien authored
      Summary: The name of the synthesized constants for constant initialization was using mangling for statics, which isn't generally correct and (in a yet-uncommitted patch) causes the mangler to assert out because the static ends up trying to mangle function parameters and this makes no sense. Instead, mangle to `"__const." + FunctionName + "." + DeclName`.
      
      Reviewers: rjmccall
      
      Subscribers: dexonsmith, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D54055
      
      llvm-svn: 346915
      3a881e6b
  2. Feb 13, 2018
  3. Feb 08, 2018
  4. Jan 19, 2018
    • Daniel Neilson's avatar
      Change memcpy/memove/memset to have dest and source alignment attributes (Step 1). · 6e938eff
      Daniel Neilson authored
      Summary:
        Upstream LLVM is changing the the prototypes of the @llvm.memcpy/memmove/memset
      intrinsics. This change updates the Clang tests for this change.
      
        The @llvm.memcpy/memmove/memset intrinsics currently have an explicit argument
      which is required to be a constant integer. It represents the alignment of the
      dest (and source), and so must be the minimum of the actual alignment of the
      two.
      
       This change removes the alignment argument in favour of placing the alignment
      attribute on the source and destination pointers of the memory intrinsic call.
      
       For example, code which used to read:
         call void @llvm.memcpy.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 100, i32 4, i1 false)
      will now read
         call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %dest, i8* align 4 %src, i32 100, i1 false)
      
       At this time the source and destination alignments must be the same (Step 1).
      Step 2 of the change, to be landed shortly, will relax that contraint and allow
      the source and destination to have different alignments.
      
      llvm-svn: 322964
      6e938eff
  5. Oct 31, 2016
Loading