Skip to content
  1. Mar 29, 2012
  2. Mar 28, 2012
    • Chandler Carruth's avatar
      Move the emission of strict enum range metadata behind a flag (the same · 8b4140d7
      Chandler Carruth authored
      flag as GCC uses: -fstrict-enums). There is a *lot* of code making
      unwarranted assumptions about the underlying type of enums, and it
      doesn't seem entirely reasonable to eagerly break all of it.
      
      Much more importantly, the current state of affairs is *very* good at
      optimizing based upon this information, which causes failures that are
      very distant from the actual enum. Before we push for enabling this by
      default, I think we need to implement -fcatch-undefined-behavior support
      for instrumenting and trapping whenever we store or load a value outside
      of the range. That way we can track down the misbehaving code very
      quickly.
      
      I discussed this with Rafael, and currently the only important cases he
      is aware of are the bool range-based optimizations which are staying
      hard enabled. We've not seen any issue with those either, and they are
      much more important for performance.
      
      llvm-svn: 153550
      8b4140d7
  3. Mar 24, 2012
  4. Mar 22, 2012
    • Chandler Carruth's avatar
      Relax the FileCheck assertions in this test a touch. Previously the test · 13332ee5
      Chandler Carruth authored
      relied on an artifact of how the inliner and subsequent passes in
      clang's -O3 mode happen to treat basic blocks and the labels for the
      basic blocks. In my work on the inliner, and changed this fundamental
      assumption, and the label that was being checked on the entry basic
      block will no longer appear in opt builds. There was no reason to expect
      the label to always be present anyways, much to my regret.
      
      I've changed the test to just ensure that we return an immediate
      constant. If there are intervening instructions, that's bad, but not
      really that relevant to the test.
      
      I'd love it if others have a better way of checking that a function body
      contains only a 'ret' instruction that isn't dependent on whether or not
      the entry block receives a label...
      
      llvm-svn: 153243
      13332ee5
  5. Mar 21, 2012
    • John McCall's avatar
      For the annals of subtle but terrible bugs: fix a longstanding bug · b6c4a7ef
      John McCall authored
      in vtable layout where virtual methods inherited from virtual bases
      could be assigned the same vcall adjustment slot if they shared
      a name and parameter signature but differed in their
      cv-qualification.  The code was already trying to handle this
      case, but unfortunately used the ordinary type qualifiers
      (which are always empty here) instead of the method qualifiers.
      This seems like something that the API should discourage, but
      I don't know how to carry that principle out in this instance.
      
      Eliminate this function's need for an ASTContext while we're at it.
      
      This bug affects the ABI, and fixing it brings us into accord with
      the Itanium ABI (and GCC's implementation of it), but, obviously,
      technically breaks full compatibility with previous releases of Clang.
      Just letting you know.
      
      llvm-svn: 153168
      b6c4a7ef
  6. Mar 20, 2012
  7. Mar 17, 2012
  8. Mar 16, 2012
  9. Mar 14, 2012
  10. Mar 13, 2012
  11. Mar 10, 2012
  12. Mar 09, 2012
  13. Mar 08, 2012
  14. Mar 07, 2012
    • Richard Smith's avatar
      AST representation for user-defined literals, plus just enough of semantic · c67fdd4e
      Richard Smith authored
      analysis to make the AST representation testable. They are represented by a
      new UserDefinedLiteral AST node, which is a sugared CallExpr. All semantic
      properties, including full CodeGen support, are achieved for free by this
      representation.
      
      UserDefinedLiterals can never be dependent, so no custom instantiation
      behavior is required. They are mangled as if they were direct calls to the
      underlying literal operator. This matches g++'s apparent behavior (but not its
      actual mangling, which is broken for literal-operator-ids).
      
      User-defined *string* literals are now fully-operational, but the semantic
      analysis is quite hacky and needs more work. No other forms of user-defined
      literal are created yet, but the AST support for them is present.
      
      This patch committed after midnight because we had already hit the quota for
      new kinds of literal yesterday.
      
      llvm-svn: 152211
      c67fdd4e
    • Richard Smith's avatar
      Don't even try to directly emit the value of a DeclRefExpr if that declaration · 8c029611
      Richard Smith authored
      is not usable in a constant expression. ~2.5% speedup on 403.gcc / combine.c.
      
      llvm-svn: 152193
      8c029611
  15. Mar 05, 2012
  16. Mar 04, 2012
  17. Mar 03, 2012
  18. Mar 02, 2012
  19. Mar 01, 2012
  20. Feb 29, 2012
Loading