Skip to content
  1. Jul 11, 2017
  2. Jul 10, 2017
    • Sam Clegg's avatar
      [WebAssembly] Add more details to llvm-readobj for wasm files · 14612fbf
      Sam Clegg authored
      Differential Revision: https://reviews.llvm.org/D35208
      
      llvm-svn: 307588
      14612fbf
    • Zachary Turner's avatar
      Resubmit "Add pdb-diff test." · a9d944fd
      Zachary Turner authored
      This was originally reverted because of two issues.
        1) Printing ANSI color escape codes even when outputting to
           a file
        2) Module name comparisons were failing when comparing a PDB
           generated on one machine to a PDB generated on another
           machine.
      
      I attempted to fix #2 by adding command line options which let
      you specify prefixes to strip from the beginning of embedded
      paths, which effectively lets us specify a path to "base" each
      PDB from and only compare the parts under the base.  But this is
      tricky because PDB paths always use Windows path syntax, even
      when they are created on non-Windows hosts.  A problem still
      existed when constructing the prefix to strip, where we were
      accidentally using a host-specific path separator instead of
      a Windows path separator.
      
      This resubmission fixes the issue on Linux (and I have verified
      that the test now passes on Linux).
      
      llvm-svn: 307571
      a9d944fd
    • Zachary Turner's avatar
      Revert "Build fixes for pdb-diff test." · ba3836bc
      Zachary Turner authored
      This reverts commit 180af3fdbdb17ec35b45ec1f925fd743b28d37e1.
      
      This is still breaking due to linux-specific path differences.
      
      llvm-svn: 307559
      ba3836bc
    • Zachary Turner's avatar
      Build fixes for pdb-diff test. · e80c0bf6
      Zachary Turner authored
      llvm-svn: 307556
      e80c0bf6
    • Zachary Turner's avatar
      Fix pdb-diff test. · 6da7a305
      Zachary Turner authored
      A test was checked in on Friday that worked by checking in an
      object file and PDB generated locally by MSVC, and then having
      the test run lld-link on the object file and diffing LLD's PDB
      against the checked in PDB.
      
      This failed because part of the diffing algorithm involves
      determining if two modules are the same, and if so drilling into
      the module and diffing individual fields of the module.  The
      only thing we can use to make this determination though is the
      "name" of the module, which is a path to where the module (obj
      file) was read from on the machine where it was linked.  This
      fails for obvious reasons when comparing a PDB generated on one
      machine to a PDB on another machine.
      
      The fix employed here is to add two command line options to the
      diff subcommand, which allow the user to specify a "binary root
      path".  The bin root path, if specified, is stripped from the
      beginning of any embedded PDB paths.  The test is updated to
      specify the user's local test output directory for the left
      PDB, and is hardcoded to the location where the original PDB
      was created for the right PDB.  This way all the equivalence
      comparisons should succeed.
      
      llvm-svn: 307555
      6da7a305
    • Dehao Chen's avatar
      Use emplace_back to replace size() and resize(). · 396f6244
      Dehao Chen authored
      Summary: This speeds-up thin-link for ~29% for large programs.
      
      Reviewers: tejohnson
      
      Reviewed By: tejohnson
      
      Subscribers: grandinj, sanjoy, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D35145
      
      llvm-svn: 307543
      396f6244
    • Philip Pfaffe's avatar
      [PM] Fix a warning. · 8c84699f
      Philip Pfaffe authored
      The DebugLogging argument was unused in the EP callbacks registration.
      
      llvm-svn: 307536
      8c84699f
    • Philip Pfaffe's avatar
      [PM] Fix r307532: Get rid of a dangling reference. · a3b84168
      Philip Pfaffe authored
      Escaping lambda by-reference capture of local variable caused a dangling
      reference.
      
      llvm-svn: 307534
      a3b84168
    • Philip Pfaffe's avatar
      [PM] Enable registration of out-of-tree passes with PassBuilder · 730f2f9b
      Philip Pfaffe authored
      Summary:
      This patch adds a callback registration API to the PassBuilder,
      enabling registering out-of-tree passes with it.
      
      Through the Callback API, callers may register callbacks with the
      various stages at which passes are added into pass managers, including
      parsing of a pass pipeline as well as at extension points within the
      default -O pipelines.
      
      Registering utilities like `require<>` and `invalidate<>` needs to be
      handled manually by the caller, but a helper is provided.
      
      Additionally, adding passes at pipeline extension points is exposed
      through the opt tool. This patch adds a `-passes-ep-X` commandline
      option for every extension point X, which opt parses into pipelines
      inserted into that extension point.
      
      Reviewers: chandlerc
      
      Reviewed By: chandlerc
      
      Subscribers: lksbhm, grosser, davide, mehdi_amini, llvm-commits, mgorny
      
      Differential Revision: https://reviews.llvm.org/D33464
      
      llvm-svn: 307532
      730f2f9b
    • David Blaikie's avatar
      llvm-profdata: Reduce memory usage by using Error callback rather than member · 98cce003
      David Blaikie authored
      Reduces llvm-profdata memory usage on a large profile from 7.8GB to 5.1GB.
      
      The ProfData API now supports reporting all the errors/warnings rather
      than only the first, though llvm-profdata ignores everything after the
      first for now to preserve existing behavior. (if there's a desire for
      other behavior, happy to implement that - but might be as well left for
      a separate patch)
      
      Reviewers: davidxl
      
      Differential Revision: https://reviews.llvm.org/D35149
      
      llvm-svn: 307516
      98cce003
  3. Jul 09, 2017
  4. Jul 08, 2017
    • Eric Beckmann's avatar
      Revert "Revert "Revert "Revert "Switch external cvtres.exe for llvm's own resource library."""" · c8dba240
      Eric Beckmann authored
      This reverts commit 147f45ff24456aea59575fa4ac16c8fa554df46a.
      
      Revert "Revert "Revert "Revert "Replace trivial use of external rc.exe by writing our own .res file.""""
      
      This reverts commit 61a90a67ed54a1f0dfeab457b65abffa129569e4.
      
      The patches were intially reverted because they were causing a failure
      on CrWinClangLLD.  Unfortunately, this was done haphazardly and didn't
      compile, so the revert was reverted again quickly to fix this.  One that
      was done, the revert of the revert was itself reverted.  This allowed me
      to finally fix the actual bug in r307452.  This patch re-enables the
      code path that had originally been causing the bug, now that it (should)
      be fixed.
      
      llvm-svn: 307460
      c8dba240
  5. Jul 07, 2017
    • Zachary Turner's avatar
      [llvm-pdbutil] Fix build. · fe71c546
      Zachary Turner authored
      Some platforms require an explicit specialization of std::hash
      for PdbRaw_FeaturesSig.  Also a test involving case sensitivity
      needed to be fixed.  For now that particular check just accepts
      any path even if they're completely different.  Long term we
      should output paths in the correct case to match MSVC.
      
      llvm-svn: 307426
      fe71c546
    • Zachary Turner's avatar
      Use windows path syntax when writing PDB module name. · 448dea41
      Zachary Turner authored
      Without this we would just append whatever the user
      wrote on the command line, so if we're in C:\foo
      and we run lld-link bar/baz.obj, we would write
      C:\foo\bar/baz.obj in various places in the PDB.
      MSVC linker does not do this, so we shouldn't either.
      This fixes some differences in the diff test, so we
      update the test as well.
      
      Differential Revision: https://reviews.llvm.org/D35092
      
      llvm-svn: 307423
      448dea41
    • Zachary Turner's avatar
      Fix some differences between lld and MSVC generated PDBs. · c1e93e5f
      Zachary Turner authored
      A couple of things were different about our generated PDBs.
      
      1) We were outputting the wrong Version on the PDB Stream.
         The version we were setting was newer than what MSVC is setting.
         It's not clear what the implications are, but we change LLD
         to use PdbImplVC70, as MSVC does.
      2) For the optional debug stream indices in the DBI Stream, we
         were outputting 0 to mean "the stream is not present".  MSVC
         outputs uint16_t(-1), which is the "correct" way to specify
         that a stream is not present.  So we fix that as well.
      3) We were setting the PDB Stream signature to 0.  This is supposed
         to be the result of calling time(nullptr).  Although this leads
         to non-deterministic builds, a better way to solve that is by
         having a command line option explicitly for generating a
         reproducible build, and have the default behavior of lld-link
         match the default behavior of link.
      
      To test this, I'm making use of the new and improved `pdb diff`
      sub command.  To make it suitable for writing tests against, I had
      to modify the diff subcommand slightly to print less verbose output.
      Previously it would always print | <column> | <value1> | <value2> |
      which is quite verbose, and the values are fragile.  All we really
      want to know is "did we produce the same value as link?"  So I added
      command line options to print a single character representing the
      result status (different, identical, equivalent), and another to
      hide the value display.  Note that just inspecting the diff output
      used to write the test, you can see some things that are obviously
      wrong.  That is just reflective of the fact that this is the state
      of affairs today, not that we're asserting that this is "correct".
      We can use this as a starting point to discover differences, fix
      them, and update the test.
      
      Differential Revision: https://reviews.llvm.org/D35086
      
      llvm-svn: 307422
      c1e93e5f
    • Zachary Turner's avatar
      [llvm-pdbutil] Improve diff mode. · f3b4b2d8
      Zachary Turner authored
      We're getting to the point that some MS tools (e.g. DIA) can recognize
      our PDBs but others (e.g. link.exe) cannot. I think the way forward is
      to improve our tooling to help us find differences more easily. For
      example, if we can compile the same program with clang-cl and cl and
      have a tool tell us all the places where the PDBs differ, this could
      tell us what we're doing wrong. It's tricky though, because there are a
      lot of "benign" differences in a PDB. For example, if the string table
      in one PDB consists of "foo" followed by "bar" and in the other PDB it
      consists of "bar" followed by "foo", this is not necessarily a critical
      difference, as long as the uses of these strings also refer to the
      correct location. On the other hand, if the second PDB doesn't even
      contain the string "foo" at all, this is a critical difference.
      
      diff mode has been in llvm-pdbutil for quite a while, but because of the
      above challenge along with some others, it's been hard to make it
      useful. I think this patch addresses that. It looks for all the same
      things, but it now prints the output in tabular format (carefully
      formatted and aligned into tables and fields), and it highlights
      critical differences in red, non-critical differences in yellow, and
      identical fields in green.  This makes it easy to spot the places we
      differ, and the general concept of outputting arbitrary fields in
      tabular format can be extended to provide analysis into many of the
      different types of information that show up in a PDB.
      
      Differential Revision: https://reviews.llvm.org/D35039
      
      llvm-svn: 307421
      f3b4b2d8
    • Zachary Turner's avatar
      [PDB] Teach libpdb to write DBI Stream ECNames. · 6c4bfba8
      Zachary Turner authored
      Based strictly on the name, this seems to have something to do
      width edit & continue.  The goal of this patch has nothing to do
      with supporting edit and continue though.  msvc link.exe writes
      very basic information into this area even when *not* compiling
      with support for E&C, and so the goal here is to bring lld-link
      to parity.  Since we cannot know what assumptions standard tools
      make about the content of PDB files, we need to be as close as
      possible.
      
      This ECNames data structure is a standard PDB string hash table.
      link.exe puts a single string into this hash table, which is the
      full path to the PDB file on disk.  It then references this string
      from the module descriptor for the compiler generated `* Linker *`
      module.
      
      With this patch, lld-link will generate the exact same sequence of
      bytes as MSVC link for this subsection for a given object file
      input (as reported by `llvm-pdbutil bytes -ec`).
      
      llvm-svn: 307356
      6c4bfba8
    • Lang Hames's avatar
      [ORC] Errorize the ORC APIs. · 4ce98662
      Lang Hames authored
      This patch updates the ORC layers and utilities to return and propagate
      llvm::Errors where appropriate. This is necessary to allow ORC to safely handle
      error cases in cross-process and remote JITing.
      
      llvm-svn: 307350
      4ce98662
  6. Jul 06, 2017
    • David Blaikie's avatar
      Prototype: Reduce llvm-profdata merge memory usage further · cf9d52c6
      David Blaikie authored
      The InstrProfWriter already stores the name and hash of the record in
      the nested maps it uses for lookup while merging - this data is
      duplicated in the value within the maps.
      
      Refactor the InstrProfRecord to use a nested struct for the counters
      themselves so that InstrProfWriter can use this nested struct alone
      without the name or hash duplicated there.
      
      This work is incomplete, but enough to demonstrate the value (around a
      50% decrease in memory usage for a large test case (10GB -> 5GB)).
      Though most of that decrease is probably from removing the
      SoftInstrProfError as well, but I haven't implemented a replacement for
      it yet. (it needs to go with the counters, because the operations on the
      counters - merging, etc, are where the failures are - unlike the
      name/hash which are totally unused by those counter-related operations
      and thus easy to split out)
      
      Ongoing discussion about removing SoftInstrProfError as a field of the
      InstrProfRecord is happening on the thread that added it - including
      the possibility of moving back towards an earlier version of that
      proposed patch that passed SoftInstrProfError through the various APIs,
      rather than as a member of InstrProfRecord.
      
      Reviewers: davidxl
      
      Differential Revision: https://reviews.llvm.org/D34838
      
      llvm-svn: 307298
      cf9d52c6
    • Peter Collingbourne's avatar
      c8556158
    • Adam Nemet's avatar
      [opt-viewer] Move under tools, install it · 8d10129e
      Adam Nemet authored
      We weren't installing opt-viewer and co before, this fixes the omission.  I am
      also moving the tools from utils/ to tools/.  I believe that this is more
      appropriate since these tools have matured greatly in the past year through
      contributions by multiple people (thanks!) so they are ready to become
      external tools.
      
      The tools are installed under <install>/share/opt-viewer/.
      
      I am *not* adding the llvm- prefix.  If people feel strongly about adding
      that, this is probably a good time since the new location will require some
      mental adjustment anyway.
      
      Fixes PR33521
      
      Differential Revision: https://reviews.llvm.org/D35048
      
      llvm-svn: 307285
      8d10129e
    • David Blaikie's avatar
      Fix -Wunused-function by making function declarations in a header non-static · fd8777ed
      David Blaikie authored
      Also avoids ODR violations by ensuring names used in headers find the
      same entity, not different, file-local entities in each translation
      unit.
      
      llvm-svn: 307237
      fd8777ed
    • Eric Beckmann's avatar
      Revert "Revert "Revert "Switch external cvtres.exe for llvm's own resource library.""" · f6090b62
      Eric Beckmann authored
      This reverts commit ae21ee0b6cacbc1efaf4d42502e71da2f0eb45c3.
      
      The initial revert was done in order to prevent ongoing errors on
      chromium bots such as CrWinClangLLD.  However, this was done haphazardly
      and I didn't realize there were test and compilation failures, so this
      revert was reverted.  Now that those have been fixed, we can revert the
      revert of the revert.
      
      llvm-svn: 307227
      f6090b62
  7. Jul 05, 2017
  8. Jul 04, 2017
    • Alexander Kornienko's avatar
      656466ed
    • Lang Hames's avatar
      [Orc] Remove the memory manager argument to addModule, and de-templatize the · 5b518160
      Lang Hames authored
      symbol resolver argument.
      
      De-templatizing the symbol resolver is part of the ongoing simplification of
      ORC layer API.
      
      Removing the memory management argument (and delegating construction of memory
      managers for RTDyldObjectLinkingLayer to a functor passed in to the constructor)
      allows us to build JITs whose base object layers need not be compatible with
      RTDyldObjectLinkingLayer's memory mangement scheme. For example, a 'remote
      object layer' that sends fully relocatable objects directly to the remote does
      not need a memory management scheme at all (that will be handled by the remote).
      
      llvm-svn: 307058
      5b518160
  9. Jul 01, 2017
  10. Jun 30, 2017
    • Zachary Turner's avatar
      Remove spurious semicolons. · de6a9796
      Zachary Turner authored
      llvm-svn: 306891
      de6a9796
    • Zachary Turner's avatar
      [llvm-pdbutil] Output the symbol offset when dumping. · af8c75a8
      Zachary Turner authored
      Type records have a unique type index, but symbol records do
      not.  Instead, symbol records refer to other symbol records
      by referencing their offset in the symbol stream.  In a sense
      this is the analogue of the TypeIndex, but we are not printing
      it in the dumper.  Printing it not only gives us more useful
      information when manually investigating the contents of a PDB,
      but also allows us to write better tests by enabling us to
      verify that fields that reference other symbol records do
      so correctly.
      
      Differential Revision: https://reviews.llvm.org/D34906
      
      llvm-svn: 306890
      af8c75a8
    • Richard Smith's avatar
      Fix ODR violations due to abuse of LLVM_YAML_IS_(FLOW_)?SEQUENCE_VECTOR · d0c0c134
      Richard Smith authored
      This is a short-term fix for PR33650 aimed to get the modules build bots green again.
      
      Remove all the places where we use the LLVM_YAML_IS_(FLOW_)?SEQUENCE_VECTOR
      macros to try to locally specialize a global template for a global type. That's
      not how C++ works.
      
      Instead, we now centrally define how to format vectors of fundamental types and
      of string (std::string and StringRef). We use flow formatting for the former
      cases, since that's the obvious right thing to do; in the latter case, it's
      less clear what the right choice is, but flow formatting is really bad for some
      cases (due to very long strings), so we pick block formatting. (Many of the
      cases that were using flow formatting for strings are improved by this change.)
      
      Other than the flow -> block formatting change for some vectors of strings,
      this should result in no functionality change.
      
      Differential Revision: https://reviews.llvm.org/D34907
      
      Corresponding updates to clang, clang-tools-extra, and lld to follow.
      
      llvm-svn: 306878
      d0c0c134
    • Zachary Turner's avatar
      [llvm-pdbutil] Add the ability to dump the dependency tree for a type · 02a26775
      Zachary Turner authored
      Previously we had the -type-index option which would dump the record of
      a single, but we had no way to follow the dependency graph backwards and
      also dump all dependent types.
      
      Having this option makes test-writing better, because we can limit the
      test to only those records that are of importance for the thing we're
      trying to test, which allows us to use things like CHECK-NEXT to reduce
      fragility.
      
      Differential Revision: https://reviews.llvm.org/D34899
      
      llvm-svn: 306852
      02a26775
    • Brian Gesiak's avatar
      [ORE] Unify spelling as "diagnostics hotness" · 44e5f6c4
      Brian Gesiak authored
      Summary:
      To enable profile hotness information in diagnostics output, Clang takes
      the option `-fdiagnostics-show-hotness` -- that's "diagnostics", with an
      "s" at the end. Clang also defines `CodeGenOptions::DiagnosticsWithHotness`.
      
      LLVM, on the other hand, defines
      `LLVMContext::getDiagnosticHotnessRequested` -- that's "diagnostic", not
      "diagnostics". It's a small difference, but it's confusing, typo-inducing, and
      frustrating.
      
      Add a new method with the spelling "diagnostics", and "deprecate" the
      old spelling.
      
      Reviewers: anemet, davidxl
      
      Reviewed By: anemet
      
      Subscribers: llvm-commits, mehdi_amini
      
      Differential Revision: https://reviews.llvm.org/D34864
      
      llvm-svn: 306848
      44e5f6c4
    • Martin Storsjö's avatar
      [llvm-readobj] Improve printouts for COFF ARM64 binaries · 43c85453
      Martin Storsjö authored
      Differential Revision: https://reviews.llvm.org/D34835
      
      llvm-svn: 306795
      43c85453
Loading