Skip to content
  1. Jun 26, 2018
  2. Jun 25, 2018
  3. Jun 23, 2018
  4. Jun 22, 2018
    • Matt Davis's avatar
      [llvm-mca] Remove unnecessary include and forward decl in RCU. NFC. · eb7488e7
      Matt Davis authored
      The DispatchUnit is no longer a dependency of RCU, so this patch removes a
      stale include and forward decl.  This patch also cleans up some comments.
      
      llvm-svn: 335392
      eb7488e7
    • Andrea Di Biagio's avatar
      [llvm-mca] Remove redundant call. NFC · 1fa58109
      Andrea Di Biagio authored
      llvm-svn: 335368
      1fa58109
    • Andrea Di Biagio's avatar
      [llvm-mca] Set the operand ID for implicit register reads/writes. NFC · 21f0fdb2
      Andrea Di Biagio authored
      Also, move the definition of InstRef at the end of Instruction.h to avoid a
      forward declaration.
      
      llvm-svn: 335363
      21f0fdb2
    • Matt Davis's avatar
      [llvm-mca] Introduce a sequential container of Stages · 43de6db2
      Matt Davis authored
      Summary:
      Remove explicit stages and introduce a list of stages.
      
      A pipeline should be composed of an arbitrary list of stages, and not any
       predefined list of stages in the Backend.  The Backend should not know of any
       particular stage, rather it should only be concerned that it has a list of
       stages, and that those stages will fulfill the contract of what it means to be
       a Stage (namely pre/post/execute a given instruction).
      
      For now, we leave the original set of stages defined in the Backend ctor;
      however, I imagine these will be moved out at a later time.
      
      This patch makes an adjustment to the semantics of Stage::isReady.
      Specifically, what the Backend really needs to know is if a Stage has
      unfinished work.  With that said, it is more appropriately renamed
      Stage::hasWorkToComplete().  This change will clean up the check in
      Backend::run(), allowing us to query each stage to see if there is unfinished
      work, regardless of what subclass a stage might be.  I feel that this change
      simplifies the semantics too, but that's a subjective statement.
      
      Given how RetireStage and ExecuteStage handle data in their preExecute(), I've
      had to change the order of Retire and Execute in our stage list.  Retire must
      complete any of its preExecute actions before ExecuteStage's preExecute can
      take control.  This is mainly because both stages utilize the RCU.  In the
      meantime, I want to see if I can adjust that or remove that coupling.
      
      Reviewers: andreadb, RKSimon, courbet
      
      Reviewed By: andreadb
      
      Subscribers: tschuett, gbedwell, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46907
      
      llvm-svn: 335361
      43de6db2
  5. Jun 21, 2018
    • Jonas Devlieghere's avatar
      [dsymutil] Force mmap'ing of binaries · 0bad3f62
      Jonas Devlieghere authored
      After the recent refactoring that introduced parallel handling of
      different object, the binary holder became unique per object file. This
      defeats its optimization of caching archives, leading to an archive
      being opened for every binary it contains. This is obviously unfortunate
      and will need to be refactored soon.
      
      Luckily in practice, the impact of this is limited as most files are
      mmap'ed instead of memcopy'd. There's a caveat however: when the memory
      buffer requires a null terminator and it's a multiple of the page size,
      we allocate instead of mmap'ing. If this happens for a static archive,
      we end up with N copies of it in memory, where N is the number of
      objects in the archive, leading to exuberant memory usage. This provided
      a stopgap solution to ensure that all the files it loads are mmap in
      memory by removing the requirement for a terminating null byte.
      
      Differential revision: https://reviews.llvm.org/D48397
      
      llvm-svn: 335293
      0bad3f62
    • Clement Courbet's avatar
      [llvm-exegesis][NFC] Simplify BenchmarkRunner. · 1ef6aa81
      Clement Courbet authored
      Get rid of createExecutableFunction().
      
      llvm-svn: 335240
      1ef6aa81
    • Clement Courbet's avatar
      [llvm-exegesis][NFC] Simplify LLVMState. · 760d1d57
      Clement Courbet authored
      Summary: Pretty much everything we need is in llvm::TargetMachine.
      
      Reviewers: gchatelet
      
      Subscribers: llvm-commits, tschuett
      
      Differential Revision: https://reviews.llvm.org/D48428
      
      llvm-svn: 335237
      760d1d57
    • Andrea Di Biagio's avatar
      [llvm-mca] Updates comment in code, and remove some stale comments. NFC · ace775e5
      Andrea Di Biagio authored
      Also, rename fields `TotalMappings` and `NumUsedMappings` in struct
      RegisterMappingTracker into `NumPhysRegs` and `NumUsedPhysRegs`.
      
      llvm-svn: 335219
      ace775e5
    • Wolfgang Pieb's avatar
      [DWARF] Improved error reporting for range lists. · 61d8c8d9
      Wolfgang Pieb authored
      Errors found processing the DW_AT_ranges attribute are propagated by lower level 
      routines and reported by their callers.
      
      Reviewer: JDevlieghere
      
      Differential Revision: https://reviews.llvm.org/D48344
      
      llvm-svn: 335188
      61d8c8d9
  6. Jun 20, 2018
  7. Jun 19, 2018
  8. Jun 18, 2018
Loading