Skip to content
  1. Oct 07, 2019
  2. Oct 03, 2019
  3. Sep 30, 2019
  4. Sep 27, 2019
  5. Sep 13, 2019
  6. Sep 11, 2019
  7. Sep 05, 2019
    • Guillaume Chatelet's avatar
      [LLVM][Alignment] Make functions using log of alignment explicit · aff45e4b
      Guillaume Chatelet authored
      Summary:
      This patch renames functions that takes or returns alignment as log2, this patch will help with the transition to llvm::Align.
      The renaming makes it explicit that we deal with log(alignment) instead of a power of two alignment.
      A few renames uncovered dubious assignments:
      
       - `MirParser`/`MirPrinter` was expecting powers of two but `MachineFunction` and `MachineBasicBlock` were using deal with log2(align). This patch fixes it and updates the documentation.
       - `MachineBlockPlacement` exposes two flags (`align-all-blocks` and `align-all-nofallthru-blocks`) supposedly interpreted as power of two alignments, internally these values are interpreted as log2(align). This patch updates the documentation,
       - `MachineFunctionexposes` exposes `align-all-functions` also interpreted as power of two alignment, internally this value is interpreted as log2(align). This patch updates the documentation,
      
      Reviewers: lattner, thegameg, courbet
      
      Subscribers: dschuff, arsenm, jyknight, dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, javed.absar, hiraditya, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, dexonsmith, PkmX, jocewei, jsji, Jim, s.egerton, llvm-commits, courbet
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D65945
      
      llvm-svn: 371045
      aff45e4b
  8. Aug 29, 2019
  9. Aug 23, 2019
  10. Aug 21, 2019
  11. Aug 15, 2019
  12. Aug 07, 2019
  13. Jul 17, 2019
  14. Jul 12, 2019
  15. Jun 11, 2019
    • Tom Stellard's avatar
      Revert CMake: Make most target symbols hidden by default · 4b0b2619
      Tom Stellard authored
      This reverts r362990 (git commit 37457130)
      
      This was causing linker warnings on Darwin:
      
      ld: warning: direct access in function 'llvm::initializeEvexToVexInstPassPass(llvm::PassRegistry&)'
      from file '../../lib/libLLVMX86CodeGen.a(X86EvexToVex.cpp.o)' to global weak symbol
      'void std::__1::__call_once_proxy<std::__1::tuple<void* (&)(llvm::PassRegistry&),
      std::__1::reference_wrapper<llvm::PassRegistry>&&> >(void*)' from file '../../lib/libLLVMCore.a(Verifier.cpp.o)'
      means the weak symbol cannot be overridden at runtime. This was likely caused by different translation
      units being compiled with different visibility settings.
      
      llvm-svn: 363028
      4b0b2619
    • Tom Stellard's avatar
      CMake: Make most target symbols hidden by default · 37457130
      Tom Stellard authored
      Summary:
      For builds with LLVM_BUILD_LLVM_DYLIB=ON and BUILD_SHARED_LIBS=OFF
      this change makes all symbols in the target specific libraries hidden
      by default.
      
      A new macro called LLVM_EXTERNAL_VISIBILITY has been added to mark symbols in these
      libraries public, which is mainly needed for the definitions of the
      LLVMInitialize* functions.
      
      This patch reduces the number of public symbols in libLLVM.so by about
      25%.  This should improve load times for the dynamic library and also
      make abi checker tools, like abidiff require less memory when analyzing
      libLLVM.so
      
      One side-effect of this change is that for builds with
      LLVM_BUILD_LLVM_DYLIB=ON and LLVM_LINK_LLVM_DYLIB=ON some unittests that
      access symbols that are no longer public will need to be statically linked.
      
      Before and after public symbol counts (using gcc 8.2.1, ld.bfd 2.31.1):
      nm before/libLLVM-9svn.so | grep ' [A-Zuvw] ' | wc -l
      36221
      nm after/libLLVM-9svn.so | grep ' [A-Zuvw] ' | wc -l
      26278
      
      Reviewers: chandlerc, beanz, mgorny, rnk, hans
      
      Reviewed By: rnk, hans
      
      Subscribers: Jim, hiraditya, michaelplatings, chapuni, jholewinski, arsenm, dschuff, jyknight, dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, javed.absar, sbc100, jgravelle-google, aheejin, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, zzheng, edward-jones, mgrang, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, kristina, jsji, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D54439
      
      llvm-svn: 362990
      37457130
  16. May 17, 2019
    • Fangrui Song's avatar
      [ARM] Support .reloc *, R_ARM_NONE, * · 43ca0e9e
      Fangrui Song authored
      R_ARM_NONE can be used to create references among sections. When
      --gc-sections is used, the referenced section will be retained if the
      origin section is retained.
      
      Add a generic MCFixupKind FK_NONE as this kind of no-op relocation is
      ubiquitous on ELF and COFF, and probably available on many other binary
      formats. See D62014.
      
      Reviewed By: peter.smith
      
      Differential Revision: https://reviews.llvm.org/D61992
      
      llvm-svn: 360980
      43ca0e9e
  17. May 15, 2019
  18. May 11, 2019
    • Richard Trieu's avatar
      [Mips] Move InstPrinter files to MCTargetDesc. NFC · fa29bee9
      Richard Trieu authored
      For some targets, there is a circular dependency between InstPrinter and
      MCTargetDesc.  Merging them together will fix this.  For the other targets,
      the merging is to maintain consistency so all targets will have the same
      structure.
      
      llvm-svn: 360497
      fa29bee9
  19. Feb 26, 2019
  20. Feb 04, 2019
    • Andrea Di Biagio's avatar
      [AsmPrinter] Remove hidden flag -print-schedule. · edbf06a7
      Andrea Di Biagio authored
      This patch removes hidden codegen flag -print-schedule effectively reverting the
      logic originally committed as r300311
      (https://llvm.org/viewvc/llvm-project?view=revision&revision=300311).
      
      Flag -print-schedule was originally introduced by r300311 to address PR32216
      (https://bugs.llvm.org/show_bug.cgi?id=32216). That bug was about adding "Better
      testing of schedule model instruction latencies/throughputs".
      
      These days, we can use llvm-mca to test scheduling models. So there is no longer
      a need for flag -print-schedule in LLVM. The main use case for PR32216 is
      now addressed by llvm-mca.
      Flag -print-schedule is mainly used for debugging purposes, and it is only
      actually used by x86 specific tests. We already have extensive (latency and
      throughput) tests under "test/tools/llvm-mca" for X86 processor models. That
      means, most (if not all) existing -print-schedule tests for X86 are redundant.
      
      When flag -print-schedule was first added to LLVM, several files had to be
      modified; a few APIs gained new arguments (see for example method
      MCAsmStreamer::EmitInstruction), and MCSubtargetInfo/TargetSubtargetInfo gained
      a couple of getSchedInfoStr() methods.
      
      Method getSchedInfoStr() had to originally work for both MCInst and
      MachineInstr. The original implmentation of getSchedInfoStr() introduced a
      subtle layering violation (reported as PR37160 and then fixed/worked-around by
      r330615).
      In retrospect, that new API could have been designed more optimally. We can
      always query MCSchedModel to get the latency and throughput. More importantly,
      the "sched-info" string should not have been generated by the subtarget.
      Note, r317782 fixed an issue where "print-schedule" didn't work very well in the
      presence of inline assembly. That commit is also reverted by this change.
      
      Differential Revision: https://reviews.llvm.org/D57244
      
      llvm-svn: 353043
      edbf06a7
  21. Jan 24, 2019
    • Simon Atanasyan's avatar
      Reapply: [mips] Handle MipsMCExpr sub-expression for the MEK_DTPREL tag · b6d3c50a
      Simon Atanasyan authored
      This reapplies commit r351987 with a failed test fix. Now the test
      accepts both DW_OP_GNU_push_tls_address and DW_OP_form_tls_address
      opcode.
      
      Original commit message:
      ```
        This is a fix for a regression introduced by the rL348194 commit. In
        that change new type (MEK_DTPREL) of MipsMCExpr expression was added,
        but in some places of the code this type of expression considered as
        unexpected.
      
        This change fixes the bug. The MEK_DTPREL type of expression is used for
        marking TLS DIEExpr only and contains a regular sub-expression. Where we
        need to handle the expression, we retrieve the sub-expression and
        handle it in a common way.
      ```
      
      llvm-svn: 352034
      b6d3c50a
    • Amara Emerson's avatar
      Revert "[mips] Handle MipsMCExpr sub-expression for the MEK_DTPREL tag" · addb7ab2
      Amara Emerson authored
      This reverts commit r351987 as it broke some bots.
      
      llvm-svn: 351998
      addb7ab2
  22. Jan 23, 2019
    • Simon Atanasyan's avatar
      [mips] Handle MipsMCExpr sub-expression for the MEK_DTPREL tag · 812f1c55
      Simon Atanasyan authored
      This is a fix for a regression introduced by the rL348194 commit. In
      that change new type (MEK_DTPREL) of MipsMCExpr expression was added,
      but in some places of the code this type of expression considered as
      unexpected.
      
      This change fixes the bug. The MEK_DTPREL type of expression is used for
      marking TLS DIEExpr only and contains a regular sub-expression. Where we
      need to handle the expression, we retrieve the sub-expression and
      handle it in a common way.
      
      llvm-svn: 351987
      812f1c55
  23. Jan 19, 2019
    • Chandler Carruth's avatar
      Update the file headers across all of the LLVM projects in the monorepo · 2946cd70
      Chandler Carruth authored
      to reflect the new license.
      
      We understand that people may be surprised that we're moving the header
      entirely to discuss the new license. We checked this carefully with the
      Foundation's lawyer and we believe this is the correct approach.
      
      Essentially, all code in the project is now made available by the LLVM
      project under our new license, so you will see that the license headers
      include that license only. Some of our contributors have contributed
      code under our old license, and accordingly, we have retained a copy of
      our old license notice in the top-level files in each project and
      repository.
      
      llvm-svn: 351636
      2946cd70
  24. Jan 17, 2019
  25. Jan 09, 2019
  26. Dec 29, 2018
  27. Dec 12, 2018
  28. Dec 03, 2018
    • Simon Atanasyan's avatar
      [mips] Fix TestDWARF32Version5Addr8AllForms test failure on MIPS hosts · f76884b0
      Simon Atanasyan authored
      The `DIEExpr` is used in debug information entries for either TLS variables
      or call sites. For now the last case is unsupported for targets with delay
      slots, for MIPS in particular.
      
      The `DIEExpr::EmitValue` method calls a virtual `EmitDebugThreadLocal`
      routine which, in case of MIPS, always emits either `.dtprelword` or
      `.dtpreldword` directives. That is okay for "main" code, but in unit
      tests `DIEExpr` instances can be created not for TLS variables only even
      on MIPS hosts. That is a reason of the `TestDWARF32Version5Addr8AllForms`
      failure because handling of the `R_MIPS_TLS_DTPREL` relocation writes
      incorrect value into dwarf structures. And anyway unconditional emitting
      of `.dtprelword` directives will be incorrect when/if debug information
      entries for call sites become supported on MIPS.
      
      The patch solves the problem by wrapping expression created in the
      `MipsTargetObjectFile::getDebugThreadLocalSymbol` method in to the
      `MipsMCExpr` expression with a new `MEK_DTPREL` tag. This tag is
      recognized in the `MipsAsmPrinter::EmitDebugThreadLocal` method and
      `.dtprelword` directives created in this case only. In other cases the
      expression saved as a regular data.
      
      Differential Revision: http://reviews.llvm.org/D54937
      
      llvm-svn: 348194
      f76884b0
  29. Nov 21, 2018
  30. Oct 16, 2018
  31. Oct 15, 2018
  32. Oct 09, 2018
    • Simon Atanasyan's avatar
      [mips] Set pointer size to 4 bytes for N32 ABI · d465318c
      Simon Atanasyan authored
      CodePointerSize and CalleeSaveStackSlotSize values are used in DWARF
      generation. In case of MIPS it's incorrect to check for Triple::isMIPS64()
      only this function returns true for N32 ABI too.
      
      Now we do not have a method to recognize N32 if it's specified by a command
      line option and is not a part of a target triple. So we check for
      Triple::GNUABIN32 only. It's better than nothing.
      
      Differential revision: https://reviews.llvm.org/D52874
      
      llvm-svn: 344039
      d465318c
Loading