Skip to content
  1. Nov 22, 2007
  2. Nov 21, 2007
    • Duncan Sands's avatar
      Fix a bug in which node A is replaced by node B, but later · b87dde7e
      Duncan Sands authored
      node A gets back into the DAG again because it was hiding in
      one of the node maps: make sure that node replacement happens
      in those maps too.
      
      llvm-svn: 44263
      b87dde7e
    • Nick Lewycky's avatar
      typo · 1d6f1962
      Nick Lewycky authored
      llvm-svn: 44262
      1d6f1962
    • Dale Johannesen's avatar
      Fix compiler warning. · e70850cf
      Dale Johannesen authored
      llvm-svn: 44261
      e70850cf
    • Chuck Rose III's avatar
      This change does a couple of things. First it gets the Visual Studio builds working. · 07b57d26
      Chuck Rose III authored
      I added the lexing files to the VStudio projects and removed the .l files from the 
      VStudio projects.  There was a problem with use of strtoll in TGLexer.cpp and Chris
      suggested switching to strtol, so that's included here.
      
      Additionally, this checkin adds minimal x64 builds to the VStudio builds.  Build issues
      related to x64 in the windows specific files for DynamicLibrary.inc and Singals.inc
      are worked around, but not ultimately solved.  Binaries used to be stored in
      
      ...\win32\{Debug|Release}
      
      but are now kept in
      
      ...\win32\bin\{win32|x64}\{Debug|Release}
      
      intermediate files will continue to be stored in the individual project directories under 
      win32.  
      
      Some names will likely change in the future to reflect that the vstudio projects
      are no longer 32-bit only, but I wanted to get things up and running today so kept away
      from bigger restructuring.
      
      llvm-svn: 44260
      07b57d26
    • Dale Johannesen's avatar
      Fix .eh table linkage issues on Darwin. Some EH support · 763e110a
      Dale Johannesen authored
      for Darwin PPC, but it's not fully working yet.
      
      llvm-svn: 44258
      763e110a
  3. Nov 20, 2007
  4. Nov 19, 2007
  5. Nov 18, 2007
  6. Nov 17, 2007
    • Nate Begeman's avatar
      Add support for vectors to int <-> float casts. · d4d45c26
      Nate Begeman authored
      llvm-svn: 44204
      d4d45c26
    • Dale Johannesen's avatar
      Remove indeterminism from a loop. We think this will · 7d976624
      Dale Johannesen authored
      fix an occasional nonrepeatable bootstrap failure we've
      been seeing on Darwin.
      
      llvm-svn: 44202
      7d976624
    • Dale Johannesen's avatar
      Fix denormal check in float->APInt conversion. · 06a10df5
      Dale Johannesen authored
      PR 1804.
      
      llvm-svn: 44201
      06a10df5
    • Evan Cheng's avatar
      Live interval splitting: · 8e223793
      Evan Cheng authored
      When a live interval is being spilled, rather than creating short, non-spillable
      intervals for every def / use, split the interval at BB boundaries. That is, for
      every BB where the live interval is defined or used, create a new interval that
      covers all the defs and uses in the BB.
      
      This is designed to eliminate one common problem: multiple reloads of the same
      value in a single basic block. Note, it does *not* decrease the number of spills
      since no copies are inserted so the split intervals are *connected* through
      spill and reloads (or rematerialization). The newly created intervals can be
      spilled again, in that case, since it does not span multiple basic blocks, it's
      spilled in the usual manner. However, it can reuse the same stack slot as the
      previously split interval.
      
      This is currently controlled by -split-intervals-at-bb.
      
      llvm-svn: 44198
      8e223793
  7. Nov 16, 2007
  8. Nov 15, 2007
Loading