Skip to content
Snippets Groups Projects
  1. Jun 06, 2012
    • Jordan Rose's avatar
      Add pedantic warning -Wempty-translation-unit (C11 6.9p1). · d73ef135
      Jordan Rose authored
      In standard C since C89, a 'translation-unit' is syntactically defined to have
      at least one "external-declaration", which is either a decl or a function
      definition. In Clang the latter gives us a declaration as well.
      
      The tricky bit about this warning is that our predefines can contain external
      declarations (__builtin_va_list and the 128-bit integer types). Therefore our
      AST parser now makes sure we have at least one declaration that doesn't come
      from the predefines buffer.
      
      Also, remove bogus warning about empty source files. This doesn't catch source
      files that only contain comments, and never fired anyway because of our
      predefines.
      
      PR12665 and <rdar://problem/9165548>
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158085 91177308-0d34-0410-b5e6-96231b3b80d8
      d73ef135
  2. Jun 02, 2012
  3. Apr 03, 2012
  4. Mar 16, 2012
    • Axel Naumann's avatar
      From Vassil Vassilev: · e55329d6
      Axel Naumann authored
      Enable incremental parsing by the Preprocessor,
      where more code can be provided after an EOF.
      It mainly prevents the tearing down of the topmost lexer.
      To be used like this:
      PP.enableIncrementalProcessing();
      while (getMoreSource()) {
        while (Parser.ParseTopLevelDecl(ADecl)) {...}
      }
      PP.enableIncrementalProcessing(false);
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152914 91177308-0d34-0410-b5e6-96231b3b80d8
      e55329d6
  5. Mar 11, 2012
  6. Mar 05, 2012
  7. Mar 01, 2012
  8. Feb 25, 2012
  9. Feb 07, 2012
  10. Feb 05, 2012
  11. Feb 04, 2012
  12. Jan 30, 2012
  13. Jan 29, 2012
  14. Jan 05, 2012
  15. Jan 04, 2012
  16. Jan 03, 2012
  17. Jan 01, 2012
  18. Dec 03, 2011
  19. Dec 02, 2011
  20. Dec 01, 2011
    • Douglas Gregor's avatar
      Introduce the notion of name visibility into modules. For a given · 5e356937
      Douglas Gregor authored
      (sub)module, all of the names may be hidden, just the macro names may
      be exposed (for example, after the preprocessor has seen the import of
      the module but the parser has not), or all of the names may be
      exposed. Importing a module makes its names, and the names in any of
      its non-explicit submodules, visible to name lookup (transitively).
      
      This commit only introduces the notion of name visible and marks
      modules and submodules as visible when they are imported. The actual
      name-hiding logic in the AST reader will follow (along with test cases).
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145586 91177308-0d34-0410-b5e6-96231b3b80d8
      5e356937
  21. Nov 30, 2011
  22. Nov 23, 2011
  23. Oct 27, 2011
    • Douglas Gregor's avatar
      Make the loading of information attached to an IdentifierInfo from an · eee242ff
      Douglas Gregor authored
      AST file more lazy, so that we don't eagerly load that information for
      all known identifiers each time a new AST file is loaded. The eager
      reloading made some sense in the context of precompiled headers, since
      very few identifiers were defined before PCH load time. With modules,
      however, a huge amount of code can get parsed before we see an
      @import, so laziness becomes important here.
      
      The approach taken to make this information lazy is fairly simple:
      when we load a new AST file, we mark all of the existing identifiers
      as being out-of-date. Whenever we want to access information that may
      come from an AST (e.g., whether the identifier has a macro definition,
      or what top-level declarations have that name), we check the
      out-of-date bit and, if it's set, ask the AST reader to update the
      IdentifierInfo from the AST files. The update is a merge, and we now
      take care to merge declarations before/after imports with declarations
      from multiple imports.
      
      The results of this optimization are fairly dramatic. On a small
      application that brings in 14 non-trivial modules, this takes modules
      from being > 3x slower than a "perfect" PCH file down to 30% slower
      for a full rebuild. A partial rebuild (where the PCH file or modules
      can be re-used) is down to 7% slower. Making the PCH file just a
      little imperfect (e.g., adding two smallish modules used by a bunch of
      .m files that aren't in the PCH file) tips the scales in favor of the
      modules approach, with 24% faster partial rebuilds.
      
      This is just a first step; the lazy scheme could possibly be improved
      by adding versioning, so we don't search into modules we already
      searched. Moreover, we'll need similar lazy schemes for all of the
      other lookup data structures, such as DeclContexts.
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143100 91177308-0d34-0410-b5e6-96231b3b80d8
      eee242ff
  24. Oct 11, 2011
  25. Oct 03, 2011
  26. Sep 26, 2011
  27. Sep 19, 2011
  28. Sep 16, 2011
  29. Sep 08, 2011
    • Douglas Gregor's avatar
      Optimize the preprocessor's handling of the __import_module__ · b8db7cd9
      Douglas Gregor authored
      keyword. We now handle this keyword in HandleIdentifier, making a note
      for ourselves when we've seen the __import_module__ keyword so that
      the next lexed token can trigger a module import (if needed). This
      greatly simplifies Preprocessor::Lex(), and completely erases the 5.5%
      -Eonly slowdown Argiris noted when I originally implemented
      __import_module__. Big thanks to Argiris for noting that horrible
      regression!
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139265 91177308-0d34-0410-b5e6-96231b3b80d8
      b8db7cd9
  30. Sep 04, 2011
  31. Sep 02, 2011
  32. Sep 01, 2011
  33. Aug 31, 2011
Loading