Skip to content
  1. Jul 13, 2010
  2. Jul 07, 2010
    • Duncan Sands's avatar
      Rename "Release" builds as "Release+Asserts"; rename "Release-Asserts" · 408bb192
      Duncan Sands authored
      builds to "Release".  The default build is unchanged (optimization on,
      assertions on), however it is now called Release+Asserts.  The intent
      is that future LLVM releases released via llvm.org will be Release builds
      in the new sense, i.e. will have assertions disabled (currently they have
      assertions enabled, for a more than 20% slowdown).  This will bring them
      in line with MacOS releases, which ship with assertions disabled.  It also
      means that "Release" now means the same things in make and cmake builds:
      cmake already disables assertions for "Release" builds AFAICS.
      
      llvm-svn: 107758
      408bb192
  3. Jun 28, 2010
  4. Jun 22, 2010
  5. Jun 18, 2010
  6. Jun 15, 2010
  7. Jun 08, 2010
  8. Jun 01, 2010
  9. May 16, 2010
  10. May 10, 2010
  11. May 01, 2010
  12. Apr 30, 2010
  13. Apr 24, 2010
  14. Apr 19, 2010
  15. Apr 17, 2010
  16. Apr 16, 2010
  17. Apr 15, 2010
  18. Apr 03, 2010
  19. Mar 17, 2010
  20. Mar 16, 2010
    • Bob Wilson's avatar
      --- Reverse-merging r98637 into '.': · 1b4e8cc6
      Bob Wilson authored
      U    test/CodeGen/ARM/tls2.ll
      U    test/CodeGen/ARM/arm-negative-stride.ll
      U    test/CodeGen/ARM/2009-10-30.ll
      U    test/CodeGen/ARM/globals.ll
      U    test/CodeGen/ARM/str_pre-2.ll
      U    test/CodeGen/ARM/ldrd.ll
      U    test/CodeGen/ARM/2009-10-27-double-align.ll
      U    test/CodeGen/Thumb2/thumb2-strb.ll
      U    test/CodeGen/Thumb2/ldr-str-imm12.ll
      U    test/CodeGen/Thumb2/thumb2-strh.ll
      U    test/CodeGen/Thumb2/thumb2-ldr.ll
      U    test/CodeGen/Thumb2/thumb2-str_pre.ll
      U    test/CodeGen/Thumb2/thumb2-str.ll
      U    test/CodeGen/Thumb2/thumb2-ldrh.ll
      U    utils/TableGen/TableGen.cpp
      U    utils/TableGen/DisassemblerEmitter.cpp
      D    utils/TableGen/RISCDisassemblerEmitter.h
      D    utils/TableGen/RISCDisassemblerEmitter.cpp
      U    Makefile.rules
      U    lib/Target/ARM/ARMInstrNEON.td
      U    lib/Target/ARM/Makefile
      U    lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
      U    lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
      U    lib/Target/ARM/AsmPrinter/ARMInstPrinter.h
      D    lib/Target/ARM/Disassembler
      U    lib/Target/ARM/ARMInstrFormats.td
      U    lib/Target/ARM/ARMAddressingModes.h
      U    lib/Target/ARM/Thumb2ITBlockPass.cpp
      
      llvm-svn: 98640
      1b4e8cc6
    • Johnny Chen's avatar
      Initial ARM/Thumb disassembler check-in. It consists of a tablgen backend · 3d9327bd
      Johnny Chen authored
      (RISCDisassemblerEmitter) which emits the decoder functions for ARM and Thumb,
      and the disassembler core which invokes the decoder function and builds up the
      MCInst based on the decoded Opcode.
      
      Added sub-formats to the NeonI/NeonXI instructions to further refine the NEONFrm
      instructions to help disassembly.
      
      We also changed the output of the addressing modes to omit the '+' from the
      assembler syntax #+/-<imm> or +/-<Rm>.  See, for example, A8.6.57/58/60.
      
      And modified test cases to not expect '+' in +reg or #+num.  For example,
      
      ; CHECK:       ldr.w	r9, [r7, #28]
      
      llvm-svn: 98637
      3d9327bd
  21. Mar 10, 2010
  22. Mar 04, 2010
  23. Feb 25, 2010
  24. Feb 23, 2010
  25. Feb 18, 2010
    • Jeffrey Yasskin's avatar
    • Jeffrey Yasskin's avatar
      Add a shared library for LLVM, named libLLVM2.7svn.(so|dylib), and add an · f750fefa
      Jeffrey Yasskin authored
      --enable-shared configure flag to have the tools linked shared. (2.7svn is just
      $(LLVMVersion) so it'll change to "2.7" in the release.)  Always link the
      example programs shared to test that the shared library keeps working.
      
      On my mac laptop, Debug libLLVM2.7svn.dylib is 39MB, and opt (for example) is
      16M static vs 440K shared.
      
      Two things are less than ideal here:
      1) The library doesn't include any version information. Since we expect to break
      the ABI with every release, this shouldn't be much of a problem. If we do
      release a compatible 2.7.1, we may be able to hack its library to work with
      binaries compiled against 2.7.0, or we can just ask them to recompile. I'm
      hoping to get a real packaging expert to look at this for the 2.8 release.
      2) llvm-config doesn't yet have an option to print link options for the shared
      library. I'll add this as a subsequent patch.
      
      llvm-svn: 96559
      f750fefa
  26. Jan 29, 2010
Loading