Skip to content
  1. Oct 26, 2016
    • Dean Michael Berris's avatar
      [XRay] Implement `llvm-xray extract`, start of the llvm-xray tool · c92bfb5a
      Dean Michael Berris authored
      Usage:
      
        llvm-xray extract <object file> [-o <filename or '-'>]
      
      The tool gets the XRay instrumentation map from an object file and turns
      it into YAML.  We first support ELF64 sleds on x86_64 binaries, with
      provision for supporting other supported platforms and formats later.
      
      This is the first of a many-part change to fully implement the
      `llvm-xray` tool.
      
      We also define a subcommand registration and dispatch mechanism to be
      used by other further subcommand implementations for llvm-xray.
      
      Diffusion Revision: https://reviews.llvm.org/D21987
      
      llvm-svn: 285165
      c92bfb5a
    • Dean Michael Berris's avatar
      Revert "[XRay] Implement `llvm-xray extract`, start of the llvm-xray tool" · f7bdbbcc
      Dean Michael Berris authored
      Reverts r285155 -- misconfigured tests.
      
      llvm-svn: 285156
      f7bdbbcc
    • Dean Michael Berris's avatar
      [XRay] Implement `llvm-xray extract`, start of the llvm-xray tool · d21e0a7b
      Dean Michael Berris authored
      Usage:
      
        llvm-xray extract <object file> [-o <filename or '-'>]
      
      The tool gets the XRay instrumentation map from an object file and turns
      it into YAML.  We first support ELF64 sleds on x86_64 binaries, with
      provision for supporting other supported platforms and formats later.
      
      This is the first of a many-part change to fully implement the
      `llvm-xray` tool.
      
      We also define a subcommand registration and dispatch mechanism to be
      used by other further subcommand implementations for llvm-xray.
      
      llvm-svn: 285155
      d21e0a7b
    • Rui Ueyama's avatar
      Use printf instead of "echo -e" or "echo -n". · 2241b84f
      Rui Ueyama authored
      Not all echo commands support "-e". On the other hand, printf
      command is in POSIX, so it's more portable than "echo -e".
      
      llvm-svn: 285151
      2241b84f
    • James Y Knight's avatar
      [Sparc] Don't overlap variable-sized allocas with other stack variables. · 2e64b8b7
      James Y Knight authored
      On SparcV8, it was previously the case that a variable-sized alloca
      might overlap by 4-bytes the last fixed stack variable, effectively
      because 92 (the number of bytes reserved for the register spill area) !=
      96 (the offset added to SP for where to start a DYNAMIC_STACKALLOC).
      
      It's not as simple as changing 96 to 92, because variables that should
      be 8-byte aligned would then be misaligned.
      
      For now, simply increase the allocation size by 8 bytes for each dynamic
      allocation -- wastes space, but at least doesn't overlap. As the large
      comment says, doing this more efficiently will require larger changes in
      llvm.
      
      Also adds some test cases showing that we continue to not support
      dynamic stack allocation and over-alignment in the same function.
      
      llvm-svn: 285131
      2e64b8b7
    • Bob Haarman's avatar
      [codeview] support emitting indirect virtual base class information · 26a87bd0
      Bob Haarman authored
      Summary:
      Fixes PR28281.
      
      MSVC lists indirect virtual base classes in the field list of a class,
      using LF_IVBCLASS records. This change makes LLVM emit such records
      when processing DW_TAG_inheritance tags with the DIFlagVirtual and
      (newly introduced) DIFlagIndirect tags.
      
      Reviewers: rnk, ruiu, zturner
      
      Differential Revision: https://reviews.llvm.org/D25578
      
      llvm-svn: 285130
      26a87bd0
    • Simon Pilgrim's avatar
      [DAGCombiner] Enable (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y),... · de86241a
      Simon Pilgrim authored
      [DAGCombiner] Enable (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1)) combine for splatted vectors
      
      llvm-svn: 285129
      de86241a
  2. Oct 25, 2016
  3. Oct 24, 2016
Loading