Skip to content
  1. Apr 04, 2018
  2. Apr 03, 2018
    • Jessica Paquette's avatar
      [MachineOutliner] Keep track of fns that use a redzone in AArch64FunctionInfo · 642f6c61
      Jessica Paquette authored
      This patch adds a hasRedZone() function to AArch64MachineFunctionInfo. It
      returns true if the function is known to use a redzone, false if it is known
      to not use a redzone, and no value otherwise.
      
      This removes the requirement to pass -mno-red-zone when outlining for AArch64.
      
      https://reviews.llvm.org/D45189
      
      llvm-svn: 329120
      642f6c61
    • Farhana Aleen's avatar
      Revert "MSG" · 93694734
      Farhana Aleen authored
      This reverts commit 9a0ce889d1c39c74d69ecad5ce9c875155ae55de.
      
      This was committed by mistake.
      
      llvm-svn: 329119
      93694734
    • Vlad Tsyrklevich's avatar
      Fix bad copy-and-paste in r329108 · 07cf78cd
      Vlad Tsyrklevich authored
      llvm-svn: 329118
      07cf78cd
    • Rafael Espindola's avatar
      Inline initOffsetMap. · 6cd7af51
      Rafael Espindola authored
      In the lld perf builder r328686 had a negative impact in
      stalled-cycles-frontend. Somehow that stat is not showing on my
      machine, but the attached patch shows an improvement on cache-misses,
      which is probably a reasonable proxy.
      
      My working theory is that given a large input the pieces vector is out
      of cache by the time initOffsetMap runs.
      
      Both finalizeContents implementation have a convenient location for
      initializing the OffsetMap, so this seems the best solution.
      
      llvm-svn: 329117
      6cd7af51
    • Jessica Paquette's avatar
      [MachineOutliner][NFC] Make outlined functions have internal linkage · d506bf8e
      Jessica Paquette authored
      The linkage type on outlined functions was private before. This meant that if
      you set a breakpoint in an outlined function, the debugger wouldn't be able to
      give a sane name to the outlined function.
      
      This commit changes the linkage type to internal and updates any tests that
      relied on the prefixes on the names of outlined functions.
       
      
      llvm-svn: 329116
      d506bf8e
Loading