Skip to content
  1. Mar 15, 2017
    • George Rimar's avatar
      [ELF] - Make Bss and BssRelRo sections to be synthetic (#3). · 22e3e7d1
      George Rimar authored
      That removes CopyRelSection class completely, making
      Bss/BssRelRo to be just regular synthetics.
      
      This is splitted from D30541 and polished.
      Difference from D30541 that all logic of SharedSymbol
      converting to DefinedRegular was removed for now and
      probably will be posted as separate patch.
      
      Differential revision: https://reviews.llvm.org/D30892
      
      llvm-svn: 297814
      22e3e7d1
    • George Rimar's avatar
      [ELF] - Detemplate GotPltSection and IgotPltSection sections. · 10f74fc1
      George Rimar authored
      Patch introduces Config->is64Bit() and with help of that detemplates
      GotPltSection and IgotPltSection sections
      
      Differential revision: https://reviews.llvm.org/D30944
      
      llvm-svn: 297813
      10f74fc1
    • Pavel Labath's avatar
      Remove lldb streams from the Log class completely · 775588c0
      Pavel Labath authored
      Summary:
      previously we switched to llvm streams for log output, this completes
      the switch for the error streams.
      
      I also clean up the includes and remove the unused argument from
      DisableAllLogChannels().
      
      This required adding a bit of boiler plate to convert the output in the
      command interpreter, but that should go away when we switch command
      results to use llvm streams as well.
      
      Reviewers: zturner, eugene
      
      Subscribers: lldb-commits, emaste
      
      Differential Revision: https://reviews.llvm.org/D30894
      
      llvm-svn: 297812
      775588c0
    • Pavel Labath's avatar
      dotest.py: remove the ability to specify different architectures/compilers in a single invocation · 6de25ec6
      Pavel Labath authored
      Summary:
      This has been broken at least since the new test result framework was
      added, which was over a year ago. It looks like nobody has missed it
      since.
      
      Removing this makes the gmodules handling code saner, as it already did
      not know how to handle the multiple-compilers case.
      
      My motivation for this is libc++ data formatters support on android -- I
      am trying make a central way of determining whether libc++ tests can be
      run, and without this, I would have to resort to similar hacks as the
      gmodules code.
      
      Reviewers: jingham, zturner
      
      Subscribers: danalbert, tfiala, lldb-commits
      
      Differential Revision: https://reviews.llvm.org/D30779
      
      llvm-svn: 297811
      6de25ec6
    • Eric Liu's avatar
      [Support][CommandLine] Make it possible to get error messages from... · e51ee066
      Eric Liu authored
      [Support][CommandLine] Make it possible to get error messages from ParseCommandLineOptions when ignoring errors.
      
      Summary:
      Previously, ParseCommandLineOptions returns false and ignores error messages
      when IgnoreErrors. It would be useful to also return error messages if users
      decide to check parsing result instead of having the program exit on error.
      
      Reviewers: chandlerc, mehdi_amini, rnk
      
      Reviewed By: rnk
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D30893
      
      llvm-svn: 297810
      e51ee066
    • Sam Parker's avatar
      [ARM] Enable SMLAL[B|T] isel · 654cb826
      Sam Parker authored
      Enable the selection of the 64-bit signed multiply accumulate
      instructions which operate on 16-bit operands. These are enabled for
      ARMv5TE onwards for ARM and for V6T2 and other DSP enabled Thumb
      architectures.
      
      Differential Revision: https://reviews.llvm.org/D30044
      
      llvm-svn: 297809
      654cb826
    • Taewook Oh's avatar
      NFC: Reformats comments according to the coding guildelines. · 1b192336
      Taewook Oh authored
      llvm-svn: 297808
      1b192336
    • Michal Gorny's avatar
      [llvm-config] Add minimal sanity tests for path options · f89c874d
      Michal Gorny authored
      Add minimal tests that check whether path options do not fail and output
      directories looking like expected. Requested in
      https://reviews.llvm.org/rL291218.
      
      Differential Revision: https://reviews.llvm.org/D28533
      
      llvm-svn: 297807
      f89c874d
    • Michal Gorny's avatar
      [test] Fix test dependencies when using installed tools · 6e31072e
      Michal Gorny authored
      Use the LLVM_UTILS_PROVIDED variable to determine whether test tool
      dependencies should be exposed for clang-tools-extra tests. If clang is
      being built stand-alone and LLVM test tools (FileCheck, count and not)
      are installed, the top-level CMakeLists.txt of clang sets this variable
      to indicate that they will not be built as a part of this build,
      and therefore no dependencies should be emitted for them. This fixes
      the dependency errors when building clang stand-alone with tests
      enabled.
      
      Differential Revision: https://reviews.llvm.org/D29851
      
      llvm-svn: 297806
      6e31072e
    • Taewook Oh's avatar
      [BranchFolding] Merge debug locations from common tail instead of removing · fb1833ef
      Taewook Oh authored
      Summary: D25742 improved the precision of debug locations for PGO by removing debug locations from common tail when tail-merging. However, if identical insturctions that are merged into a common tail have the same debug locations, there's no need to remove them. This patch creates a merged debug location of identical instructions across SameTails and assign it to the instruction in the common tail, so that the debug locations are maintained if they are same across identical instructions.
      
      Reviewers: aprantl, probinson, MatzeB, rob.lougher
      
      Reviewed By: aprantl
      
      Subscribers: andreadb, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D30226
      
      llvm-svn: 297805
      fb1833ef
    • Peter Collingbourne's avatar
      Ensure that prefix data is preserved with subsections-via-symbols · 7f6e2c97
      Peter Collingbourne authored
      On MachO platforms that use subsections-via-symbols dead code stripping will
      drop prefix data. Unfortunately there is no great way to convey the relationship
      between a function and its prefix data to the linker. We are forced to use a bit
      of a hack: we give the prefix data it’s own symbol, and mark the actual function
      entry an .alt_entry.
      
      Patch by Moritz Angermann!
      
      Differential Revision: https://reviews.llvm.org/D30770
      
      llvm-svn: 297804
      7f6e2c97
    • Petr Hosek's avatar
      [ELF] Update tests to work even with modified defaults · 3b4e29ba
      Petr Hosek authored
      D30229 changes the defaults based on section names to match the
      GAS behavior, which breaks some of the tests that rely on the old
      defaults.
      
      Differential Revision: https://reviews.llvm.org/D30967
      
      llvm-svn: 297803
      3b4e29ba
    • Petr Hosek's avatar
      Support ABSOLUTE on the right hand side in linker scripts · 02ad516b
      Petr Hosek authored
      This also requires postponing the assignment the assignment of
      symbols defined in input linker scripts since those can refer to
      output sections and in case we don't have a SECTIONS command, we
      need to wait until all output sections have been created and
      assigned addresses.
      
      Differential Revision: https://reviews.llvm.org/D30851
      
      llvm-svn: 297802
      02ad516b
    • Dean Michael Berris's avatar
      [XRay] [compiler-rt] Refactor logic for xray fdr logging. NFC. · c6ee3385
      Dean Michael Berris authored
      Summary:
      Separated the IO and the thread local storage state machine of logging
      from the writing of log records once the contents are deterministic.
      
      Finer granularity functions are provided as inline functions in the same
      header such that stack does not grow due to the functions being separated.
      
      An executable utility xray_fdr_log_printer is also implemented to use the
      finest granularity functions to produce binary test data in the FDR format
      with a relatively convenient text input.
      
      For example, one can take a file with textual contents layed out in rows
      and feed it to the binary to generate data that llvm-xray convert can then
      read. This is a convenient way to build a test suite for llvm-xray convert
      to ensure it's robust to the fdr format.
      
      Example:
      
      $cat myFile.txt
      NewBuffer : { time = 2 , Tid=5}
      NewCPU : { CPU =1 , TSC = 123}
      Function : { FuncId = 5, TSCDelta = 3, EntryType = Entry }
      Function : { FuncId = 5, TSCDelta = 5, EntryType = Exit}
      TSCWrap : { TSC = 678 }
      Function : { FuncId = 6, TSCDelta = 0, EntryType = Entry }
      Function : { FuncId = 6, TSCDelta = 50, EntryType = Exit }
      EOB : { }
      $cat myFile.txt | ./bin/xray_fdr_log_printer > /tmp/binarydata.bin
      $./bin/llvm-xray convert -output-format=yaml -output=- /tmp/binarydata.bin
      
      yaml format comes out as expected.
      
      Reviewers: dberris, pelikan
      
      Reviewed By: dberris
      
      Subscribers: llvm-commits, mgorny
      
      Differential Revision: https://reviews.llvm.org/D30850
      
      llvm-svn: 297801
      c6ee3385
    • Dean Michael Berris's avatar
      [XRay][compiler-rt] Support TSC emulation even for x86_64 · 66443d80
      Dean Michael Berris authored
      Summary:
      Use TSC emulation in cases where RDTSCP isn't available on the host
      running an XRay instrumented binary. We can then fall back into
      emulation instead of not even installing XRay's runtime functionality.
      We only do this for now in the naive/basic logging implementation, but
      should be useful in even FDR mode.
      
      Should fix http://llvm.org/PR32148.
      
      Reviewers: pelikan, rnk, sdardis
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D30677
      
      llvm-svn: 297800
      66443d80
    • Douglas Yung's avatar
      842c707d
    • Mehdi Amini's avatar
      Add deployment knobs to tests (for Apple platforms) · f8764e30
      Mehdi Amini authored
      The tests for libc++ specify -target on the command-line to the
      compiler, but this is problematic for a few reasons.
      
      Firstly, the -target option isn't supported on Apple platforms. Parts
      of the triple get dropped and ignored. Instead, software should be
      compiled with a combination of the -arch and -m<name>-version-min
      options.
      
      Secondly, the generic "darwin" target references a kernel version
      instead of a platform version. Each platform has its own independent
      versions (with different versions of libc++.1.dylib), independent of the
      version of the Darwin kernel.
      
      This commit adds support to the LIT infrastructure for testing against
      Apple platforms using -arch and -platform options.
      
      If the host is not on OS X, or the compiler type is not clang or apple-clang, then this commit has NFC.
      If the host is on OS X and --param=target_triple=... is specified, then a warning is emitted to use arch and platform instead. Besides the warning, there's NFC.
      If the host is on OS X and *no* target-triple is specified, then use the new deployment target logic. This uses two new lit parameters, --param=arch=<arch> and --param=platform=<platform>. <platform> has the form <name>[<version>].
      By default, arch is auto-detected from clang -dumpmachine, and platform is "macosx".
      If the platform doesn't have a version:
      For "macosx", the version is auto-detected from the host system using sw_vers. This may give a different version than the SDK, since new SDKs can be installed on older hosts.
      Otherwise, the version is auto-detected from the SDK version using xcrun --show-sdk-path.
      -arch <arch> -m<name>-version-min=<version> is added to the compiler flags.
      The target triple is computed as <arch>-apple-<platform>. It is *not* passed to clang, but it is available for XFAIL and UNSUPPORTED (as is with_system_cxx_lib=<target>).
      For convenience, apple-darwin and <arch>-apple-darwin are added to the set of available features.
      There were a number of tests marked to XFAIL on x86_64-apple-darwin11
      and x86_64-apple-darwin12. I updated these to
      x86_64-apple-macosx10.7 and x86_64-apple-macosx10.8.
      
      llvm-svn: 297798
      f8764e30
    • Kostya Serebryany's avatar
      [libFuzzer] remove even more stale code · 70240430
      Kostya Serebryany authored
      llvm-svn: 297797
      70240430
    • Kostya Serebryany's avatar
      [libFuzzer] simplify code a bit · 862a845a
      Kostya Serebryany authored
      llvm-svn: 297796
      862a845a
    • Francis Visoiu Mistrih's avatar
      [MachineFunction] Fix documentation. NFC · 10f54e39
      Francis Visoiu Mistrih authored
      MachineFunction::getBlockNumber -> MachineFunction::getNumber.
      
      llvm-svn: 297795
      10f54e39
    • Dean Michael Berris's avatar
      Fix a build break with xray · 601afaf0
      Dean Michael Berris authored
      Summary: Building compiler-rt with clang 3.7 broken, could not find mkstemp
      
      Reviewers: dberris, bkramer
      
      Reviewed By: dberris
      
      Differential Revision: https://reviews.llvm.org/D30389
      
      llvm-svn: 297794
      601afaf0
    • Evgeniy Stepanov's avatar
      [msan] Intercept wcsncpy, wcsnlen. · a4238e4c
      Evgeniy Stepanov authored
      llvm-svn: 297793
      a4238e4c
    • Volkan Keles's avatar
      [GlobalISel] IRTranslator: Return the scalar for <1 x Ty> constant vectors · 4862c635
      Volkan Keles authored
      Summary:
      <1 x Ty> is not a legal vector type in LLT, we shouldn’t build G_MERGE_VALUES
      instruction for them.
      
      Reviewers: qcolombet, aditya_nandakumar, dsanders, t.p.northover, ab, javed.absar
      
      Reviewed By: qcolombet
      
      Subscribers: dberris, rovka, kristof.beyls, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D30948
      
      llvm-svn: 297792
      4862c635
    • Adrian Prantl's avatar
      Make a blind attempt to fix this testcase on Windows. · 858b25e2
      Adrian Prantl authored
      llvm-svn: 297791
      858b25e2
    • Adrian Prantl's avatar
      Canonicalize the path provided by -fmodules-cache-path. · 0ebdeac1
      Adrian Prantl authored
      This fixes lookup mismatches that could happen when the module cache
      path contained a '/./' component.
      
      <rdar://problem/30413458>
      
      Differential Revision: https://reviews.llvm.org/D30915
      
      llvm-svn: 297790
      0ebdeac1
  2. Mar 14, 2017
Loading