Skip to content
  1. Sep 14, 2016
    • Sanjoy Das's avatar
      [Stackmap] Added callsite counts to emitted function information. · 23f06e53
      Sanjoy Das authored
      Summary:
      It was previously not possible for tools to use solely the stackmap
      information emitted to reconstruct the return addresses of callsites in
      the map, which is necessary to use the information to walk a stack. This
      patch adds per-function callsite counts when emitting the stackmap
      section in order to resolve the problem. Note that this slightly alters
      the stackmap format, so external tools parsing these maps will need to
      be updated.
      
      **Problem Details:**
      Records only store their offset from the beginning of the function they
      belong to. While these records and the functions are output in program
      order, it is not possible to determine where the end of one function's
      records are without the callsite count when processing the records to
      compute return addresses.
      
      Patch by Kavon Farvardin!
      
      Reviewers: atrick, ributzka, sanjoy
      
      Subscribers: nemanjai
      
      Differential Revision: https://reviews.llvm.org/D23487
      
      llvm-svn: 281532
      23f06e53
  2. Jul 16, 2015
  3. Jul 15, 2015
    • Hal Finkel's avatar
      [PowerPC] Use the ABI indirect-call protocol for patchpoints · 9bbad03b
      Hal Finkel authored
      We used to take the address specified as the direct target of the patchpoint
      and did no TOC-pointer handling.  This, however, as not all that useful,
      because MCJIT tends to create a lot of modules, and they have their own TOC
      sections. Thus, to call from the generated code to other generated code, you
      really need to switch TOC pointers. Make this work as expected, and under
      ELFv1, tread the address as the function descriptor address so that the correct
      TOC pointer can be loaded.
      
      llvm-svn: 242217
      9bbad03b
  4. Jan 16, 2015
    • Hal Finkel's avatar
      [PowerPC] Adjust PatchPoints for ppc64le · 52f7c018
      Hal Finkel authored
      Bill Schmidt pointed out that some adjustments would be needed to properly
      support powerpc64le (using the ELF V2 ABI). For one thing, R11 is not available
      as a scratch register, so we need to use R12. R12 is also available under ELF
      V1, so to maintain consistency, I flipped the order to make R12 the first
      scratch register in the array under both ABIs.
      
      llvm-svn: 226247
      52f7c018
  5. Jan 14, 2015
    • Hal Finkel's avatar
      Revert "r225811 - Revert "r225808 - [PowerPC] Add StackMap/PatchPoint support"" · 934361a4
      Hal Finkel authored
      This re-applies r225808, fixed to avoid problems with SDAG dependencies along
      with the preceding fix to ScheduleDAGSDNodes::RegDefIter::InitNodeNumDefs.
      These problems caused the original regression tests to assert/segfault on many
      (but not all) systems.
      
      Original commit message:
      
      This commit does two things:
      
       1. Refactors PPCFastISel to use more of the common infrastructure for call
          lowering (this lets us take advantage of this common code for lowering some
          common intrinsics, stackmap/patchpoint among them).
      
       2. Adds support for stackmap/patchpoint lowering. For the most part, this is
          very similar to the support in the AArch64 target, with the obvious differences
          (different registers, NOP instructions, etc.). The test cases are adapted
          from the AArch64 test cases.
      
      One difference of note is that the patchpoint call sequence takes 24 bytes, so
      you can't use less than that (on AArch64 you can go down to 16). Also, as noted
      in the docs, we take the patchpoint address to be the actual code address
      (assuming the call is local in the TOC-sharing sense), which should yield
      higher performance than generating the full cross-DSO indirect-call sequence
      and is likely just as useful for JITed code (if not, we'll change it).
      
      StackMaps and Patchpoints are still marked as experimental, and so this support
      is doubly experimental. So go ahead and experiment!
      
      llvm-svn: 225909
      934361a4
  6. Jan 13, 2015
    • Hal Finkel's avatar
      Revert "r225808 - [PowerPC] Add StackMap/PatchPoint support" · 63fb9281
      Hal Finkel authored
      Reverting this while I investiage buildbot failures (segfaulting in
      GetCostForDef at ScheduleDAGRRList.cpp:314).
      
      llvm-svn: 225811
      63fb9281
    • Hal Finkel's avatar
      [PowerPC] Add StackMap/PatchPoint support · 821befd5
      Hal Finkel authored
      This commit does two things:
      
       1. Refactors PPCFastISel to use more of the common infrastructure for call
          lowering (this lets us take advantage of this common code for lowering some
          common intrinsics, stackmap/patchpoint among them).
      
       2. Adds support for stackmap/patchpoint lowering. For the most part, this is
          very similar to the support in the AArch64 target, with the obvious differences
          (different registers, NOP instructions, etc.). The test cases are adapted
          from the AArch64 test cases.
      
      One difference of note is that the patchpoint call sequence takes 24 bytes, so
      you can't use less than that (on AArch64 you can go down to 16). Also, as noted
      in the docs, we take the patchpoint address to be the actual code address
      (assuming the call is local in the TOC-sharing sense), which should yield
      higher performance than generating the full cross-DSO indirect-call sequence
      and is likely just as useful for JITed code (if not, we'll change it).
      
      StackMaps and Patchpoints are still marked as experimental, and so this support
      is doubly experimental. So go ahead and experiment!
      
      llvm-svn: 225808
      821befd5
  7. Apr 03, 2014
  8. Apr 01, 2014
  9. Jan 30, 2014
  10. Dec 24, 2013
Loading