Skip to content
  1. Jul 24, 2013
  2. Jan 02, 2013
    • Chandler Carruth's avatar
      Move all of the header files which are involved in modelling the LLVM IR · 9fb823bb
      Chandler Carruth authored
      into their new header subdirectory: include/llvm/IR. This matches the
      directory structure of lib, and begins to correct a long standing point
      of file layout clutter in LLVM.
      
      There are still more header files to move here, but I wanted to handle
      them in separate commits to make tracking what files make sense at each
      layer easier.
      
      The only really questionable files here are the target intrinsic
      tablegen files. But that's a battle I'd rather not fight today.
      
      I've updated both CMake and Makefile build systems (I think, and my
      tests think, but I may have missed something).
      
      I've also re-sorted the includes throughout the project. I'll be
      committing updates to Clang, DragonEgg, and Polly momentarily.
      
      llvm-svn: 171366
      9fb823bb
  3. Dec 04, 2012
  4. Dec 03, 2012
    • Chandler Carruth's avatar
      Use the new script to sort the includes of every file under lib. · ed0881b2
      Chandler Carruth authored
      Sooooo many of these had incorrect or strange main module includes.
      I have manually inspected all of these, and fixed the main module
      include to be the nearest plausible thing I could find. If you own or
      care about any of these source files, I encourage you to take some time
      and check that these edits were sensible. I can't have broken anything
      (I strictly added headers, and reordered them, never removed), but they
      may not be the headers you'd really like to identify as containing the
      API being implemented.
      
      Many forward declarations and missing includes were added to a header
      files to allow them to parse cleanly when included first. The main
      module rule does in fact have its merits. =]
      
      llvm-svn: 169131
      ed0881b2
  5. Aug 01, 2012
  6. Jun 14, 2012
  7. Feb 17, 2012
  8. Jan 17, 2012
    • David Blaikie's avatar
      Removing unused default switch cases in switches over enums that already... · 486df738
      David Blaikie authored
      Removing unused default switch cases in switches over enums that already account for all enumeration values explicitly.
      
      (This time I believe I've checked all the -Wreturn-type warnings from GCC & added the couple of llvm_unreachables necessary to silence them. If I've missed any, I'll happily fix them as soon as I know about them)
      
      llvm-svn: 148262
      486df738
  9. Dec 30, 2011
    • Bruno Cardoso Lopes's avatar
      Improve Mips JIT. · d5b2834f
      Bruno Cardoso Lopes authored
      Implement encoder methods getJumpTargetOpValue and getBranchTargetOpValue
      for jmptarget and brtarget Mips tablegen operand types in the code emitter
      for old-style JIT. Rename the pc relative relocation for branches - new
      name is Mips::reloc_mips_pc16.
      
      Patch by Sasa Stankovic
      
      llvm-svn: 147382
      d5b2834f
  10. Nov 08, 2011
    • Bruno Cardoso Lopes's avatar
      This patch handles unaligned loads and stores in Mips JIT. Mips backend · 71133fe9
      Bruno Cardoso Lopes authored
      implements unaligned loads and stores with assembler macro-instructions
      ulw, usw, ulh, ulhu, ush, and this patch emits corresponding instructions
      instead of these macros. Since each unaligned load/store is expanded
      into two corresponding loads/stores where offset for second load/store is
      modified by +3 (for words) or +1 (for halfwords).
      
      Patch by Petar Jovanovic and Sasa Stankovic.
      
      llvm-svn: 144081
      71133fe9
  11. Oct 25, 2011
  12. Sep 14, 2011
    • Bruno Cardoso Lopes's avatar
      One more patch towards JIT support for Mips. · 483c269a
      Bruno Cardoso Lopes authored
      - Add TSFlags for the instruction formats. The idea here is to use
        as much encoding as possible from getBinaryCodeForInstr, and having
        TSFLags formats for that would make it easier to encode most part
        of the instructions (since Mips encodings are pretty straightforward)
      - Improve the mips mechanism for compilation callback
      - Add Mips specific code for invalidating the instruction cache
      - Next patch will address wrong tablegen encoding
      
      Commit msg added by my own but the patch is from Sasa Stankovic.
      
      llvm-svn: 139688
      483c269a
  13. Jul 21, 2011
Loading