Skip to content
  1. Feb 28, 2013
  2. Feb 26, 2013
  3. Feb 21, 2013
  4. Feb 20, 2013
  5. Feb 19, 2013
  6. Feb 15, 2013
  7. Feb 14, 2013
  8. Feb 12, 2013
  9. Feb 04, 2013
    • Evgeniy Stepanov's avatar
      More MSan/ASan annotations. · 1f5a7149
      Evgeniy Stepanov authored
      This change lets us bootstrap LLVM/Clang under ASan and MSan. It contains
      fixes for 2 issues:
      
      - X86JIT reads return address from stack, which MSan does not know is
        initialized.
      - bugpoint tests run binaries with RLIMIT_AS. This does not work with certain
        Sanitizers.
      
      We are no longer including config.h in Compiler.h with this change.
      
      llvm-svn: 174306
      1f5a7149
  10. Jan 31, 2013
    • Tim Northover's avatar
      Add AArch64 as an experimental target. · e0e3aefd
      Tim Northover authored
      This patch adds support for AArch64 (ARM's 64-bit architecture) to
      LLVM in the "experimental" category. Currently, it won't be built
      unless requested explicitly.
      
      This initial commit should have support for:
          + Assembly of all scalar (i.e. non-NEON, non-Crypto) instructions
            (except the late addition CRC instructions).
          + CodeGen features required for C++03 and C99.
          + Compilation for the "small" memory model: code+static data <
            4GB.
          + Absolute and position-independent code.
          + GNU-style (i.e. "__thread") TLS.
          + Debugging information.
      
      The principal omission, currently, is performance tuning.
      
      This patch excludes the NEON support also reviewed due to an outbreak of
      batshit insanity in our legal department. That will be committed soon bringing
      the changes to precisely what has been approved.
      
      Further reviews would be gratefully received.
      
      llvm-svn: 174054
      e0e3aefd
    • Evgeniy Stepanov's avatar
      Annotate BumpPtrAllocator for MemorySanitizer. · 130fdcd2
      Evgeniy Stepanov authored
      This change adds MemorySanitizer annotations to BumpPtrAllocator to
      improve report quality.
      
      llvm-svn: 174051
      130fdcd2
  11. Jan 30, 2013
  12. Jan 28, 2013
    • Edwin Vane's avatar
      Fix gcc/printf/ISO C++ warning · 44338e00
      Edwin Vane authored
      Remove the use of the 't' length modifier to avoid a gcc warning. Based
      on usage, 32 bits of precision is good enough for printing a stack
      offset for a stack trace.
      
      't' length modifier isn't in C++03 but it *is* in C++11. Added a FIXME
      to reintroduce once LLVM makes the switch to C++11.
      
      Reviewer: gribozavr
      llvm-svn: 173711
      44338e00
  13. Jan 25, 2013
  14. Jan 22, 2013
    • Eli Bendersky's avatar
      Initial patch for x32 ABI support. · 0893e107
      Eli Bendersky authored
      Add the x32 environment kind to the triple, and separate the concept of
      pointer size and callee save stack slot size, since they're not equal
      on x32.
      
      llvm-svn: 173175
      0893e107
    • Tim Northover's avatar
      Make APFloat constructor require explicit semantics. · 29178a34
      Tim Northover authored
      Previously we tried to infer it from the bit width size, with an added
      IsIEEE argument for the PPC/IEEE 128-bit case, which had a default
      value. This default value allowed bugs to creep in, where it was
      inappropriate.
      
      llvm-svn: 173138
      29178a34
  15. Jan 18, 2013
  16. Jan 16, 2013
    • Peter Collingbourne's avatar
      Introduce llvm::sys::getProcessTriple() function. · a51c6ed6
      Peter Collingbourne authored
      In r143502, we renamed getHostTriple() to getDefaultTargetTriple()
      as part of work to allow the user to supply a different default
      target triple at configure time.  This change also affected the JIT.
      However, it is inappropriate to use the default target triple in the
      JIT in most circumstances because this will not necessarily match
      the current architecture used by the process, leading to illegal
      instruction and other such errors at run time.
      
      Introduce the getProcessTriple() function for use in the JIT and
      its clients, and cause the JIT to use it.  On architectures with a
      single bitness, the host and process triples are identical.  On other
      architectures, the host triple represents the architecture of the
      host CPU, while the process triple represents the architecture used
      by the host CPU to interpret machine code within the current process.
      For example, when executing 32-bit code on a 64-bit Linux machine,
      the host triple may be 'x86_64-unknown-linux-gnu', while the process
      triple may be 'i386-unknown-linux-gnu'.
      
      This fixes JIT for the 32-on-64-bit (and vice versa) build on non-Apple
      platforms.
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D254
      
      llvm-svn: 172627
      a51c6ed6
  17. Jan 14, 2013
  18. Jan 13, 2013
  19. Jan 11, 2013
  20. Jan 10, 2013
  21. Jan 09, 2013
  22. Jan 08, 2013
Loading