Skip to content
  1. Dec 30, 2012
  2. Dec 23, 2012
  3. Dec 22, 2012
    • Nadav Rotem's avatar
      In some cases, due to scheduling constraints we copy the EFLAGS. · d5aae980
      Nadav Rotem authored
      The only way to read the eflags is using push and pop. If we don't
      adjust the stack then we run over the first frame index. This is
      not something that we want to do, so we have to make sure that
      our machine function does not copy the flags. If it does then
      we have to emit the prolog that adjusts the stack.
      
      rdar://12896831
      
      llvm-svn: 170961
      d5aae980
  4. Dec 20, 2012
  5. Dec 19, 2012
  6. 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
  7. Oct 25, 2012
  8. Oct 15, 2012
  9. Oct 11, 2012
  10. Oct 09, 2012
  11. Oct 08, 2012
  12. Oct 04, 2012
  13. Oct 03, 2012
  14. Oct 02, 2012
  15. Sep 26, 2012
  16. Jul 16, 2012
    • Chad Rosier's avatar
      With r160248 in place this code is no longer needed. · 10e8207c
      Chad Rosier authored
      llvm-svn: 160293
      10e8207c
    • Alexey Samsonov's avatar
      This CL changes the function prologue and epilogue emitted on X86 when stack needs realignment. · dcc1291d
      Alexey Samsonov authored
      It is intended to fix PR11468.
      
      Old prologue and epilogue looked like this:
      push %rbp
      mov %rsp, %rbp
      and $alignment, %rsp
      push %r14
      push %r15
      ...
      pop %r15
      pop %r14
      mov %rbp, %rsp
      pop %rbp
      
      The problem was to reference the locations of callee-saved registers in exception handling:
      locations of callee-saved had to be re-calculated regarding the stack alignment operation. It would
      take some effort to implement this in LLVM, as currently MachineLocation can only have the form
      "Register + Offset". Funciton prologue and epilogue are now changed to:
      
      push %rbp
      mov %rsp, %rbp
      push %14
      push %15
      and $alignment, %rsp
      ...
      lea -$size_of_saved_registers(%rbp), %rsp
      pop %r15
      pop %r14
      pop %rbp
      
      Reviewed by Chad Rosier.
      
      llvm-svn: 160248
      dcc1291d
  17. Jul 10, 2012
  18. Jul 05, 2012
  19. Jun 22, 2012
    • Jakob Stoklund Olesen's avatar
      Functions calling __builtin_eh_return must have a frame pointer. · 321d41a8
      Jakob Stoklund Olesen authored
      The code in X86TargetLowering::LowerEH_RETURN() assumes that a frame
      pointer exists, but the frame pointer was forced by the presence of
      llvm.eh.unwind.init which isn't guaranteed.
      
      If llvm.eh.unwind.init is actually required in functions calling
      eh.return (is it?), we should diagnose that instead of emitting bad
      machine code.
      
      This should fix the dragonegg-x86_64-linux-gcc-4.6-test bot.
      
      llvm-svn: 158961
      321d41a8
  20. Jun 18, 2012
    • Chandler Carruth's avatar
      Temporarily revert r158087. · 2cc11fd8
      Chandler Carruth authored
      This patch causes problems when both dynamic stack realignment and
      dynamic allocas combine in the same function. With this patch, we no
      longer build the epilog correctly, and silently restore registers from
      the wrong position in the stack.
      
      Thanks to Matt for tracking this down, and getting at least an initial
      test case to Chad. I'm going to try to check a variation of that test
      case in so we can easily track the fixes required.
      
      llvm-svn: 158654
      2cc11fd8
  21. Jun 06, 2012
  22. Jun 02, 2012
    • Jakob Stoklund Olesen's avatar
      Switch all register list clients to the new MC*Iterator interface. · 54038d79
      Jakob Stoklund Olesen authored
      No functional change intended.
      
      Sorry for the churn. The iterator classes are supposed to help avoid
      giant commits like this one in the future. The TableGen-produced
      register lists are getting quite large, and it may be necessary to
      change the table representation.
      
      This makes it possible to do so without changing all clients (again).
      
      llvm-svn: 157854
      54038d79
  23. May 24, 2012
  24. May 01, 2012
  25. Mar 04, 2012
  26. Feb 18, 2012
  27. Feb 07, 2012
  28. Jan 20, 2012
  29. Jan 13, 2012
  30. Jan 12, 2012
Loading