Skip to content
  1. Aug 17, 2018
    • Lang Hames's avatar
      [ORC] Rename VSO to JITDylib. · d5f56c59
      Lang Hames authored
      VSO was a little close to VDSO (an acronym on Linux for Virtual Dynamic Shared
      Object) for comfort. It also risks giving the impression that instances of this
      class could be shared between ExecutionSessions, which they can not.
      
      JITDylib seems moderately less confusing, while still hinting at how this
      class is intended to be used, i.e. as a JIT-compiled stand-in for a dynamic
      library (code that would have been a dynamic library if you had wanted to
      compile it ahead of time).
      
      llvm-svn: 340084
      d5f56c59
    • Jordan Rupprecht's avatar
      [llvm-objcopy] Add support for -I binary -B <arch>. · cf67633e
      Jordan Rupprecht authored
      Summary:
      The -I (--input-target) and -B (--binary-architecture) flags exist but are currently silently ignored. This adds support for -I binary for architectures i386, x86-64 (and alias i386:x86-64), arm, aarch64, sparc, and ppc (powerpc:common64). This is largely based on D41687.
      
      This is done by implementing an additional subclass of Reader, BinaryReader, which works by interpreting the input file as contents for .data field, sets up a synthetic header, and adds additional sections/symbols (e.g. _binary__tmp_data_txt_start).
      
      Reviewers: jakehehrlich, alexshap, jhenderson, javed.absar
      
      Reviewed By: jhenderson
      
      Subscribers: jyknight, nemanjai, kbarton, fedor.sergeev, jrtc27, kristof.beyls, paulsemel, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50343
      
      llvm-svn: 340070
      cf67633e
    • Matt Davis's avatar
      [llvm-mca] Reformat a few lines (fix spacing). NFC. · 06ac6af2
      Matt Davis authored
      llvm-svn: 340065
      06ac6af2
    • Andrea Di Biagio's avatar
      [llvm-mca] Removed references to HWStallEvent in Scheduler.h. NFCI · 163419f9
      Andrea Di Biagio authored
      class Scheduler should not know anything of hardware event listeners and
      hardware stall events (HWStallEvent).  HWStallEvent objects should only be
      constructed by pipeline stages to notify listeners of hardware events.
      
      No functional change intended.
      
      llvm-svn: 340036
      163419f9
    • Brian Cain's avatar
      [llvm-mc-assemble-fuzzer] Update API - Pass MCObjectWriter instead of a stream · f72611b4
      Brian Cain authored
      Fixes build breakage of llvm-mc-assemble-fuzzer introduced by r332749.
      
      Fix provided by pbhatu (Pratik Bhatu)
      
      llvm-svn: 339981
      f72611b4
  2. Aug 16, 2018
    • Andrea Di Biagio's avatar
      [llvm-mca] Fix -Wpessimizing-move warnings introduced by r339923. · 998373c0
      Andrea Di Biagio authored
      Reported by buildbot `clang-with-lto-ubuntu` ( build #9858 ).
      
      llvm-svn: 339928
      998373c0
    • Andrea Di Biagio's avatar
      [llvm-mca] Refactor how execution is orchestrated by the Pipeline. · db63088e
      Andrea Di Biagio authored
      This patch changes how instruction execution is orchestrated by the Pipeline.
      In particular, this patch makes it more explicit how instructions transition
      through the various pipeline stages during execution.
      
      The main goal is to simplify both the stage API and the Pipeline execution.  At
      the same time, this patch fixes some design issues which are currently latent,
      but that are likely to cause problems in future if people start defining custom
      pipelines.
      
      The new design assumes that each pipeline stage knows the "next-in-sequence".
      The Stage API has gained three new methods:
       -   isAvailable(IR)
       -   checkNextStage(IR)
       -   moveToTheNextStage(IR).
      
      An instruction IR can be executed by a Stage if method `Stage::isAvailable(IR)`
      returns true.
      Instructions can move to next stages using method moveToTheNextStage(IR).
      An instruction cannot be moved to the next stage if method checkNextStage(IR)
      (called on the current stage) returns false.
      Stages are now responsible for moving instructions to the next stage in sequence
      if necessary.
      
      Instructions are allowed to transition through multiple stages during a single
      cycle (as long as stages are available, and as long as all the calls to
      `checkNextStage(IR)` returns true).
      
      Methods `Stage::preExecute()` and `Stage::postExecute()` have now become
      redundant, and those are removed by this patch.
      
      Method Pipeline::runCycle() is now simpler, and it correctly visits stages
      on every begin/end of cycle.
      
      Other changes:
       - DispatchStage no longer requires a reference to the Scheduler.
       - ExecuteStage no longer needs to directly interact with the
         RetireControlUnit. Instead, executed instructions are now directly moved to the
         next stage (i.e. the retire stage).
       - RetireStage gained an execute method. This allowed us to remove the
         dependency with the RCU in ExecuteStage.
       - FecthStage now updates the "program counter" during cycleBegin() (i.e.
         before we start executing new instructions).
       - We no longer need Stage::Status to be returned by method execute(). It has
         been dropped in favor of a more lightweight llvm::Error.
      
      Overally, I measured a ~11% performance gain w.r.t. the previous design.  I also
      think that the Stage interface is probably easier to read now.  That being said,
      code comments have to be improved, and I plan to do it in a follow-up patch.
      
      Differential revision: https://reviews.llvm.org/D50849
      
      llvm-svn: 339923
      db63088e
    • Jordan Rupprecht's avatar
      [llvm-strip] Add support for -p/--preserve-dates · d1767dc5
      Jordan Rupprecht authored
      Summary: [llvm-strip] Preserve access/modification timestamps when -p is used.
      
      Reviewers: jakehehrlich, jhenderson, alexshap
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50744
      
      llvm-svn: 339921
      d1767dc5
    • Andrea Di Biagio's avatar
      [llvm-mca] Small refactoring in preparation for another patch that will... · 492816d8
      Andrea Di Biagio authored
      [llvm-mca] Small refactoring in preparation for another patch that will improve the modularity of the Pipeline. NFCI
      
      The main difference is that now `cycleStart()` and `cycleEnd()` return an
      llvm::Error.
      
      This patch implements a few minor style changes, and adds missing 'const' to
      some methods.
      
      llvm-svn: 339885
      492816d8
    • George Rimar's avatar
      [yaml2obj] - Allow to use numeric sh_link (Link) value for sections. · d2f90ea3
      George Rimar authored
      That change allows using numeric values for Link field.
      It is consistent with the code for another fields in this method.
      
      llvm-svn: 339873
      d2f90ea3
    • George Rimar's avatar
      [yaml2elf] - Simplify code, add a test. NFC. · 7f2df7df
      George Rimar authored
      This simplifies the code allowing to set the sh_info
      for relocations sections. And adds a missing test.
      
      llvm-svn: 339870
      7f2df7df
    • Andrea Di Biagio's avatar
      [llvm-mca] Minor style changes. NFC · 9eb11156
      Andrea Di Biagio authored
      llvm-svn: 339823
      9eb11156
  3. Aug 15, 2018
  4. Aug 14, 2018
    • Jordan Rupprecht's avatar
      [Support] NFC: Allow modifying access/modification times independently in... · 97ea4850
      Jordan Rupprecht authored
      [Support] NFC: Allow modifying access/modification times independently in sys::fs::setLastModificationAndAccessTime.
      
      Summary:
      Add an overload to sys::fs::setLastModificationAndAccessTime that allows setting last access and modification times separately. This will allow tools to use this API when they want to preserve both the access and modification times from an input file, which may be different.
      
      Also note that both the POSIX (futimens/futimes) and Windows (SetFileTime) APIs take the two timestamps in the order of (1) access (2) modification time, so this renames the method to "setLastAccessAndModificationTime" to make it clear which timestamp is which.
      
      For existing callers, the 1-arg overload just sets both timestamps to the same thing.
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50521
      
      llvm-svn: 339628
      97ea4850
  5. Aug 13, 2018
  6. Aug 10, 2018
  7. Aug 09, 2018
  8. Aug 08, 2018
  9. Aug 07, 2018
    • Nico Weber's avatar
      Update msbuild integration warnings: Don't warn on /Zi and /X · 875f6dae
      Nico Weber authored
      We do need to map /Zi to /Z7 explicitly for msbuild as explained in this file,
      but since /Zi is passed by default and since things transparently work fine
      with it mapped to /Z7, we shouldn't produce effectively inactionable noise for
      it.
      
      Also don't warn on /X since clang-cl supports that (since r326357; the risk of
      duplicating a bunch of clang-cl driver logic here).
      
      https://reviews.llvm.org/D50398
      
      llvm-svn: 339169
      875f6dae
    • David Bolvansky's avatar
      [RFC] Build LLVM-C.dll on MSVC that exports only the C API · ab2cbad6
      David Bolvansky authored
      Summary:
      Hello!
      
      This commit adds a LLVM-C target that is always built on MSVC. A big fat warning, this is my first cmake code ever so there is a fair bit of I-have-no-idea-what-I'm-doing going on here. Which is also why I placed it outside of llvm-shlib as I was afraid of breaking things of other people. Secondly llvm-shlib builds a LLVM.so which exports all symbols and then does a thin library that points to it, but on Windows we do not build a LLVM.dll so that would have complicated the code more.
      
      The patch includes a python script that calls dumpbin.exe to get all of the symbols from the built libraries. It then grabs all the symbols starting with LLVM and generates the export file from those. The export file is then used to create the library just like the LLVM-C that is built on darwin.
      
      Improvements that I need help with, to follow up this review.
        - Get cmake to make sure that dumpbin.exe is on the path and wire the full path to the script.
        - Use LLVM-C.dll when building llvm-c-test so we can verify that the symbols are exported.
        - Bundle the LLVM-C.dll with the windows installer.
      
      Why do this?  I'm building a language frontend which is self-hosting, and on windows because of various tooling issues we have a problem of consuming the LLVM*.lib directly on windows. Me and the users of my projects using LLVM would be greatly helped by having LLVM-C.dll built and shipped by the Windows installer. Not only does LLVM takes forever to build, you have to run a extra python script in order to get the final DLL.
      
      Any comments, thoughts or help is greatly appreciated.
      
      Cheers, Jakob.
      
      Patch by: Wallbraker (Jakob Bornecrantz)
      
      Reviewers: compnerd, beanz, hans, smeenai
      
      Reviewed By: beanz
      
      Subscribers: xbolva00, bhelyer, Memnarch, rnk, fedor.sergeev, chapuni, smeenai, john.brawn, deadalnix, llvm-commits, mgorny
      
      Differential Revision: https://reviews.llvm.org/D35077
      
      llvm-svn: 339151
      ab2cbad6
    • Pavel Labath's avatar
      [DebugInfo] Reduce debug_str_offsets section size · 2f088116
      Pavel Labath authored
      Summary:
      The accelerator tables use the debug_str section to store their strings.
      However, they do not support the indirect method of access that is
      available for the debug_info section (DW_FORM_strx et al.).
      
      Currently our code is assuming that all strings can/will be referenced
      indirectly, and puts all of them into the debug_str_offsets section.
      This is generally true for regular (unsplit) dwarf, but in the DWO case,
      most of the strings in the debug_str section will only be used from the
      accelerator tables. Therefore the contents of the debug_str_offsets
      section will be largely unused and bloating the main executable.
      
      This patch rectifies this by teaching the DwarfStringPool to
      differentiate between strings accessed directly and indirectly. When a
      user inserts a string into the pool it has to declare whether that
      string will be referenced directly or not. If at least one user requsts
      indirect access, that string will be assigned an index ID and put into
      debug_str_offsets table. Otherwise, the offset table is skipped.
      
      This approach reduces the overall binary size (when compiled with
      -gdwarf-5 -gsplit-dwarf) in my tests by about 2% (debug_str_offsets is
      shrunk by 99%).
      
      Reviewers: probinson, dblaikie, JDevlieghere
      
      Subscribers: aprantl, mgrang, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D49493
      
      llvm-svn: 339122
      2f088116
    • Hans Wennborg's avatar
      vs integration: bump version number · f5678b12
      Hans Wennborg authored
      llvm-svn: 339119
      f5678b12
    • Hans Wennborg's avatar
      vs integration: update the publisher name · f79f22e4
      Hans Wennborg authored
      llvm-svn: 339118
      f79f22e4
    • Hans Wennborg's avatar
      vs integration: fix default path to clang-cl · 68e07d4d
      Hans Wennborg authored
      Differential Revision: https://reviews.llvm.org/D50335
      
      llvm-svn: 339117
      68e07d4d
    • George Rimar's avatar
      [yaml2obj] - Add a support for changing EntSize. · 65a6828b
      George Rimar authored
      I was trying to add a test case for LLD and found that it
      is impossible to set sh_entsize via yaml.
      The patch implements the missing part.
      
      Differential revision: https://reviews.llvm.org/D50235
      
      llvm-svn: 339113
      65a6828b
  10. Aug 06, 2018
  11. Aug 04, 2018
  12. Aug 03, 2018
    • Andrea Di Biagio's avatar
      [llvm-mca] Speed up the computation of the wait/ready/issued sets in the Scheduler. · 1c3bcc6c
      Andrea Di Biagio authored
      This patch is a follow-up to r338702.
      
      We don't need to use a map to model the wait/ready/issued sets. It is much more
      efficient to use a vector instead.
      
      This patch gives us an average 7.5% speedup (on top of the ~12% speedup obtained
      after r338702).
      
      llvm-svn: 338883
      1c3bcc6c
    • Guillaume Chatelet's avatar
      [llvm-exegesis] Renaming classes and functions. · e60866a4
      Guillaume Chatelet authored
      Summary: Functional No Op.
      
      Reviewers: gchatelet
      
      Subscribers: tschuett, courbet, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50231
      
      llvm-svn: 338836
      e60866a4
    • Dean Michael Berris's avatar
      [XRay][tools] Use Support/JSON.h in llvm-xray convert · 2c4dcf05
      Dean Michael Berris authored
      Summary:
      This change removes the ad-hoc implementation used by llvm-xray's
      `convert` subcommand to generate JSON encoded catapult (AKA Chrome
      Trace Viewer) trace output, to instead use the JSON encoder now in the
      Support library.
      
      Reviewers: kpw, zturner, eizan
      
      Reviewed By: kpw
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50129
      
      llvm-svn: 338834
      2c4dcf05
    • Dave Lee's avatar
      objdump: Better handling of Mach-O universal binaries · 3fb120f1
      Dave Lee authored
      Summary:
      With Mach-O, there is a flag requirement discrepancy between working with
      universal binaries and thin binaries. Many flags that don't require the `-macho`
      flag (for example `-private-headers` and `-disassemble`) fail to work on
      universal binaries unless `-macho` is given. When this happens, the error
      message is unhelpful, stating:
      
          The file was not recognized as a valid object file.
      
      Which can lead to confusion.
      
      This change allows generic flags to be used on universal binaries with and
      without the `-macho` flag. This means flags that can be used for thin files can
      be used consistently with fat files too.
      
      To do this, the universal binary support within `ParseInputMachO()` is extracted
      into a new function. This new function is called directly from `DumpInput()`
      when the input binary is universal. Additionally the `-arch` flag validation in
      `ParseInputMachO()` was extracted to be reused.
      
      Reviewers: compnerd
      
      Reviewed By: compnerd
      
      Subscribers: keith, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D48702
      
      llvm-svn: 338792
      3fb120f1
Loading