Skip to content
  1. Aug 23, 2010
  2. Aug 19, 2010
  3. Aug 06, 2010
  4. Aug 05, 2010
  5. Jun 19, 2010
    • Evan Cheng's avatar
      Allow ARM if-converter to be run after post allocation scheduling. · 2d51c7c5
      Evan Cheng authored
      - This fixed a number of bugs in if-converter, tail merging, and post-allocation
        scheduler. If-converter now runs branch folding / tail merging first to
        maximize if-conversion opportunities.
      - Also changed the t2IT instruction slightly. It now defines the ITSTATE
        register which is read by instructions in the IT block.
      - Added Thumb2 specific hazard recognizer to ensure the scheduler doesn't
        change the instruction ordering in the IT block (since IT mask has been
        finalized). It also ensures no other instructions can be scheduled between
        instructions in the IT block.
      
      This is not yet enabled.
      
      llvm-svn: 106344
      2d51c7c5
  6. May 18, 2010
  7. May 14, 2010
  8. Apr 15, 2010
  9. Apr 13, 2010
  10. Apr 08, 2010
  11. Feb 09, 2010
  12. Jan 05, 2010
    • Jakob Stoklund Olesen's avatar
      Remove livein checks from machine code verifier. · 4cb7702c
      Jakob Stoklund Olesen authored
      A phi operand that is implicitly defined in a predecessor becomes an undefined
      register after phi elimination. This causes a lot of false positives when the
      verifier is checking if live-in registers are live-out from all predecessors.
      
      Removing the verifier checks seems like a better solution than insisting on
      IMPLICIT_DEF instructions in predecessor blocks.
      
      llvm-svn: 92769
      4cb7702c
  13. Dec 22, 2009
  14. Dec 05, 2009
  15. Nov 20, 2009
  16. Nov 18, 2009
  17. Nov 13, 2009
  18. Oct 31, 2009
    • Dan Gohman's avatar
      Make -print-machineinstrs more readable. · 34341e69
      Dan Gohman authored
       - Be consistent when referring to MachineBasicBlocks: BB#0.
       - Be consistent when referring to virtual registers: %reg1024.
       - Be consistent when referring to unknown physical registers: %physreg10.
       - Be consistent when referring to known physical registers: %RAX
       - Be consistent when referring to register 0: %reg0
       - Be consistent when printing alignments: align=16
       - Print jump table contents.
       - Don't print host addresses, in general.
       - and various other cleanups.
      
      llvm-svn: 85682
      34341e69
  19. Oct 25, 2009
  20. Oct 07, 2009
  21. Oct 04, 2009
  22. Sep 23, 2009
    • Jakob Stoklund Olesen's avatar
      Fix verification of explicit operands. · 75b9c274
      Jakob Stoklund Olesen authored
      The machine code verifier did not check for explicit operands correctly. It
      used MachineInstr::getNumExplicitOperands, but that method may cheat and use
      the declared count in the TargetInstrDesc.
      
      Now we check the explicit operands one at a time in visitMachineOperand.
      
      llvm-svn: 82652
      75b9c274
  23. Sep 21, 2009
  24. Aug 27, 2009
  25. Aug 23, 2009
  26. Aug 13, 2009
  27. Aug 08, 2009
    • Jakob Stoklund Olesen's avatar
      Clean out per-function data after the machine code verifier is done with it. · dcf009ca
      Jakob Stoklund Olesen authored
      Also don't dereference old pointers after they have been deleted causing
      random crashes when enabling the machine code verifier.
      
      Ahem...
      
      I have not included a test case for the crash. It hapened when enabling the
      verifier on CodeGen/X86/2009-08-06-branchfolder-crash.ll.
      
      The crash depends on an MBB being allocated at the same address as a
      previously deleted MBB. I don't think that can be reproduced reliably.
      
      llvm-svn: 78472
      dcf009ca
Loading