Skip to content
  1. Sep 21, 2018
  2. Sep 20, 2018
    • David Carlier's avatar
      [Hwasan] interceptor macro / extra comma removal · 362e6095
      David Carlier authored
      gcc being pedantic, removing the unnecessary comma.
      
      Reviewers: eugenis, kcc
      
      Reviewed By: eugenis
      
      Differential Revision: https://reviews.llvm.org/D52305
      
      llvm-svn: 342680
      362e6095
    • Calixte Denizet's avatar
      [profile] Fix tests in compiler-rt for patch in gcov (https://reviews.llvm.org/D49659) · 6dde0d42
      Calixte Denizet authored
      Summary: Some tests are broken if patch in D49659 is accepted so this patch fixes them.
      
      Reviewers: marco-c
      
      Reviewed By: marco-c
      
      Subscribers: dberris, delcypher, llvm-commits, #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D49721
      
      llvm-svn: 342661
      6dde0d42
    • David Major's avatar
      Fix test after r342652 · 2ebabe8f
      David Major authored
      llvm-svn: 342654
      2ebabe8f
    • David Major's avatar
      [winasan] Unpoison the stack in NtTerminateThread · 468f53b5
      David Major authored
      In long-running builds we've seen some ASan complaints during thread creation that we suspect are due to leftover poisoning from previous threads whose stacks occupied that memory. This patch adds a hook that unpoisons the stack just before the NtTerminateThread syscall.
      
      Differential Revision: https://reviews.llvm.org/D52091
      
      llvm-svn: 342652
      468f53b5
    • Kostya Kortchinsky's avatar
      [sanitizer] Make __sanitizer::CheckFailed not public · caa9619b
      Kostya Kortchinsky authored
      Summary:
      As far as I can tell, there is no reason why `__sanitizer::CheckFailed` should
      be exported. Looking back in time, it was added with the FIXME with the
      following by @timurrrr:
      
      ```
      [*San/RTL] Fix minor breakage
      Grumbling: this hasn't been caught by running 'make check-{a,l,t}san check-sanitizer'
      ```
      
      I can't find any detail about the breakage, all tests seem to work for me, so
      maybe Windows (@rnk?) or something I have no setup for.
      
      The reason to make it private (past the FIXME) is that Scudo defines its own
      (without callback) and I am trying to make the .so be loadable with the UBsan
      one (that has its own public `CheckFailed`) with as little drama as possible.
      
      Reviewers: eugenis, rnk
      
      Reviewed By: eugenis, rnk
      
      Subscribers: kubamracek, delcypher, #sanitizers, timurrrr, rnk, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52279
      
      llvm-svn: 342651
      caa9619b
    • David Major's avatar
      [winasan] Reduce hotpatch prefix check to 8 bytes · c4624d9e
      David Major authored
      Same idea as r310419: The 8 byte nop is a suffix of the 9 byte nop, and we need at most 6 bytes.
      
      Differential Revision: https://reviews.llvm.org/D51788
      
      llvm-svn: 342649
      c4624d9e
    • Dean Michael Berris's avatar
      [XRay][compiler-rt] FDRLogWriter Abstraction · 1f602079
      Dean Michael Berris authored
      Summary:
      This change introduces an `FDRLogWriter` type which is responsible for
      serialising metadata and function records to character buffers. This is
      the first step in a refactoring of the implementation of the FDR runtime
      to allow for more granular testing of the individual components of the
      implementation.
      
      The main contribution of this change is a means of hiding the details of
      how specific records are written to a buffer, and for managing the
      extents of these buffers. We make use of C++ features (templates and
      some metaprogramming) to reduce repetition in the act of writing out
      specific kinds of records to the buffer.
      
      In this process, we make a number of changes across both LLVM and
      compiler-rt to allow us to use the `Trace` abstraction defined in the
      LLVM project in the testing of the runtime implementation. This gives us
      a closer end-to-end test which version-locks the runtime implementation
      with the loading implementation in LLVM.
      
      We also allow using gmock in compiler-rt unit tests, by adding the
      requisite definitions in the `AddCompilerRT.cmake` module. We also add
      the terminfo library detection along with inclusion of the appropriate
      compiler flags for header include lookup.
      
      Finally, we've gone ahead and updated the FDR logging implementation to
      use the FDRLogWriter for the lowest-level record-writing details.
      
      Following patches will isolate the state machine transitions which
      manage the set-up and tear-down of the buffers we're using in multiple
      threads.
      
      Reviewers: mboerger, eizan
      
      Subscribers: mgorny, jfb, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52220
      
      llvm-svn: 342617
      1f602079
    • Yi Kong's avatar
      [builtins] Add __emutls_unregister_key function · 0c4cf643
      Yi Kong authored
      This is called by Bionic on dlclose to delete the emutls pthread key.
      
      The return value of pthread_key_delete is unchecked and behaviour of
      multiple calls to the method is dependent on the implementation of
      pthread_key_delete.
      
      Differential Revision: https://reviews.llvm.org/D52251
      
      llvm-svn: 342608
      0c4cf643
    • Evgeniy Stepanov's avatar
      Revert "[XRay][compiler-rt] FDRLogWriter Abstraction" and 1 more. · 09e7f243
      Evgeniy Stepanov authored
      Revert the following 2 commits to fix standalone compiler-rt build:
      * r342523 [XRay] Detect terminfo library
      * r342518 [XRay][compiler-rt] FDRLogWriter Abstraction
      
      llvm-svn: 342596
      09e7f243
  3. Sep 19, 2018
    • Kostya Kortchinsky's avatar
      [sanitizer][fuchsia] Fix VMAR leak · 851a7c9b
      Kostya Kortchinsky authored
      Summary:
      Destroy and close a range's vmar if all its memory was unmapped.
      
      This addresses some performance regression due to the proliferation of vmars
      when Secondary backed allocations are concerned with Scudo on Fuchsia.
      
      When a Secondary backed allocation was freed, the associated
      `ReservedAddressRange` was going away after unmapping the entirety of the
      mapping, but without getting rid of the associated vmar properly (which
      was created specifically for that mapping). This resulted in an increase of
      defunct vmars, that in turn slowed down further new vmar allocations.
      
      This appears to solve ZX-2560/ZX-2642, at least on QEMU.
      
      Reviewers: flowerhack, mcgrathr, phosek, mseaborn
      
      Reviewed By: mcgrathr
      
      Subscribers: kubamracek, delcypher, #sanitizers, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52242
      
      llvm-svn: 342584
      851a7c9b
    • Dan Liew's avatar
      [UBSan] Fix typo in CMake conditional that checked if the architecture · bd810dbd
      Dan Liew authored
      of a darwin platform was in the list of `UBSAN_SUPPORTED_ARCH`.
      
      This is a follow up to r341306.
      
      The typo meant that if an architecture was a prefix to another
      architecture in the list (e.g. `armv7` is a prefix of `armv7k`) then
      this would trigger a match which is not the intended behaviour.
      
      rdar://problem/41126835
      
      llvm-svn: 342553
      bd810dbd
    • Arnaud A. de Grandmaison's avatar
      [compiler-rt][TSan] Add TSan runtime support for Go on linux-aarch64. · 86a5e436
      Arnaud A. de Grandmaison authored
      Summary:
      This patch adds TSan runtime support for Go on linux-aarch64
      platforms. This enables people working on golang to implement their
      platform/language part of the TSan support.
      
      Basic testing is done with lib/tsan/go/buildgo.sh. Additional testing will be
      done as part of the work done in the Go project.
      
      It is intended to support other VMA sizes, except 39 which does not
      have enough bits to support the Go heap requirements.
      
      Patch by Fangming Fang <Fangming.Fang@arm.com>.
      
      Reviewers: kubamracek, dvyukov, javed.absar
      
      Subscribers: mcrosier, dberris, mgorny, kristof.beyls, delcypher, #sanitizers, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52167
      
      llvm-svn: 342541
      86a5e436
    • Dean Michael Berris's avatar
      [XRay] Detect terminfo library · ff93d3a8
      Dean Michael Berris authored
      Instead of assuming `-ltinfo` works, check whether there's terminfo
      support on the host where LLVMSupport is compiled.
      
      Follow-up to D52220.
      
      llvm-svn: 342523
      ff93d3a8
    • Dean Michael Berris's avatar
      [XRay][compiler-rt] FDRLogWriter Abstraction · b64f71b0
      Dean Michael Berris authored
      Summary:
      This change introduces an `FDRLogWriter` type which is responsible for
      serialising metadata and function records to character buffers. This is
      the first step in a refactoring of the implementation of the FDR runtime
      to allow for more granular testing of the individual components of the
      implementation.
      
      The main contribution of this change is a means of hiding the details of
      how specific records are written to a buffer, and for managing the
      extents of these buffers. We make use of C++ features (templates and
      some metaprogramming) to reduce repetition in the act of writing out
      specific kinds of records to the buffer.
      
      In this process, we make a number of changes across both LLVM and
      compiler-rt to allow us to use the `Trace` abstraction defined in the
      LLVM project in the testing of the runtime implementation. This gives us
      a closer end-to-end test which version-locks the runtime implementation
      with the loading implementation in LLVM.
      
      We also allow using gmock in compiler-rt unit tests, by adding the
      requisite definitions in the `AddCompilerRT.cmake` module.
      
      Finally, we've gone ahead and updated the FDR logging implementation to
      use the FDRLogWriter for the lowest-level record-writing details.
      
      Following patches will isolate the state machine transitions which
      manage the set-up and tear-down of the buffers we're using in multiple
      threads.
      
      Reviewers: mboerger, eizan
      
      Subscribers: mgorny, jfb, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52220
      
      llvm-svn: 342518
      b64f71b0
  4. Sep 18, 2018
  5. Sep 17, 2018
    • Dan Liew's avatar
      [UBSan] Partially fix `test/ubsan/TestCases/Misc/log-path_test.cc` so that it can run on devices. · fb310c0a
      Dan Liew authored
      Summary:
      In order for this test to work the log file needs to be removed from both
      from the host and device. To fix this the `rm` `RUN` lines have been
      replaced with `RUN: rm` followed by `RUN: %device_rm`.
      
      Initially I tried having it so that `RUN: %run rm` implicitly runs `rm`
      on the host as well so that only one `RUN` line is needed. This
      simplified writing the test however that had two large drawbacks.
      
      * It's potentially very confusing (e.g. for use of the device scripts outside
        of the lit tests) if asking for `rm` to run on device also causes files
        on the host to be deleted.
      
      * This doesn't work well with the glob patterns used in the test.
        The host shell expands the `%t.log.*` glob pattern and not on the
        device so we could easily miss deleting old log files from previous
        test runs if the corresponding file doesn't exist on the host.
      
      So instead deletion of files on the device and host are explicitly
      separate commands.
      
      The command to delete files from a device is provided by a new
      substitution `%device_rm` as suggested by Filipe Cabecinhas.
      
      The semantics of `%device_rm` are that:
      
      * It provides a way remove files from a target device when
       the host is not the same as the target. In the case that the
       host and target are the same it is a no-op.
      
      * It interprets shell glob patterns in the context of the device
        file system instead of the host file system.
        This solves the globbing problem provided the argument is quoted so
        that lit's underlying shell doesn't try to expand the glob pattern.
      
      * It supports the `-r` and `-f` flags of the `rm` command,
        with the same semantics.
      
      Right now an implementation of `%device_rm` is provided only for
      ios devices. For all other devices a lit warning is emitted and
      the `%device_rm` is treated as a no-op. This done to avoid changing
      the behaviour for other device types but leaves room for others
      to implement `%device_rm`.
      
      The ios device implementation uses the `%run` wrapper to do the work
      of removing files on a device.
      
      The `iossim_run.py` script has been fixed so that it just runs `rm`
      on the host operating system because the device and host file system
      are the same.
      
      rdar://problem/41126835
      
      Reviewers: vsk, kubamracek, george.karpenkov, eugenis
      
      Subscribers: #sanitizers, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51648
      
      llvm-svn: 342391
      fb310c0a
    • Petr Hosek's avatar
      [sanitizer_common] Fuchsia now supports .preinit_array · 040ab65c
      Petr Hosek authored
      Support for .preinit_array has been implemented in Fuchsia's libc,
      add Fuchsia to the list of platforms that support this feature.
      
      Differential Revision: https://reviews.llvm.org/D52155
      
      llvm-svn: 342357
      040ab65c
    • Dean Michael Berris's avatar
      [XRay] Simplify FDR buffer management · 1a23d3bb
      Dean Michael Berris authored
      Summary:
      This change makes XRay FDR mode use a single backing store for the
      buffer queue, and have indexes into that backing store instead. We also
      remove the reliance on the internal allocator implementation in the FDR
      mode logging implementation.
      
      In the process of making this change we found an inconsistency with the
      way we're returning buffers to the queue, and how we're setting the
      extents. We take the chance to simplify the way we're managing the
      extents of each buffer. It turns out we do not need the indirection for
      the extents, so we co-host the atomic 64-bit int with the buffer object.
      It also seems that we've not been returning the buffers for the thread
      running the flush functionality when writing out the files, so we can
      run into a situation where we could be missing data.
      
      We consolidate all the allocation routines now into xray_allocator.h,
      where we used to have routines defined in xray_buffer_queue.cc.
      
      Reviewers: mboerger, eizan
      
      Subscribers: jfb, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52077
      
      llvm-svn: 342356
      1a23d3bb
    • Dean Michael Berris's avatar
      [XRay] Fix FDR initialization · d5577aea
      Dean Michael Berris authored
      Follow-up to D51606.
      
      llvm-svn: 342355
      d5577aea
  6. Sep 15, 2018
  7. Sep 14, 2018
    • Matt Morehouse's avatar
      [libFuzzer] Disable value-profile-strncmp.test on aarch64. · 0039792d
      Matt Morehouse authored
      Test no longer finds the BINGO on clang-cmake-aarch64-full bot, and I
      can't reproduce on our ARM machine.
      
      llvm-svn: 342255
      0039792d
    • Ulrich Weigand's avatar
      [asan] Fix test case failure on SystemZ · 9ed8fd5d
      Ulrich Weigand authored
      Since we changed our inlining parameters, this test case was failing
      on SystemZ, as the two tests were now both inlined into the main
      function, which the test didn't expect.  Fixed by adding a few more
      noinline attributes.
      
      llvm-svn: 342236
      9ed8fd5d
    • Dean Michael Berris's avatar
      [XRay][clang] Emit "never-instrument" attribute · 05cf4434
      Dean Michael Berris authored
      Summary:
      Before this change, we only emit the XRay attributes in LLVM IR when the
      -fxray-instrument flag is provided. This may cause issues with thinlto
      when the final binary is being built/linked with -fxray-instrument, and
      the constitutent LLVM IR gets re-lowered with xray instrumentation.
      
      With this change, we can honour the "never-instrument "attributes
      provided in the source code and preserve those in the IR. This way, even
      in thinlto builds, we retain the attributes which say whether functions
      should never be XRay instrumented.
      
      This change addresses llvm.org/PR38922.
      
      Reviewers: mboerger, eizan
      
      Subscribers: mehdi_amini, dexonsmith, cfe-commits, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D52015
      
      llvm-svn: 342200
      05cf4434
  8. Sep 13, 2018
    • Kostya Serebryany's avatar
    • Dean Michael Berris's avatar
      [XRay] Bug fixes for FDR custom event and arg-logging · 90a46bde
      Dean Michael Berris authored
      Summary:
      This change has a number of fixes for FDR mode in compiler-rt along with
      changes to the tooling handling the traces in llvm.
      
      In the runtime, we do the following:
      
      - Advance the "last record" pointer appropriately when writing the
        custom event data in the log.
      
      - Add XRAY_NEVER_INSTRUMENT in the rewinding routine.
      
      - When collecting the argument of functions appropriately marked, we
        should not attempt to rewind them (and reset the counts of functions
        that can be re-wound).
      
      In the tooling, we do the following:
      
      - Remove the state logic in BlockIndexer and instead rely on the
        presence/absence of records to indicate blocks.
      
      - Move the verifier into a loop associated with each block.
      
      Reviewers: mboerger, eizan
      
      Subscribers: llvm-commits, hiraditya
      
      Differential Revision: https://reviews.llvm.org/D51965
      
      llvm-svn: 342122
      90a46bde
    • Vlad Tsyrklevich's avatar
      [TSan] Update test values · aadfe466
      Vlad Tsyrklevich authored
      Similarly to before, D51985 again reduced the number of registers
      required for the read/write routines causing this test to fail on
      sanitizer-x86_64-linux-autoconf.
      
      llvm-svn: 342092
      aadfe466
  9. Sep 12, 2018
  10. Sep 11, 2018
Loading