Skip to content
  1. Dec 19, 2018
    • Martin Storsjö's avatar
      [llvm-objcopy] Initial COFF support · e84a0b5a
      Martin Storsjö authored
      This is an initial implementation of no-op passthrough copying of COFF
      with objcopy.
      
      Differential Revision: https://reviews.llvm.org/D54939
      
      llvm-svn: 349605
      e84a0b5a
    • Brian Gesiak's avatar
      [bugpoint][PR29027] Reduce function attributes · 274981eb
      Brian Gesiak authored
      Summary:
      In addition to reducing the functions in an LLVM module, bugpoint now
      reduces the function attributes associated with each of the remaining
      functions.
      
      To test this, add a -bugpoint-crashfuncattr test pass, which crashes if
      a function in the module has a "bugpoint-crash" attribute. A test case
      demonstrates that the IR is reduced to just that one attribute.
      
      Reviewers: MatzeB, silvas, davide, reames
      
      Reviewed By: reames
      
      Subscribers: reames, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55216
      
      llvm-svn: 349601
      274981eb
  2. Dec 18, 2018
    • Luke Cheeseman's avatar
      [AArch64] - Return address signing dwarf support · f57d7d82
      Luke Cheeseman authored
      - Reapply changes intially introduced in r343089
      - The archtecture info is no longer loaded whenever a DWARFContext is created
      - The runtimes libraries (santiziers) make use of the dwarf context classes but
        do not intialise the target info
      - The architecture of the object can be obtained without loading the target info
      - Adding a method to the dwarf context to get this information and multiplex the
        string printing later on
      
      Differential Revision: https://reviews.llvm.org/D55774
      
      llvm-svn: 349472
      f57d7d82
  3. Dec 17, 2018
  4. Dec 15, 2018
    • Heejin Ahn's avatar
      [WebAssembly] Check if the section order is correct · feef720b
      Heejin Ahn authored
      Summary:
      This patch checks if the section order is correct when reading a wasm
      object file in `WasmObjectFile` and converting YAML to wasm object in
      yaml2wasm. (It is not possible to check when reading YAML because it is
      handled exclusively by the YAML reader.)
      
      This checks the ordering of all known sections (core sections + known
      custom sections). This also adds section ID DataCount section that will
      be scheduled to be added in near future.
      
      Reviewers: sbc100
      
      Subscribers: dschuff, mgorny, jgravelle-google, sunfish, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54924
      
      llvm-svn: 349221
      feef720b
  5. Dec 14, 2018
    • Simon Pilgrim's avatar
      Revert rL349136: [llvm-exegesis] Optimize ToProcess in dbScan · 96408bb0
      Simon Pilgrim authored
      Summary:
      Use `vector<char> Added + vector<size_t> ToProcess` to replace `SetVector ToProcess`
      
      We also check `Added[P]` to enqueueing a point more than once, which
      also saves us a `ClusterIdForPoint_[Q].isUndef()` check.
      
      Reviewers: courbet, RKSimon, gchatelet, john.brawn, lebedev.ri
      
      Subscribers: tschuett, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54442
      ........
      Patch wasn't approved and breaks buildbots
      
      llvm-svn: 349139
      96408bb0
    • Fangrui Song's avatar
      [llvm-exegesis] Optimize ToProcess in dbScan · 92537ccc
      Fangrui Song authored
      Summary:
      Use `vector<char> Added + vector<size_t> ToProcess` to replace `SetVector ToProcess`
      
      We also check `Added[P]` to enqueueing a point more than once, which
      also saves us a `ClusterIdForPoint_[Q].isUndef()` check.
      
      Reviewers: courbet, RKSimon, gchatelet, john.brawn, lebedev.ri
      
      Subscribers: tschuett, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54442
      
      llvm-svn: 349136
      92537ccc
  6. Dec 13, 2018
    • Jordan Rupprecht's avatar
      [llvm-size][libobject] Add explicit "inTextSegment" methods similar to... · 4888c4ab
      Jordan Rupprecht authored
      [llvm-size][libobject] Add explicit "inTextSegment" methods similar to "isText" section methods to calculate size correctly.
      
      Summary:
      llvm-size uses "isText()" etc. which seem to indicate whether the section contains code-like things, not whether or not it will actually go in the text segment when in a fully linked executable.
      
      The unit test added (elf-sizes.test) shows some types of sections that cause discrepencies versus the GNU size tool. llvm-size is not correctly reporting sizes of things mapping to text/data segments, at least for ELF files.
      
      This fixes pr38723.
      
      Reviewers: echristo, Bigcheese, MaskRay
      
      Reviewed By: MaskRay
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54369
      
      llvm-svn: 349074
      4888c4ab
    • Tom Stellard's avatar
      Don't add unnecessary compiler flags to llvm-config output · dda33128
      Tom Stellard authored
      Summary:
      llvm-config --cxxflags --cflags, should only output the minimal flags
      required to link against the llvm libraries.  They currently contain
      all flags used to compile llvm including flags like -g, -pedantic,
      -Wall, etc, which users may not always want.
      
      This changes the llvm-config output to only include flags that have been
      explictly added to the COMPILE_FLAGS property of the llvm-config target
      by the llvm build system.
      
      llvm.org/PR8220
      
      Output from llvm-config when running cmake with:
      cmake -G Ninja .. -DCMAKE_CXX_FLAGS=-funroll-loops
      
      Before:
      
      --cppflags: -I$HEADERS_DIR/llvm/include -I$HEADERS_DIR/llvm/build/include
                  -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
      --cflags:   -I$HEADERS_DIR/llvm/include -I$HEADERS_DIR/llvm/build/include
                  -fPIC -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings \
                  -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough \
                  -Wno-comment -fdiagnostics-color -g -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS \
                  -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
      --cxxflags: -I$HEADERS_DIR/llvm/include -I$HEADERS_DIR/llvm/build/include\
                  -funroll-loops -fPIC -fvisibility-inlines-hidden -Werror=date-time -std=c++11 -Wall \
                  -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers \
                  -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized \
                  -Wno-class-memaccess -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wno-comment \
                  -fdiagnostics-color -g  -fno-exceptions -fno-rtti -D_GNU_SOURCE -D_DEBUG \
                  -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS"
      
      After:
      
      --cppflags: -I$HEADERS_DIR/llvm/include -I$HEADERS_DIR/llvm/build/include \
                  -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
      --cflags:   -I$HEADERS_DIR/llvm/include -I$HEADERS_DIR/llvm/build/include \
                  -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
      --cxxflags: -I$HEADERS_DIR/llvm/include -I$HEADERS_DIR/llvm/build/include \
                   -std=c++11   -fno-exceptions -fno-rtti \
                   -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
      
      Reviewers: sylvestre.ledru, infinity0, mgorny
      
      Reviewed By: sylvestre.ledru, mgorny
      
      Subscribers: mgorny, dmgreen, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55391
      
      llvm-svn: 349068
      dda33128
    • Sam Clegg's avatar
      [WebAssembly] Update dylink section parsing · 03801256
      Sam Clegg authored
      This updates the format of the dylink section in accordance with
      recent "spec" change:
        https://github.com/WebAssembly/tool-conventions/pull/77
      
      Differential Revision: https://reviews.llvm.org/D55609
      
      llvm-svn: 348989
      03801256
  7. Dec 12, 2018
  8. Dec 11, 2018
    • Fangrui Song's avatar
      [XRay] Add a helper function sortByKey to simplify code · 9569523a
      Fangrui Song authored
      Reviewers: dberris, mboerger
      
      Reviewed By: dberris
      
      Subscribers: mgrang, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55548
      
      llvm-svn: 348869
      9569523a
    • Sid Manning's avatar
      [llvm-readelf] Add -e/--headers support to readobj/elf · 4afeaac0
      Sid Manning authored
      Differential Revision: https://reviews.llvm.org/D55298
      
      llvm-svn: 348859
      4afeaac0
    • David Blaikie's avatar
      llvm-objcopy: Improve/simplify llvm::Error handling during notes iteration · ba005aa4
      David Blaikie authored
      Using an Error as an out parameter from an indirect operation like
      iteration as described in the documentation (
      http://llvm.org/docs/ProgrammersManual.html#building-fallible-iterators-and-iterator-ranges
      ) seems to be a little fussy - so here's /one/ possible solution, though
      I'm not sure it's the right one.
      
      Alternatively such APIs may be better off being switched to a standard
      algorithm style, where they take a lambda to do the iteration work that
      is then called back into (eg: "Error e = obj.for_each_note([](const
      Note& N) { ... });"). This would be safer than having an unwritten
      assumption that the user of such an iteration cannot return early from
      the inside of the function - and must always exit through the gift
      shop... I mean error checking. (even though it's guaranteed that if
      you're mid-way through processing an iteration, it's not in an  error
      state).
      
      Alternatively we'd need some other (the super untrustworthy/thing we've
      generally tried to avoid) error handling primitive that actually clears
      the error state entirely so it's safe to ignore.
      
      Fleshed this solution out a bit further during review - it now relies on
      op==/op!= comparison as the equivalent to "if (Err)" testing the Error.
      So just like an Error must be checked (even if it's in a success state),
      the Error hiding in the iterator must be checked after each increment
      (including by comparison with another iterator - perhaps this could be
      constrained to only checking if the iterator is compared to the end
      iterator? Not sure it's too important).
      
      So now even just creating the iterator and not incrementing it at all
      should still assert because the Error has not been checked.
      
      Reviewers: lhames, jakehehrlich
      
      Differential Revision: https://reviews.llvm.org/D55235
      
      llvm-svn: 348811
      ba005aa4
  9. Dec 10, 2018
    • Brian Gesiak's avatar
      [bugpoint] Find 'opt', etc., in bugpoint directory · 5cc8920d
      Brian Gesiak authored
      Summary:
      When bugpoint attempts to find the other executables it needs to run,
      such as `opt` or `clang`, it tries searching the user's PATH. However,
      in many cases, the 'bugpoint' executable is part of an LLVM build, and
      the 'opt' executable it's looking for is in that same directory.
      
      Many LLVM tools handle this case by using the `Paths` parameter of
      `llvm::sys::findProgramByName`, passing the parent path of the currently
      running executable. Do this same thing for bugpoint. However, to
      preserve the current behavior exactly, first search the user's PATH,
      and then search for 'opt' in the directory containing 'bugpoint'.
      
      Test Plan:
      `check-llvm`. Many of the existing bugpoint tests no longer need to use the
      `--opt-command` option as a result of these changes.
      
      Reviewers: MatzeB, silvas, davide
      
      Reviewed By: MatzeB, davide
      
      Subscribers: davide, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54884
      
      llvm-svn: 348734
      5cc8920d
  10. Dec 08, 2018
    • Xing GUO's avatar
      [llvm-readobj] Little clean up inside `parseDynamicTable` · fe5a6c31
      Xing GUO authored
      Summary:
      This anoymous function actually has same logic with `Obj->toMappedAddr`.
      
      Besides, I have a question on resolving illegal value. `gnu-readelf`, `gnu-objdump` and `llvm-objdump` could parse the test file 'test/tools/llvm-objdump/Inputs/private-headers-x86_64.elf', but `llvm-readobj` will fail when parse `DT_RELR` segment. Because, the value is 0x87654321 which is illegal. So, shall we do this clean up rather then remove the checking statements inside anoymous function?
      
      ```
      if (Delta >= Phdr.p_filesz)
          return createError("Virtual address is not in any segment");
      ```
      
      Reviewers: rupprecht, jhenderson
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55329
      
      llvm-svn: 348701
      fe5a6c31
  11. Dec 07, 2018
  12. Dec 06, 2018
    • Jake Ehrlich's avatar
      [llvm-objcopy] Change --only-keep to --only-section · 85985ed3
      Jake Ehrlich authored
      I just hard core goofed when I wrote this and created a different name
      for no good reason. I'm failry aware of most "fresh" users of llvm-objcopy
      (that is, users which are not using it as a drop in replacement for GNU
      objcopy) and can say that only "-j" is being used by such people so this
      patch should strictly increase compatibility and not remove it.
      
      Differential Revision: https://reviews.llvm.org/D52180
      
      llvm-svn: 348446
      85985ed3
  13. Dec 05, 2018
    • Nick Desaulniers's avatar
      [gold-plugin] allow function/data sections to be toggleable · c9e38bad
      Nick Desaulniers authored
      Summary:
      r336838 allowed these to be toggleable.
      r336858 reverted r336838.
      r336943 made the generation of these sections conditional on LDPO_REL.
      
      This commit brings back the toggle-ability.  You can specify:
      -plugin-opt=-function-sections
      -plugin-opt=-data-sections
      For your linker flags to disable the changes made in r336943.
      
      Without toggling r336943 off, arm64 linux kernels linked with gold-plugin
      see significant boot time regressions, but with r336943 outright reverted
      x86_64 linux kernels linked with gold-plugin fail to boot.
      
      Reviewers: pcc, void
      
      Reviewed By: pcc
      
      Subscribers: javed.absar, kristof.beyls, llvm-commits, srhines
      
      Differential Revision: https://reviews.llvm.org/D55291
      
      llvm-svn: 348389
      c9e38bad
    • Martin Storsjö's avatar
      [llvm-rc] Support not expressions. · d0afe724
      Martin Storsjö authored
      Patch by Jacek Caban!
      
      Differential Revision: https://reviews.llvm.org/D55242
      
      llvm-svn: 348363
      d0afe724
  14. Dec 04, 2018
  15. Dec 03, 2018
    • Jake Ehrlich's avatar
      [llvm-objcopy] Add --build-id-link-dir flag · 8ad77790
      Jake Ehrlich authored
      This flag does not exist in GNU objcopy but has a major use case.
      Debugging tools support the .build-id directory structure to find
      debug binaries. There is no easy way to build this structure up
      however. One way to do it is by using llvm-readelf and some crazy
      shell magic. This implements the feature directly. It is most often
      the case that you'll want to strip a file and send the original to
      the .build-id directory but if you just want to send a file to the
      .build-id directory you can copy to /dev/null instead.
      
      Differential Revision: https://reviews.llvm.org/D54384
      
      llvm-svn: 348174
      8ad77790
  16. Dec 01, 2018
  17. Nov 30, 2018
    • Jonas Devlieghere's avatar
      [dsymutil] Gather global and local symbol addresses in the main executable. · d1c97516
      Jonas Devlieghere authored
      Usually local symbols will have their address described in the debug
      map. Global symbols have to have their address looked up in the symbol
      table of the main executable. By playing with 'ld -r' and export lists,
      you can get a symbol described as global by the debug map while actually
      being a local symbol as far as the link in concerned. By gathering the
      address of local symbols, we fix this issue.
      
      Also, we prefer a global symbol in case of a name collision to preserve
      the previous behavior.
      
      Note that using the 'ld -r' tricks, people can actually cause symbol
      names collisions that dsymutil has no way to figure out. This fixes the
      simple case where there is only one symbol of a given name.
      
      rdar://problem/32826621
      
      Differential revision: https://reviews.llvm.org/D54922
      
      llvm-svn: 348021
      d1c97516
    • Andrea Di Biagio's avatar
      [llvm-mca] Speedup the default resource selection strategy. · 7e695b97
      Andrea Di Biagio authored
      This patch removes a (potentially) slow while loop in
      DefaultResourceStrategy::select(). A better (and faster) approach is to do some
      bit manipulation in order to shrink the range of candidate resources.
      On a release build, this change gives an average speedup of ~10%.
      
      llvm-svn: 348007
      7e695b97
    • Andrea Di Biagio's avatar
      [llvm-mca] Simplify code in class Scheduler. NFCI · d20cdccb
      Andrea Di Biagio authored
      llvm-svn: 347985
      d20cdccb
  18. Nov 29, 2018
    • Martin Storsjö's avatar
      [obj2yaml] [COFF] Write RVA instead of VA for sections, fix roundtripping executables · c1410635
      Martin Storsjö authored
      yaml2obj writes the yaml value as is to the output file.
      
      Differential Revision: https://reviews.llvm.org/D54965
      
      llvm-svn: 347916
      c1410635
    • Fangrui Song's avatar
      [llvm-objcopy] Delete redundant !Config.xx.empty() when followed by positive is_contained() check · e4ee0661
      Fangrui Song authored
      Summary: The original intention of !Config.xx.empty() was probably to emphasize the thing that is currently considered, but I feel the simplified form is actually easier to understand and it is also consistent with the call sites in other llvm components.
      
      Reviewers: alexshap, rupprecht, jakehehrlich, jhenderson, espindola
      
      Reviewed By: alexshap, rupprecht
      
      Subscribers: emaste, arichardson, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55040
      
      llvm-svn: 347891
      e4ee0661
    • Teresa Johnson's avatar
      [ThinLTO] Import local variables from the same module as caller · 93f99962
      Teresa Johnson authored
      Summary:
      We can sometimes end up with multiple copies of a local variable that
      have the same GUID in the index. This happens when there are local
      variables with the same name that are in different source files having the
      same name/path at compile time (but compiled into different bitcode objects).
      
      In this case make sure we import the copy in the caller's module.
      This enables importing both of the variables having the same GUID
      (but which will have different promoted names since the module paths,
      and therefore the module hashes, will be distinct).
      
      Importing the wrong copy is particularly problematic for read only
      variables, since we must import them as a local copy whenever
      referenced. Otherwise we get undefs at link time.
      
      Note that the llvm-lto.cpp and ThinLTOCodeGenerator changes are needed
      for testing the distributed index case via clang, which will be sent as
      a separate clang-side patch shortly. We were previously not doing the
      dead code/read only computation before computing imports when testing
      distributed index generation (like it was for testing importing and
      other ThinLTO mechanisms alone).
      
      Reviewers: evgeny777
      
      Subscribers: mehdi_amini, inglorion, eraman, steven_wu, dexonsmith, dang, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55047
      
      llvm-svn: 347886
      93f99962
    • Martin Storsjö's avatar
      [llvm-rc] Support EXSTYLE statement. · a876b5c0
      Martin Storsjö authored
      Patch by Jacek Caban!
      
      Differential Revision: https://reviews.llvm.org/D55020
      
      llvm-svn: 347858
      a876b5c0
    • Andrea Di Biagio's avatar
      [llvm-mca][MC] Add the ability to declare which processor resources model... · 373a4ccf
      Andrea Di Biagio authored
      [llvm-mca][MC] Add the ability to declare which processor resources model load/store queues (PR36666).
      
      This patch adds the ability to specify via tablegen which processor resources
      are load/store queue resources.
      
      A new tablegen class named MemoryQueue can be optionally used to mark resources
      that model load/store queues.  Information about the load/store queue is
      collected at 'CodeGenSchedule' stage, and analyzed by the 'SubtargetEmitter' to
      initialize two new fields in struct MCExtraProcessorInfo named `LoadQueueID` and
      `StoreQueueID`.  Those two fields are identifiers for buffered resources used to
      describe the load queue and the store queue.
      Field `BufferSize` is interpreted as the number of entries in the queue, while
      the number of units is a throughput indicator (i.e. number of available pickers
      for loads/stores).
      
      At construction time, LSUnit in llvm-mca checks for the presence of extra
      processor information (i.e. MCExtraProcessorInfo) in the scheduling model.  If
      that information is available, and fields LoadQueueID and StoreQueueID are set
      to a value different than zero (i.e. the invalid processor resource index), then
      LSUnit initializes its LoadQueue/StoreQueue based on the BufferSize value
      declared by the two processor resources.
      
      With this patch, we more accurately track dynamic dispatch stalls caused by the
      lack of LS tokens (i.e. load/store queue full). This is also shown by the
      differences in two BdVer2 tests. Stalls that were previously classified as
      generic SCHEDULER FULL stalls, are not correctly classified either as "load
      queue full" or "store queue full".
      
      About the differences in the -scheduler-stats view: those differences are
      expected, because entries in the load/store queue are not released at
      instruction issue stage. Instead, those are released at instruction executed
      stage.  This is the main reason why for the modified tests, the load/store
      queues gets full before PdEx is full.
      
      Differential Revision: https://reviews.llvm.org/D54957
      
      llvm-svn: 347857
      373a4ccf
  19. Nov 28, 2018
Loading