Skip to content
  1. Dec 23, 2008
    • Ted Kremenek's avatar
      PTH: Remove some methods and simplify some conditions in PTHLexer::Lex(). No... · 78cc2473
      Ted Kremenek authored
      PTH: Remove some methods and simplify some conditions in PTHLexer::Lex().  No big functionality change.
      
      llvm-svn: 61381
      78cc2473
    • Ted Kremenek's avatar
      PTH: Use 3 bytes instead of 4 bytes to encode the persistent ID for a token. · a754c403
      Ted Kremenek authored
      - This reduces the PTH size for Cocoa.h by 7%.
      - The increases PTH -Eonly speed for Cocoa.h by 0.8%.
      
      llvm-svn: 61377
      a754c403
    • Ted Kremenek's avatar
      3f94706e
    • Sebastian Redl's avatar
      Merge pr-3188.cpp into constructor.cpp. · ccd251b8
      Sebastian Redl authored
      llvm-svn: 61370
      ccd251b8
    • Chris Lattner's avatar
      Add a setter for CVR qualifiers, patch by Lukasz Janyst! · 68a1b9a1
      Chris Lattner authored
      llvm-svn: 61367
      68a1b9a1
    • Ted Kremenek's avatar
      PTH: · 1bd0a550
      Ted Kremenek authored
      - Encode the token length with 2 bytes instead of 4.
      - This reduces the size of the .pth file for Cocoa.h by 12%.
      - This speeds up PTH time (-Eonly) on Cocoa.h by 1.6%.
      
      llvm-svn: 61364
      1bd0a550
    • Ted Kremenek's avatar
      PTH: · 66076a96
      Ted Kremenek authored
      - In PTHLexer::Lex read all of the token data from PTH file before
        constructing the token.  The idea is to enhance locality.
      - Do not use Read8/Read32 in PTHLexer::Lex.  Inline these operations manually.
      - Change PTHManager::ReadIdentifierInfo() to PTHManager::GetIdentifierInfo().
        They are functionally the same except that PTHLexer::Lex() reads the
        persistent id.
      
      These changes result in a 3.3% speedup for PTH on Cocoa.h (-Eonly).
      
      llvm-svn: 61363
      66076a96
    • Ted Kremenek's avatar
      PTH: · 1b18ad24
      Ted Kremenek authored
      - Embed 'eom' tokens in PTH file.
      - Use embedded 'eom' tokens to not lazily generate them in the PTHLexer.
        This means that PTHLexer can always advance to the next token after
        reading a token (instead of buffering tokens using a copy).
      - Moved logic of 'ReadToken' into Lex.  GetToken & ReadToken no longer exist.
      - These changes result in a 3.3% speedup (-Eonly) on Cocoa.h.
      - The code is a little gross.  Many cleanups are possible and should be done.
      
      llvm-svn: 61360
      1b18ad24
    • Douglas Gregor's avatar
      Add some block-pointer conversions in C++ · 033f56d5
      Douglas Gregor authored
      llvm-svn: 61359
      033f56d5
    • Douglas Gregor's avatar
      Don't explicitly represent OverloadedFunctionDecls within · 55297ac4
      Douglas Gregor authored
      DeclContext. Instead, just keep the list of currently-active
      declarations and only build the OverloadedFunctionDecl when we
      absolutely need it.
      
      This is a half-step toward eliminating the need to explicitly build
      OverloadedFunctionDecls that store sets of overloaded
      functions. This was suggested by Argiris a while back, and it's a good
      thing for several reasons: first, it eliminates the messy logic that
      currently tries to keep the OverloadedFunctionDecl in sync with the 
      declarations that are being added. Second, it will (eventually)
      eliminate the need to allocate memory for overload sets, which could
      help performance. Finally, it helps set us up for when name lookup can
      return multiple (possibly ambiguous) results, as can happen with
      lookup of class members in C++.
      
      Next steps: make the IdentifierResolver store overloads as separate
      entries in its list rather than replacing them with an
      OverloadedFunctionDecl now, then see how far we can go toward
      eliminating OverloadedFunctionDecl entirely.
      
      llvm-svn: 61357
      55297ac4
    • Fariborz Jahanian's avatar
      More encoding support; in this case, encoding of · daef00bc
      Fariborz Jahanian authored
      outer-most const of pointer types.
      
      llvm-svn: 61355
      daef00bc
  2. Dec 22, 2008
  3. Dec 21, 2008
Loading