Skip to content
  1. Jan 10, 2019
  2. Jan 09, 2019
    • George Rimar's avatar
      [llvm-objdump] - Print symbol addressed when dumping disassembly output (-d) · 3ba0f3c0
      George Rimar authored
      When GNU objdump dumps the input with -d it prints the symbol addresses,
      for example:
      
      0000000000000031 <foo>:
        31:	00 00                	add    %al,(%rax)
      	...
      
      llvm-objdump currently does not do that.
      Patch changes the behavior to match the GNU objdump.
      
      That is useful for implementing -z/--disassemble-zeroes (D56083),
      it allows omitting first zero bytes and keep the information
      about the symbol address in the output.
      
      Differential revision: https://reviews.llvm.org/D56123
      
      llvm-svn: 350726
      3ba0f3c0
  3. Jan 08, 2019
  4. Jan 07, 2019
  5. Jan 03, 2019
  6. Jan 02, 2019
  7. Dec 30, 2018
  8. Dec 23, 2018
    • Fangrui Song's avatar
      [llvm-exegesis] Clustering: don't enqueue a point multiple times · cd93d7ef
      Fangrui Song authored
      Summary:
      SetVector uses both DenseSet and vector, which is time/memory inefficient. The points are represented as natural numbers so we can replace the DenseSet part by indexing into a vector<char> instead.
      
      Don't cargo cult the pseudocode on the wikipedia DBSCAN page. This is a standard BFS style algorithm (the similar loops have been used several times in other LLVM components): every point is processed at most once, thus the queue has at most NumPoints elements. We represent it with a vector and allocate it outside of the loop to avoid allocation in the loop body.
      
      We check `Processed[P]` to avoid enqueueing a point more than once, which also nicely saves us a `ClusterIdForPoint_[Q].isUndef()` check.
      
      Many people hate the oneshot abstraction but some favor it, therefore we make a compromise, use a lambda to abstract away the neighbor adding process.
      
      Delete the comment `assert(Neighbors.capacity() == (Points_.size() - 1));` as it is wrong.
      
      llvm-svn: 350035
      cd93d7ef
Loading