Skip to content
  1. Jan 12, 2017
    • Petr Hosek's avatar
      Revert "[CMake][libcxx] Check that we have libcxxabi before using it" · 8c6ac285
      Petr Hosek authored
      This reverts commit 8c91834411b322ab360eb1f193f489327e719652.
      
      llvm-svn: 291726
      8c6ac285
    • Davide Italiano's avatar
      [NewGVN] Fixup store count for the `initial` congruency class. · eac05f6b
      Davide Italiano authored
      It was always zero. When we move a store from `initial` to its
      own congruency class, we end up with a negative store count, which
      is obviously wrong.
      Also, while here, change StoreCount to be signed so that the assertions
      actually fire.
      
      Ack'ed by Daniel Berlin.
      
      llvm-svn: 291725
      eac05f6b
    • Zachary Turner's avatar
      [CodeView] Finish decoupling TypeDatabase from TypeDumper. · 629cb7d8
      Zachary Turner authored
      Previously the type dumper itself was passed around to a lot of different
      places and manipulated in ways that were more appropriate on the type
      database. For example, the entire TypeDumper was passed into the symbol
      dumper, when all the symbol dumper wanted to do was lookup the name of a
      TypeIndex so it could print it. That's what the TypeDatabase is for --
      mapping type indices to names.
      
      Another example is how if the user runs llvm-pdbdump with the option to
      dump symbols but not types, we still have to visit all types so that we
      can print minimal information about the type of a symbol, but just without
      dumping full symbol records. The way we did this before is by hacking it
      up so that we run everything through the type dumper with a null printer,
      so that the output goes to /dev/null. But really, we don't need to dump
      anything, all we want to do is build the type database. Since
      TypeDatabaseVisitor now exists independently of TypeDumper, we can do
      this. We just build a custom visitor callback pipeline that includes a
      database visitor but not a dumper.
      
      All the hackery around printers etc goes away. After this patch, we could
      probably even delete the entire CVTypeDumper class since really all it is
      at this point is a thin wrapper that hides the details of how to build a
      useful visitation pipeline. It's not a priority though, so CVTypeDumper
      remains for now.
      
      After this patch we will be able to easily plug in a different style of
      type dumper by only implementing the proper visitation methods to dump
      one-line output and then sticking it on the pipeline.
      
      Differential Revision: https://reviews.llvm.org/D28524
      
      llvm-svn: 291724
      629cb7d8
    • Petr Hosek's avatar
      [CMake][libcxx] Check that we have libcxxabi before using it · 7e35ee4b
      Petr Hosek authored
      When doing standalone build, check that we actually have libcxxabi
      before attempting to use it.
      
      Differential Revision: https://reviews.llvm.org/D28580
      
      llvm-svn: 291723
      7e35ee4b
    • Petr Hosek's avatar
      [CMake][compiler-rt] Mark libcxx build for tsan as standalone · d7e4ed3b
      Petr Hosek authored
      This is to ensure that the libcxx build is properly configured.
      
      Differential Revision: https://reviews.llvm.org/D28579
      
      llvm-svn: 291722
      d7e4ed3b
    • Peter Collingbourne's avatar
      X86: Remove dead code. NFC. · 1b5f1cfd
      Peter Collingbourne authored
      llvm-svn: 291721
      1b5f1cfd
  2. Jan 11, 2017
Loading