Skip to content
  1. Dec 01, 2016
    • Sean Silva's avatar
      Add `isRelExprOneOf` helper · 2eed7592
      Sean Silva authored
      In various places in LLD's hot loops, we have expressions of the form
      "E == R_FOO || E == R_BAR || ..." (E is a RelExpr).
      
      Some of these expressions are quite long, and even though they usually go just
      a very small number of ways and so should be well predicted, they can still
      occupy branch predictor resources harming other parts of the code, or they
      won't be predicted well if they overflow branch predictor resources or if the
      branches are too dense and the branch predictor can't track them all (the
      compiler can in theory avoid this, at a cost in text size). And some of these
      expressions are so large and executed so frequently that even when
      well-predicted they probably still have a nontrivial cost.
      
      This speedup should be pretty portable. The cost of these simple bit tests is
      independent of:
      
      - the target we are linking for
      - the distribution of RelExpr's for a given link (which can depend on how the
        input files were compiled)
      - what compiler was used to compile LLD (it is just a simple bit test;
        hopefully the compiler gets it right!)
      - adding new target-dependent relocations (e.g. needsPlt doesn't pay any extra
        cost checking R_PPC_PLT_OPD on x86-64 builds)
      
      I did some rough measurements on clang-fsds and this patch gives over about 4%
      speedup for a regular -O1 link, about 2.5% for -O3 --gc-sections and over 5%
      for -O0. Sorry, I don't have my current machine set up for doing really
      accurate measurements right now.
      
      This also is just a bit cleaner. Thanks for Joerg for suggesting for
      this approach.
      
      Differential Revision: https://reviews.llvm.org/D27156
      
      llvm-svn: 288314
      2eed7592
    • Rui Ueyama's avatar
      Simplify ScriptParser. · 10091b0a
      Rui Ueyama authored
       - Rename currentBuffer -> getCurrentMB to start it with verb.
       - Simplify containsString.
       - Add llvm_unreachable at end of getCurrentMB.
      
      llvm-svn: 288310
      10091b0a
    • Rui Ueyama's avatar
      Do not name a variable Ret which is not a return value. · 3cd22d31
      Rui Ueyama authored
      llvm-svn: 288309
      3cd22d31
    • Rui Ueyama's avatar
      Make get{Line,Column}Number members of StringParser. · b5f1c3ec
      Rui Ueyama authored
      This patch also renames currentLocation getCurrentLocation.
      
      llvm-svn: 288308
      b5f1c3ec
    • Rui Ueyama's avatar
      Split getPos into getLineNumber and getColumnNumber. · 50fb8274
      Rui Ueyama authored
      llvm-svn: 288306
      50fb8274
    • Rui Ueyama's avatar
      Dump Codeview type information correctly. · c5cb7375
      Rui Ueyama authored
      llvm-svn: 288298
      c5cb7375
  2. Nov 30, 2016
    • Rui Ueyama's avatar
      Change how we manage groups in ICF. · 9dedfb1f
      Rui Ueyama authored
      Previously, on each iteration in ICF, we scan the entire vector of
      input sections to find boundaries of groups having the same ID.
      
      This patch changes the algorithm so that we now have a vector of ranges.
      Each range contains a starting index and an ending index of the group.
      So we no longer have to search boundaries on each iteration.
      
      Performance-wise, this seems neutral. Instead of searching boundaries,
      we now have to maintain ranges. But I think this is more readable
      than the previous implementation.
      
      Moreover, this makes easy to parallelize the main loop of ICF,
      which I'll do in a follow-up patch.
      
      llvm-svn: 288228
      9dedfb1f
  3. Nov 29, 2016
  4. Nov 28, 2016
  5. Nov 27, 2016
  6. Nov 26, 2016
Loading