1. 11 8月, 2022 1 次提交
  2. 10 8月, 2022 37 次提交
  3. 09 8月, 2022 2 次提交
    • P
      Mark phase prefetching. (#73375) · 45709118
      Peter Sollich 提交于
      This adds prefetching to the mark phase.
      
      The idea is that once we have established that an object is in one of the generations we want to collect, we prefetch its memory before we determine whether we have marked it already. This is because the mark bit is in the object itself, and thus requires accessing the object's memory.
      
      As the prefetching will take some time to take effect, we park the object in a queue (see type mark_queue_t below). We then retrieve an older object from the queue, and test whether it has been marked. This should be faster, because we have issued a prefetch for this older object's memory a while back.
      
      In quite a few places we now need to drain the queue to ensure correctness - see calls to drain_mark_queue().
      45709118
    • P
      [PERF] Fix "x$PERF_PREREQS_INSTALLED was unexpected at this time" Error for... · b8554bee
      Parker Bibus 提交于
      [PERF] Fix "x$PERF_PREREQS_INSTALLED was unexpected at this time" Error for Microbenchmarks (#73584)
      
      * Try double brackets.
      
      * Only use the bash check if running on non-windows machine, added command for running on windows machines.
      
      * Undoing changes to if statement brackets (double to single now) as the double bracket is not necessary.
      
      * Use the correct, previously removed command.
      b8554bee