re-instate counting of sparks converted
authorSimon Marlow <marlowsd@gmail.com>
Thu, 6 Nov 2008 16:08:10 +0000 (16:08 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Thu, 6 Nov 2008 16:08:10 +0000 (16:08 +0000)
lost in patch "Run sparks in batches"

rts/Capability.c
rts/Capability.h
rts/PrimOps.cmm

index ddb47b4..9b5d81d 100644 (file)
@@ -55,7 +55,7 @@ globalWorkToDo (void)
 
 #if defined(THREADED_RTS)
 StgClosure *
-stealWork (Capability *cap)
+findSpark (Capability *cap)
 {
   /* use the normal Sparks.h interface (internally modified to enable
      concurrent stealing) 
@@ -66,12 +66,24 @@ stealWork (Capability *cap)
   rtsBool retry;
   nat i = 0;
 
+  // first try to get a spark from our own pool.
+  // We should be using reclaimSpark(), because it works without
+  // needing any atomic instructions:
+  //   spark = reclaimSpark(cap->sparks);
+  // However, measurements show that this makes at least one benchmark
+  // slower (prsa) and doesn't affect the others.
+  spark = tryStealSpark(cap);
+  if (spark != NULL) {
+      cap->sparks_converted++;
+      return spark;
+  }
+
+  if (n_capabilities == 1) { return NULL; } // makes no sense...
+
   debugTrace(DEBUG_sched,
             "cap %d: Trying to steal work from other capabilities", 
             cap->no);
 
-  if (n_capabilities == 1) { return NULL; } // makes no sense...
-
   do {
       retry = rtsFalse;
 
@@ -96,6 +108,7 @@ stealWork (Capability *cap)
               debugTrace(DEBUG_sched,
                 "cap %d: Stole a spark from capability %d",
                          cap->no, robbed->no);
+              cap->sparks_converted++;
               return spark;
           }
           // otherwise: no success, try next one
index 07b8838..db9e1e3 100644 (file)
@@ -245,9 +245,9 @@ void shutdownCapability (Capability *cap, Task *task, rtsBool wait_foreign);
 //
 rtsBool tryGrabCapability (Capability *cap, Task *task);
 
-// Try to steal a spark from other Capabilities
+// Try to find a spark to run
 //
-StgClosure *stealWork (Capability *cap);
+StgClosure *findSpark (Capability *cap);
 
 // True if any capabilities have sparks
 //
index 55ada8c..f63f20a 100644 (file)
@@ -2295,17 +2295,11 @@ getSparkzh_fast
 #ifndef THREADED_RTS
    RET_NP(0,ghczmprim_GHCziBool_False_closure);
 #else
-   (spark) = foreign "C" tryStealSpark(MyCapability());
+   (spark) = foreign "C" findSpark(MyCapability());
    if (spark != 0) {
       RET_NP(1,spark);
    } else {
-      (spark) = foreign "C" stealWork (MyCapability());
-      if (spark != 0) {
-         RET_NP(1,spark);
-      } else {
-         RET_NP(0,ghczmprim_GHCziBool_False_closure);
-
-      }
+      RET_NP(0,ghczmprim_GHCziBool_False_closure);
    }
 #endif
 }