Skip to content
  1. Jul 16, 2013
  2. Jul 15, 2013
    • Manman Ren's avatar
      Machine Verifier: verify FrameSetup and FrameDestroy · aa6875b1
      Manman Ren authored
      1> on every path through the CFG, a FrameSetup <n> is always followed by a
         FrameDestroy <n> and a FrameDestroy is always followed by a FrameSetup.
      2> stack adjustments are identical on all CFG edges to a merge point.
      3> frame is destroyed at end of a return block.
      
      PR16393
      
      llvm-svn: 186350
      aa6875b1
    • Rafael Espindola's avatar
      Remove an extra is_directory call. · 8ea26d6a
      Rafael Espindola authored
      I checked that opening a directory on windows does fail, so this saves a "stat".
      
      llvm-svn: 186345
      8ea26d6a
    • Hal Finkel's avatar
      Fix register subclass handling in PPCInstrInfo::insertSelect · 8e8618ae
      Hal Finkel authored
      PPCInstrInfo::insertSelect and PPCInstrInfo::canInsertSelect were computing the
      common subclass of the true and false inputs, and then selecting either the
      32-bit or the 64-bit isel variant based on the result of calling
      PPC::GPRCRegClass.hasSubClassEq(RC) and PPC::G8RCRegClass.hasSubClassEq(RC)
      (where RC is the common subclass). Unfortunately, this is not quite right: if
      we have something like this:
      
        %vreg8<def> = SELECT_CC_I8 %vreg4<kill>, %vreg7<kill>, %vreg6<kill>, 76;
          G8RC_and_G8RC_NOX0:%vreg8 CRRC:%vreg4 G8RC_NOX0:%vreg7,%vreg6
      
      then the common subclass of G8RC_and_G8RC_NOX0 and G8RC_NOX0 is G8RC_NOX0, and
      G8RC_NOX0 is not a subclass of G8RC (because it also contains the ZERO8
      pseudo-register). As a result, we also need to check the common subclass
      against GPRC_NOR0 and G8RC_NOX0 explicitly.
      
      This had not been a problem for clients of insertSelect that called
      canInsertSelect first (because it had a compensating mistake), but insertSelect
      is also used by the PPC pseudo-instruction expander, and this error was causing
      a problem in that context.
      
      This problem was found by csmith.
      
      llvm-svn: 186343
      8e8618ae
    • Reid Kleckner's avatar
      [mc-coff] Resolve aliases when emitting COFF relocations · dae7b4e4
      Reid Kleckner authored
      This is consistent with the ELF object writer.
      
      Add some COFF tests that relocate against an alias.
      
      Reviewers: espindola
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D1079
      
      llvm-svn: 186341
      dae7b4e4
    • Tom Stellard's avatar
    • Hal Finkel's avatar
      Remove invalid assert in DAGTypeLegalizer::RemapValue · 2f5e8e3d
      Hal Finkel authored
      There is a comment at the top of DAGTypeLegalizer::PerformExpensiveChecks
      which, in part, says:
      
        // Note that these invariants may not hold momentarily when processing a node:
        // the node being processed may be put in a map before being marked Processed.
      
      Unfortunately, this assert would be valid only if the above-mentioned invariant
      held unconditionally. This was causing llc to assert when, in fact,
      everything was fine.
      
      Thanks to Richard Sandiford for investigating this issue!
      
      Fixes PR16562.
      
      llvm-svn: 186338
      2f5e8e3d
    • Stephen Lin's avatar
      Remove trailing whitespace · 837bba1c
      Stephen Lin authored
      llvm-svn: 186333
      837bba1c
Loading