Skip to content
  1. Aug 25, 2010
  2. Aug 23, 2010
  3. Aug 22, 2010
  4. Aug 21, 2010
    • Argyrios Kyrtzidis's avatar
      Fix an issue with writing to PCH another included PCH, introduced by the... · d32ee89e
      Argyrios Kyrtzidis authored
      Fix an issue with writing to PCH another included PCH, introduced by the "using an AST on-disk hash table for name lookup" commit.
      
      When including a PCH and later re-emitting to another PCH, the name lookup tables of DeclContexts
      may be incomplete, since we now lazily deserialize the visible decls of a particular name.
      Fix the issue by iterating over the un-deserialized visible decls and completing the lookup tables
      of DeclContexts before writing them out.
      
      llvm-svn: 111698
      d32ee89e
  5. Aug 20, 2010
    • Fariborz Jahanian's avatar
      objective-c ivar refactoring patch. Iterations · a50b3a20
      Fariborz Jahanian authored
      over ivars for a varienty of puposes is now
      consolidated into two small routines; DeepCollectObjCIvars
      and ShallowCollectObjCIvars. 
      
      llvm-svn: 111679
      a50b3a20
    • Argyrios Kyrtzidis's avatar
      Use the AST on-disk hash table for name lookup inside a DeclContext. · ba88bfab
      Argyrios Kyrtzidis authored
      *Huge* improvement over the amount of deserializing that we do for C++ lookup.
      e.g, if he have the Carbon header precompiled and include it on a file containing this:
      
      int x;
      
      these are the before/after stats:
      
      BEFORE:
      
      *** AST File Statistics:
        578 stat cache hits
        4 stat cache misses
        548/30654 source location entries read (1.787695%)
        15907/16501 types read (96.400223%)
        53525/59955 declarations read (89.275291%)
        33993/43525 identifiers read (78.099945%)
        41516/51891 statements read (80.006165%)
        77/5317 macros read (1.448185%)
        0/6335 lexical declcontexts read (0.000000%)
        1/5424 visible declcontexts read (0.018437%)
      
      AFTER using the on-disk table:
      
      *** AST File Statistics:
        578 stat cache hits
        4 stat cache misses
        548/30654 source location entries read (1.787695%)
        10/16501 types read (0.060602%)
        9/59955 declarations read (0.015011%)
        161/43525 identifiers read (0.369902%)
        20/51891 statements read (0.038542%)
        6/5317 macros read (0.112846%)
        0/6335 lexical declcontexts read (0.000000%)
        2/5424 visible declcontexts read (0.036873%)
      
      There's only one issue affecting mostly the precompiled preambles which I will address soon.
      
      llvm-svn: 111636
      ba88bfab
    • John McCall's avatar
      Regularize the API for accessing explicit template arguments. · b3774b5c
      John McCall authored
      llvm-svn: 111584
      b3774b5c
  6. Aug 19, 2010
    • Eli Friedman's avatar
      Fix for PR7911 and PR7921: make isIntegralOrEnumerationType return false · 4202c345
      Eli Friedman authored
      for incomplete enum types.  An incomplete enum can't really be treated as
      an "integral or enumeration" type, and the incorrect treatment leads to
      bad behavior for many callers.
      
      This makes isIntegralOrEnumerationType equivalent to isIntegerType; I think
      we should globally replace the latter with the former; thoughts?
      
      llvm-svn: 111512
      4202c345
    • Charles Davis's avatar
      Add some enum goodness as requested by Chris. Now instead of storing the · 6bcb07ad
      Charles Davis authored
      active C++ ABI as a raw string, we store it as an enum. This should improve
      performance somewhat.
      
      And yes, this time, I started from a clean build directory, and
      all the tests passed. :)
      
      llvm-svn: 111507
      6bcb07ad
    • John McCall's avatar
      Restore the build · 1ed01824
      John McCall authored
      llvm-svn: 111498
      1ed01824
    • Charles Davis's avatar
      Add a special RecordLayoutBuilder for the Microsoft C++ ABI. · c2c576a9
      Charles Davis authored
      All it does right now is add space for two vtable pointers instead of one
      when a class has both virtual methods and virtual bases. This is a requirement
      of the Microsoft ABI, since it has separate vtables for methods and bases. Other
      stuff will come up over time, but we'll cross those bridges when we get to
      them.
      
      llvm-svn: 111493
      c2c576a9
    • Alexis Hunt's avatar
      Generate Attr subclasses with TableGen. · dcfba7b3
      Alexis Hunt authored
      Now all classes derived from Attr are generated from TableGen.
      Additionally, Attr* is no longer its own linked list; SmallVectors or
      Attr* are used. The accompanying LLVM commit contains the updates to
      TableGen necessary for this.
      
      Some other notes about newly-generated attribute classes:
      
       - The constructor arguments are a SourceLocation and a Context&,
         followed by the attributes arguments in the order that they were
         defined in Attr.td
      
       - Every argument in Attr.td has an appropriate accessor named getFoo,
         and there are sometimes a few extra ones (such as to get the length
         of a variadic argument).
      
      Additionally, specific_attr_iterator has been introduced, which will
      iterate over an AttrVec, but only over attributes of a certain type. It
      can be accessed through either Decl::specific_attr_begin/end or
      the global functions of the same name.
      
      llvm-svn: 111455
      dcfba7b3
  7. Aug 18, 2010
  8. Aug 17, 2010
  9. Aug 16, 2010
  10. Aug 15, 2010
  11. Aug 14, 2010
  12. Aug 13, 2010
  13. Aug 12, 2010
  14. Aug 11, 2010
  15. Aug 10, 2010
  16. Aug 09, 2010
    • Sebastian Redl's avatar
      - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for... · ab6a0883
      Sebastian Redl authored
      - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition.
      - Eagerly create ObjCInterfaceTypes for declarations.
      - The two above changes lead to a 0.5% increase in memory use and no speed regression when parsing Cocoa.h. On the other hand, now chained PCH works when there's a forward declaration in one PCH and the interface definition in another.
      - Add HandleInterestingDecl to ASTConsumer. PCHReader passes the "interesting" decls it finds to this function instead of HandleTopLevelDecl. The default implementation forwards to HandleTopLevelDecl, but ASTUnit's handler for example ignores them. This fixes a potential crash when lazy loading of PCH data would cause ASTUnit's "top level" declaration collection to change while being iterated.
      
      llvm-svn: 110610
      ab6a0883
    • John Thompson's avatar
      Added vecreturn attribute parsing. · cdb847ba
      John Thompson authored
      llvm-svn: 110609
      cdb847ba
Loading