Skip to content
  1. Aug 22, 2018
  2. Aug 07, 2018
    • Dean Michael Berris's avatar
      [XRay] Improve error reporting when loading traces · a9d477a6
      Dean Michael Berris authored
      Summary:
      This change uses a single offset pointer used throughout the
      implementation of the individual record parsers. This allows us to
      report where in a trace file parsing failed.
      
      We're still in an intermediate step here as we prepare to refactor this
      further into a set of types and use object-oriented design principles
      for a cleaner implementation. The next steps will be to allow us to
      parse/dump files in a streaming fashion and incrementally build up the
      structures in memory instead of the current all-or-nothing approach.
      
      Reviewers: kpw, eizan
      
      Reviewed By: kpw
      
      Subscribers: hiraditya, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50169
      
      llvm-svn: 339092
      a9d477a6
  3. Aug 04, 2018
  4. Aug 03, 2018
    • Nico Weber's avatar
      convert some tabs to spaces · 0e815195
      Nico Weber authored
      llvm-svn: 338880
      0e815195
    • Dean Michael Berris's avatar
      [XRay] fixup: add one more missing std::move(...) · 7a3bd723
      Dean Michael Berris authored
      Follow up to D48370.
      
      llvm-svn: 338829
      7a3bd723
    • Dean Michael Berris's avatar
      [XRay] fixup: Add missing std::move(...) · 5e8c5a31
      Dean Michael Berris authored
      Follow up to D48370.
      
      llvm-svn: 338827
      5e8c5a31
    • Dean Michael Berris's avatar
      [XRay][llvm] Load XRay Profiles · 13d04e76
      Dean Michael Berris authored
      Summary:
      This change implements the profile loading functionality in LLVM to
      support XRay's profiling mode in compiler-rt.
      
      We introduce a type named `llvm::xray::Profile` which allows building a
      profile representation. We can load an XRay profile from a file to build
      Profile instances, or do it manually through the Profile type's API.
      
      The intent is to get the `llvm-xray` tool to generate `Profile`
      instances and use that as the common abstraction through which all
      conversion and analysis can be done. In the future we can generate
      `Profile` instances from `Trace` instances as well, through conversion
      functions.
      
      Some of the key operations supported by the `Profile` API are:
      
      - Path interning (`Profile::internPath(...)`) which returns a unique path
        identifier.
      
      - Block appending (`Profile::addBlock(...)`) to add thread-associated
        profile information.
      
      - Path ID to Path lookup (`Profile::expandPath(...)`) to look up a
        PathID and return the original interned path.
      
      - Block iteration.
      
      A 'Path' in this context represents the function call stack in
      leaf-to-root order. This is represented as a path in an internally
      managed prefix tree in the `Profile` instance. Having a handle (PathID)
      to identify the unique Paths we encounter for a particular Profile
      allows us to reduce the amount of memory required to associate profile
      data to a particular Path.
      
      This is the first of a series of patches to migrate the `llvm-stacks`
      tool towards using a single profile representation.
      
      Depends on D48653.
      
      Reviewers: kpw, eizan
      
      Reviewed By: kpw
      
      Subscribers: mgorny, llvm-commits, hiraditya
      
      Differential Revision: https://reviews.llvm.org/D48370
      
      llvm-svn: 338825
      13d04e76
  5. Jul 13, 2018
    • Dean Michael Berris's avatar
      [XRay][compiler-rt] Add PID field to llvm-xray tool and add PID metadata record entry in FDR mode · 10141261
      Dean Michael Berris authored
      Summary:
      llvm-xray changes:
      - account-mode - process-id  {...} shows after thread-id
      - convert-mode - process {...} shows after thread
      - parses FDR and basic mode pid entries
      - Checks version number for FDR log parsing.
      
      Basic logging changes:
      - Update header version from 2 -> 3
      
      FDR logging changes:
      - Update header version from 2 -> 3
      - in writeBufferPreamble, there is an additional PID Metadata record (after thread id record and tsc record)
      
      Test cases changes:
      - fdr-mode.cc, fdr-single-thread.cc, fdr-thread-order.cc modified to catch process id output in the log.
      
      Reviewers: dberris
      
      Reviewed By: dberris
      
      Subscribers: hiraditya, llvm-commits, #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D49153
      
      llvm-svn: 336974
      10141261
  6. Jan 30, 2018
  7. Nov 21, 2017
    • Dean Michael Berris's avatar
      [XRay] Use optimistic logging model for FDR mode · 6ec72625
      Dean Michael Berris authored
      Summary:
      Before this change, the FDR mode implementation relied on at thread-exit
      handling to return buffers back to the (global) buffer queue. This
      introduces issues with the initialisation of the thread_local objects
      which, even through the use of pthread_setspecific(...) may eventually
      call into an allocation function. Similar to previous changes in this
      line, we're finding that there is a huge potential for deadlocks when
      initialising these thread-locals when the memory allocation
      implementation is also xray-instrumented.
      
      In this change, we limit the call to pthread_setspecific(...) to provide
      a non-null value to associate to the key created with
      pthread_key_create(...). While this doesn't completely eliminate the
      potential for the deadlock(s), it does allow us to still clean up at
      thread exit when we need to. The change is that we don't need to do more
      work when starting and ending a thread's lifetime. We also have a test
      to make sure that we actually can safely recycle the buffers in case we
      end up re-using the buffer(s) available from the queue on multiple
      thread entry/exits.
      
      This change cuts across both LLVM and compiler-rt to allow us to update
      both the XRay runtime implementation as well as the library support for
      loading these new versions of the FDR mode logging. Version 2 of the FDR
      logging implementation makes the following changes:
      
        * Introduction of a new 'BufferExtents' metadata record that's outside
          of the buffer's contents but are written before the actual buffer.
          This data is associated to the Buffer handed out by the BufferQueue
          rather than a record that occupies bytes in the actual buffer.
      
        * Removal of the "end of buffer" records. This is in-line with the
          changes we described above, to allow for optimistic logging without
          explicit record writing at thread exit.
      
      The optimistic logging model operates under the following assumptions:
      
        * Threads writing to the buffers will potentially race with the thread
          attempting to flush the log. To avoid this situation from occuring,
          we make sure that when we've finalized the logging implementation,
          that threads will see this finalization state on the next write, and
          either choose to not write records the thread would have written or
          write the record(s) in two phases -- first write the record(s), then
          update the extents metadata.
      
        * We change the buffer queue implementation so that once it's handed
          out a buffer to a thread, that we assume that buffer is marked
          "used" to be able to capture partial writes. None of this will be
          safe to handle if threads are racing to write the extents records
          and the reader thread is attempting to flush the log. The optimism
          comes from the finalization routine being required to complete
          before we attempt to flush the log.
      
      This is a fairly significant semantics change for the FDR
      implementation. This is why we've decided to update the version number
      for FDR mode logs. The tools, however, still need to be able to support
      older versions of the log until we finally deprecate those earlier
      versions.
      
      Reviewers: dblaikie, pelikan, kpw
      
      Subscribers: llvm-commits, hiraditya
      
      Differential Revision: https://reviews.llvm.org/D39526
      
      llvm-svn: 318733
      6ec72625
  8. Nov 14, 2017
  9. Oct 05, 2017
    • Dean Michael Berris's avatar
      [XRay][tools] Support arg1 logging entries in the basic logging mode · 0a465d7a
      Dean Michael Berris authored
      Summary:
      The arg1 logging handler changed in compiler-rt to start writing a
      different type for entries encountered when logging the first argument
      of XRay-instrumented functions. This change allows the trace loader to
      support reading these record types as well as prepare for when the
      basic (naive) mode implementation starts writing down the argument
      payloads.
      
      Without this change, binaries with arg1 logging support enabled start
      writing unreadable logs for any of the XRay tracing tools.
      
      Reviewers: pelikan
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D38550
      
      llvm-svn: 314967
      0a465d7a
  10. Sep 27, 2017
  11. Sep 18, 2017
  12. Sep 15, 2017
    • Martin Pelikan's avatar
      [XRay] fix and clarify comments in the log file decoder · d78db156
      Martin Pelikan authored
      Summary:
      For readers unfamiliar with the XRay code base, reference the compiler-rt
      implementation even though we're not allowed to share any code and explain
      our little-endian views more clearly.
      
      For code clarity either get rid of obvious comments or explain their
      intentions, fix typos, correct coding style according to LLVM's standards
      and manually CSE long expressions to point out it is the same expression.
      
      Reviewers: dberris
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D34339
      
      llvm-svn: 313340
      d78db156
  13. Aug 21, 2017
    • Dean Michael Berris's avatar
      [XRay][tools] Support new kinds of instrumentation map entries · c5caf3e9
      Dean Michael Berris authored
      Summary:
      When extracting the instrumentation map from a binary, we should be able
      to recognize the new kinds of instrumentation sleds we've been emitting
      with the compiler using -fxray-instrument. This change adds a test for
      all the kinds of sleds we currently support (sans the tail-call sled,
      which is a bit harder to force in a simple prebuilt input).
      
      Reviewers: kpw, dblaikie
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D36819
      
      llvm-svn: 311305
      c5caf3e9
  14. Aug 20, 2017
  15. Aug 02, 2017
  16. Jun 06, 2017
    • Chandler Carruth's avatar
      Sort the remaining #include lines in include/... and lib/.... · 6bda14b3
      Chandler Carruth authored
      I did this a long time ago with a janky python script, but now
      clang-format has built-in support for this. I fed clang-format every
      line with a #include and let it re-sort things according to the precise
      LLVM rules for include ordering baked into clang-format these days.
      
      I've reverted a number of files where the results of sorting includes
      isn't healthy. Either places where we have legacy code relying on
      particular include ordering (where possible, I'll fix these separately)
      or where we have particular formatting around #include lines that
      I didn't want to disturb in this patch.
      
      This patch is *entirely* mechanical. If you get merge conflicts or
      anything, just ignore the changes in this patch and run clang-format
      over your #include lines in the files.
      
      Sorry for any noise here, but it is important to keep these things
      stable. I was seeing an increasing number of patches with irrelevant
      re-ordering of #include lines because clang-format was used. This patch
      at least isolates that churn, makes it easy to skip when resolving
      conflicts, and gets us to a clean baseline (again).
      
      llvm-svn: 304787
      6bda14b3
  17. May 12, 2017
  18. Apr 06, 2017
  19. Mar 30, 2017
  20. Mar 29, 2017
    • Dean Michael Berris's avatar
      [XRay] Update FDR log reader to be aware of buffer sizes per thread. · 60c24878
      Dean Michael Berris authored
      Summary:
      It is problematic for this reader that it expects to read data from
      several threads, but the header or message format does not define
      framing. Since the buffers are reused, we can't rely on skipping
      zeroed out data as a synchronization method either.
      
      There is an argument that this is not version compatible with the format
      the reader expected previously. I argue that since the writer wrote garbage
      past the end of buffer record, there is no currently working reader to
      compromise.
      
      The corresponding writer change is posted to D31384.
      
      Reviewers: dberris, pelikan
      
      Reviewed By: dberris
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D31385
      
      llvm-svn: 298983
      60c24878
  21. Feb 17, 2017
  22. Feb 11, 2017
  23. Feb 10, 2017
    • Tim Shen's avatar
      [XRay] Implement powerpc64le xray. · 918ed871
      Tim Shen authored
      Summary:
      powerpc64 big-endian is not supported, but I believe that most logic can
      be shared, except for xray_powerpc64.cc.
      
      Also add a function InvalidateInstructionCache to xray_util.h, which is
      copied from llvm/Support/Memory.cpp. I'm not sure if I need to add a unittest,
      and I don't know how.
      
      Reviewers: dberris, echristo, iteratee, kbarton, hfinkel
      
      Subscribers: mehdi_amini, nemanjai, mgorny, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D29742
      
      llvm-svn: 294781
      918ed871
  24. Feb 09, 2017
  25. Feb 01, 2017
    • Dean Michael Berris's avatar
      [XRay] Define the InstrumentationMap type · 0e8ababf
      Dean Michael Berris authored
      Summary:
      This change implements the instrumentation map loading library which can
      understand both YAML-defined instrumentation maps, and ELF 64-bit object
      files that have the XRay instrumentation map section. We break it out
      into a library on its own to allow for other applications to deal with
      the XRay instrumentation map defined in XRay-instrumented binaries.
      
      This type provides both raw access to the logical representation of the
      instrumentation map entries as well as higher level functions for
      converting a function ID into a function address.
      
      At this point we only support ELF64 binaries and YAML-defined XRay
      instrumentation maps. Future changes should extend this to support
      32-bit ELF binaries, as well as other binary formats (like MachO).
      
      As part of this change we also migrate all uses of the extraction logic
      that used to be defined in tools/llvm-xray/ to use this new type and
      interface for loading from files. We also remove the flag from the
      `llvm-xray` tool that required users to specify the type of the
      instrumentation map file being provided to instead make the library
      auto-detect the file type.
      
      Reviewers: dblaikie
      
      Subscribers: mgorny, varno, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D29319
      
      llvm-svn: 293721
      0e8ababf
  26. Jan 12, 2017
  27. Jan 11, 2017
    • Dean Michael Berris's avatar
      [XRay] Define the library for XRay trace logs · d6c18657
      Dean Michael Berris authored
      Summary:
      In this change we move the definition of the log reading routines from
      the tools directory in LLVM to {include/llvm,lib}/XRay. We improve the
      documentation a little bit for the publicly accessible headers, and
      adjust the top-matter. This also leads to some refactoring and cleanup
      in the tooling code.
      
      In particular, we do the following:
      
        - Rename the class from LogReader to Trace, as it better represents
          the logical set of records as opposed to a log.
        - Use file type detection instead of asking the user to say what
          format the input file is. This allows us to keep the interface
          simple and encapsulate the logic of loading the data appropriately.
      
      In future changes we increase the API surface and write dedicated unit
      tests for the XRay library.
      
      Depends on D24376.
      
      Reviewers: dblaikie, echristo
      
      Subscribers: mehdi_amini, mgorny, llvm-commits, varno
      
      Differential Revision: https://reviews.llvm.org/D28345
      
      llvm-svn: 291652
      d6c18657
Loading