Skip to content
  1. Jan 28, 2013
  2. Jan 27, 2013
  3. Jan 26, 2013
    • David Blaikie's avatar
      PR14566: Debug Info: avoid top level lexical blocks in functions · 0a21d0da
      David Blaikie authored
      One of the gotchas (see changes to CodeGenFunction) was due to the fix in
      r139416 (for PR10829). This only worked previously because the top level
      lexical block would set the location to the end of the function, the debug
      location would be updated (as per r139416), the location would be set to
      the end of the function again (but that would no-op, since it was the same
      as the previous location), then the return instruction would be emitted using
      the debug location.
      
      Once the top level lexical block was no longer emitted, the end-of-function
      location change was causing the debug loc to be updated, regressing that bug.
      
      llvm-svn: 173593
      0a21d0da
    • Fariborz Jahanian's avatar
      patch for PR9027 and // rdar://11861085 · 7865220d
      Fariborz Jahanian authored
      Title: [PR9027] volatile struct bug: member is not loaded at -O;
      This is caused by last flag passed to @llvm.memcpy being false, 
      not honoring that aggregate has at least one 'volatile' data member 
      (even though aggregate itself has not been qualified as 'volatile'. 
      As a result, optimization optimizes away the memcpy altogether.
      Patch review by John MaCall (I still need to fix up a test though).
      
      llvm-svn: 173535
      7865220d
    • John McCall's avatar
      ARM says that the array cookie should always be eight bytes. · c19c7066
      John McCall authored
      ARM is not thinking about over-aligned structures.
      Overrule ARM in both our generic-ARM and iOS ABI implementations.
      
      llvm-svn: 173531
      c19c7066
    • John McCall's avatar
      Move the decision about the kind of CGCXXABI to make inside · 5762592b
      John McCall authored
      the family-specific files.
      
      llvm-svn: 173530
      5762592b
  4. Jan 25, 2013
  5. Jan 24, 2013
  6. Jan 23, 2013
  7. Jan 22, 2013
    • John McCall's avatar
      Use the correct field to copy/dispose a __block variable. · f593b10d
      John McCall authored
      We were previously hard-coding a particular field index.  This was
      fine before (because we were obviously guaranteed the presence
      of a copy/dispose member) except for (1) alignment padding and
      (2) future extensions adding extra members to the header, such
      as the extended-layout pointer.
      
      Note that we only introduce the extended-layout pointer in the
      presence of structs.  (We also seem to be introducing it even
      in the presence of an all-non-object layout, but that's a
      different potential issue.)
      
      llvm-svn: 173122
      f593b10d
  8. Jan 21, 2013
  9. Jan 20, 2013
  10. Jan 19, 2013
  11. Jan 18, 2013
  12. Jan 17, 2013
  13. Jan 16, 2013
  14. Jan 15, 2013
    • David Greene's avatar
      Fix Const Cast · 0a528db9
      David Greene authored
      Do proper casting to avoid a cast-away-const error.
      
      llvm-svn: 172559
      0a528db9
  15. Jan 14, 2013
    • Michael Gottesman's avatar
      Multiprecision subtraction builtins. · a2b5c4ba
      Michael Gottesman authored
      We lower these into 2x chained usub.with.overflow intrinsics.
      
      llvm-svn: 172476
      a2b5c4ba
    • Douglas Gregor's avatar
      Topologically sort the link options generated for modules based on · bc25ff46
      Douglas Gregor authored
      module-import dependencies, so we'll get the link order correct for
      those silly linkers that need it.
      
      llvm-svn: 172459
      bc25ff46
    • Douglas Gregor's avatar
      When forming the link options for an imported module, also include the · 1715a2f9
      Douglas Gregor authored
      link options for the modules it imports.
      
      llvm-svn: 172448
      1715a2f9
    • Douglas Gregor's avatar
      Switch autolinking metadata format over to actual linker options, e.g., · ea02f265
      Douglas Gregor authored
        !0 = metadata !{metadata !"-lautolink"}
        !1 = metadata !{metadata !"-framework", metadata !"autolink_framework"}
      
      referenced from llvm.module.linkoptions, e.g.,
      
        !llvm.module.linkoptions = !{!0, !1, !2, !3}
      
      This conceptually moves the logic for figuring out the syntax the
      linker will accept from LLVM into Clang. Moreover, it makes it easier
      to support MSVC's
      
        #pragma comment(linker, "some option")
      
      in the future, should anyone care to do so.
      
      llvm-svn: 172441
      ea02f265
    • Bill Schmidt's avatar
      This patch addresses varargs processing for small complex types under · 924c4788
      Bill Schmidt authored
      the 64-bit PowerPC ELF ABI.
      
      The ABI requires that the real and imaginary parts of a complex argument
      each occupy their own doubleword.  Arguments smaller than 8 bytes are
      right-adjusted within the doubleword.
      
      Clang expects EmitVAARG() to return a pointer to a structure in which
      the real and imaginary parts are packed adjacently in memory.  To accomplish
      this, we generate code to load the code appropriately from the varargs
      location and pack the values into a temporary variable in the form Clang
      expects, returning a pointer to that structure.
      
      The test case demonstrates correct code generation for all "small" complex
      types on PPC64:  int, short, char, and float.
      
      llvm-svn: 172438
      924c4788
Loading