Set the correction factors in the sync_chain
authorBenjamin Poirier <benjamin.poirier@polymtl.ca>
Tue, 16 Mar 2010 20:14:10 +0000 (16:14 -0400)
committerBenjamin Poirier <benjamin.poirier@polymtl.ca>
Wed, 7 Apr 2010 16:11:38 +0000 (12:11 -0400)
... instead of in the event_processing. Using the correction factors, at least
through lttv, is specific to the viewer, not the trace type. The sync chain is
the part that contains code specific to a viewer.

Signed-off-by: Benjamin Poirier <benjamin.poirier@polymtl.ca>
lttv/lttv/sync/event_analysis_linreg.c
lttv/lttv/sync/event_processing.h
lttv/lttv/sync/event_processing_lttng_null.c
lttv/lttv/sync/event_processing_lttng_standard.c
lttv/lttv/sync/event_processing_text.c
lttv/lttv/sync/sync_chain.c
lttv/lttv/sync/sync_chain_lttv.c
lttv/lttv/sync/sync_chain_unittest.c

index 0cab480b5f64d444aaed1b887a4132db2a357009..bda898740f4cf8d7ccb965e97fee3e0a46bc2f35 100644 (file)
@@ -421,7 +421,7 @@ static void doGraphProcessing(SyncState* const syncState)
                        graph= (Graph*) result->data;
                        if (errorSum < graph->errorSum)
                        {
-                               g_debug("adding to graph");
+                               g_debug("new reference");
                                graph->errorSum= errorSum;
                                free(graph->previousVertex);
                                graph->previousVertex= previousVertex;
index 876ca1d71603a8edf05a8ddf33be15601e46a5ba..5ed1d91c881357db5e798c252a2161ed14823681 100644 (file)
@@ -32,7 +32,7 @@ typedef struct
        char* name;
 
        void (*initProcessing)(struct _SyncState* const syncStateLttv, ...);
-       void (*finalizeProcessing)(struct _SyncState* const syncState);
+       GArray* (*finalizeProcessing)(struct _SyncState* const syncState);
        void (*printProcessingStats)(struct _SyncState* const syncState);
        void (*destroyProcessing)(struct _SyncState* const syncState);
        GraphFunctions graphFunctions;
index 3f4c64c584684e533e9f0159df123adefab3025e..b9eecbf3c1547a998e3c8542f40412b3d646b5af 100644 (file)
@@ -32,7 +32,7 @@
 static void initProcessingLTTVNull(SyncState* const syncState, ...);
 static void destroyProcessingLTTVNull(SyncState* const syncState);
 
-static void finalizeProcessingLTTVNull(SyncState* const syncState);
+static GArray* finalizeProcessingLTTVNull(SyncState* const syncState);
 
 // Functions specific to this module
 static gboolean processEventLTTVNull(void* hookData, void* callData);
@@ -94,10 +94,14 @@ static void initProcessingLTTVNull(SyncState* const syncState, ...)
  *
  * Args:
  *   syncState     container for synchronization data.
+ *
+ * Returns:
+ *   Factors[traceNb] synchronization factors for each trace, empty in this
+ *   case
  */
-static void finalizeProcessingLTTVNull(SyncState* const syncState)
+static GArray* finalizeProcessingLTTVNull(SyncState* const syncState)
 {
-       return;
+       return g_array_new(FALSE, FALSE, sizeof(Factors));
 }
 
 
index 99086fe5e68a7ec5b6f72e468750862574d821d2..02354043f78e8aa272017da8e01441794fc874b6 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#define _ISOC99_SOURCE
-
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
 
-#include <math.h>
 #include <netinet/in.h>
 #include <stdarg.h>
 #include <stdint.h>
@@ -43,7 +40,7 @@
 static void initProcessingLTTVStandard(SyncState* const syncState, ...);
 static void destroyProcessingLTTVStandard(SyncState* const syncState);
 
-static void finalizeProcessingLTTVStandard(SyncState* const syncState);
+static GArray* finalizeProcessingLTTVStandard(SyncState* const syncState);
 static void printProcessingStatsLTTVStandard(SyncState* const syncState);
 static void writeProcessingGraphVariablesLTTVStandard(SyncState* const
        syncState, const unsigned int i);
@@ -166,83 +163,19 @@ static void initProcessingLTTVStandard(SyncState* const syncState, ...)
  *
  * Args:
  *   syncState     container for synchronization data.
+ *
+ * Returns:
+ *   Factors[traceNb] synchronization factors for each trace
  */
-static void finalizeProcessingLTTVStandard(SyncState* const syncState)
+static GArray* finalizeProcessingLTTVStandard(SyncState* const syncState)
 {
-       unsigned int i;
-       GArray* factors;
-       double minOffset, minDrift;
-       unsigned int refFreqTrace;
        ProcessingDataLTTVStandard* processingData;
 
        processingData= (ProcessingDataLTTVStandard*) syncState->processingData;
 
        partialDestroyProcessingLTTVStandard(syncState);
 
-       factors= syncState->matchingModule->finalizeMatching(syncState);
-
-       /* The offsets are adjusted so the lowest one is 0. This is done because
-        * of a Lttv specific limitation: events cannot have negative times. By
-        * having non-negative offsets, events cannot be moved backwards to
-        * negative times.
-        */
-       minOffset= 0;
-       for (i= 0; i < syncState->traceNb; i++)
-       {
-               minOffset= MIN(g_array_index(factors, Factors, i).offset, minOffset);
-       }
-
-       for (i= 0; i < syncState->traceNb; i++)
-       {
-               g_array_index(factors, Factors, i).offset-= minOffset;
-       }
-
-       /* Because the timestamps are corrected at the TSC level (not at the
-        * LttTime level) all trace frequencies must be made equal. We choose to
-        * use the frequency of the system with the lowest drift
-        */
-       minDrift= INFINITY;
-       refFreqTrace= 0;
-       for (i= 0; i < syncState->traceNb; i++)
-       {
-               if (g_array_index(factors, Factors, i).drift < minDrift)
-               {
-                       minDrift= g_array_index(factors, Factors, i).drift;
-                       refFreqTrace= i;
-               }
-       }
-       g_assert(syncState->traceNb == 0 || minDrift != INFINITY);
-
-       // Write the factors to the LttTrace structures
-       for (i= 0; i < syncState->traceNb; i++)
-       {
-               LttTrace* t;
-               Factors* traceFactors;
-
-               t= processingData->traceSetContext->traces[i]->t;
-               traceFactors= &g_array_index(factors, Factors, i);
-
-               t->drift= traceFactors->drift;
-               t->offset= traceFactors->offset;
-               t->start_freq=
-                       processingData->traceSetContext->traces[refFreqTrace]->t->start_freq;
-               t->freq_scale=
-                       processingData->traceSetContext->traces[refFreqTrace]->t->freq_scale;
-               t->start_time_from_tsc =
-                       ltt_time_from_uint64(tsc_to_uint64(t->freq_scale, t->start_freq,
-                                       t->drift * t->start_tsc + t->offset));
-       }
-
-       g_array_free(factors, TRUE);
-
-       lttv_traceset_context_compute_time_span(processingData->traceSetContext,
-               &processingData->traceSetContext->time_span);
-
-       g_debug("traceset start %ld.%09ld end %ld.%09ld",
-               processingData->traceSetContext->time_span.start_time.tv_sec,
-               processingData->traceSetContext->time_span.start_time.tv_nsec,
-               processingData->traceSetContext->time_span.end_time.tv_sec,
-               processingData->traceSetContext->time_span.end_time.tv_nsec);
+       return syncState->matchingModule->finalizeMatching(syncState);
 }
 
 
index 8268d823c6237297491e74c8e78325448a1cf634..37f4194e8f02987cba2d35ae8be6a79cfb82b3d5 100644 (file)
@@ -37,7 +37,7 @@
 // Functions common to all processing modules
 static void initProcessingText(SyncState* const syncState, ...);
 static void destroyProcessingText(SyncState* const syncState);
-static void finalizeProcessingText(SyncState* const syncState);
+static GArray* finalizeProcessingText(SyncState* const syncState);
 static void printProcessingStatsText(SyncState* const syncState);
 static void writeProcessingTraceTimeOptionsText(SyncState* const syncState,
        const unsigned int i, const unsigned int j);
@@ -136,8 +136,11 @@ static void destroyProcessingText(SyncState* const syncState)
  *
  * Args:
  *   syncState:    container for synchronization data.
+ *
+ * Returns:
+ *   Factors[traceNb] synchronization factors for each trace
  */
-static void finalizeProcessingText(SyncState* const syncState)
+static GArray* finalizeProcessingText(SyncState* const syncState)
 {
        int retval;
        unsigned int* seq;
@@ -277,10 +280,8 @@ static void finalizeProcessingText(SyncState* const syncState)
        {
                processingData->factors= factors;
        }
-       else
-       {
-               g_array_free(factors, TRUE);
-       }
+
+       return factors;
 }
 
 
index 4c73f9bc16ec6093472f3561578bd6a1dc175543..be915b08474ba4acba68f2d5e4087e1e9eb3a06e 100644 (file)
@@ -33,7 +33,7 @@ GQueue moduleOptions= G_QUEUE_INIT;
 
 
 /*
- * Calculate the elapsed time between two timeval values
+ * Call the statistics function of each module of a sync chain
  *
  * Args:
  *   syncState:    Container for synchronization data
index c0693b7e50d447c2b5d98f61b2e00a25801906a5..0180e3b01a0ee54e1c2c3de64a6eafb66d0120c2 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#define _ISOC99_SOURCE
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
 
 #include <errno.h>
 #include <fcntl.h>
+#include <math.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <sys/resource.h>
@@ -178,6 +181,9 @@ bool syncTraceset(LttvTracesetContext* const traceSetContext)
        struct rusage startUsage, endUsage;
        GList* result;
        unsigned int i;
+       GArray* factors;
+       double minOffset, minDrift;
+       unsigned int refFreqTrace;
        int retval;
 
        if (!optionSync.present)
@@ -262,7 +268,69 @@ bool syncTraceset(LttvTracesetContext* const traceSetContext)
                G_MAXULONG, NULL);
        lttv_process_traceset_seek_time(traceSetContext, ltt_time_zero);
 
-       syncState->processingModule->finalizeProcessing(syncState);
+       // Obtain, adjust and set correction factors
+       factors= syncState->processingModule->finalizeProcessing(syncState);
+
+       /* The offsets are adjusted so the lowest one is 0. This is done because
+        * of a Lttv specific limitation: events cannot have negative times. By
+        * having non-negative offsets, events cannot be moved backwards to
+        * negative times.
+        */
+       minOffset= 0;
+       for (i= 0; i < syncState->traceNb; i++)
+       {
+               minOffset= MIN(g_array_index(factors, Factors, i).offset, minOffset);
+       }
+
+       for (i= 0; i < syncState->traceNb; i++)
+       {
+               g_array_index(factors, Factors, i).offset-= minOffset;
+       }
+
+       /* Because the timestamps are corrected at the TSC level (not at the
+        * LttTime level) all trace frequencies must be made equal. We use the
+        * frequency of the system with the lowest drift
+        */
+       minDrift= INFINITY;
+       refFreqTrace= 0;
+       for (i= 0; i < syncState->traceNb; i++)
+       {
+               if (g_array_index(factors, Factors, i).drift < minDrift)
+               {
+                       minDrift= g_array_index(factors, Factors, i).drift;
+                       refFreqTrace= i;
+               }
+       }
+       g_assert(syncState->traceNb == 0 || minDrift != INFINITY);
+
+       // Write the factors to the LttTrace structures
+       for (i= 0; i < syncState->traceNb; i++)
+       {
+               LttTrace* t;
+               Factors* traceFactors;
+
+               t= traceSetContext->traces[i]->t;
+               traceFactors= &g_array_index(factors, Factors, i);
+
+               t->drift= traceFactors->drift;
+               t->offset= traceFactors->offset;
+               t->start_freq= traceSetContext->traces[refFreqTrace]->t->start_freq;
+               t->freq_scale= traceSetContext->traces[refFreqTrace]->t->freq_scale;
+               t->start_time_from_tsc =
+                       ltt_time_from_uint64(tsc_to_uint64(t->freq_scale, t->start_freq,
+                                       t->drift * t->start_tsc + t->offset));
+       }
+
+       g_array_free(factors, TRUE);
+
+       lttv_traceset_context_compute_time_span(traceSetContext,
+               &traceSetContext->time_span);
+
+       g_debug("traceset start %ld.%09ld end %ld.%09ld",
+               traceSetContext->time_span.start_time.tv_sec,
+               traceSetContext->time_span.start_time.tv_nsec,
+               traceSetContext->time_span.end_time.tv_sec,
+               traceSetContext->time_span.end_time.tv_nsec);
 
        // Write graphs file
        if (!optionSyncNull.present && optionSyncGraphs.present)
index 9916591ce98224c91e75c6710b2a6ca46837af75..50c9f395526cbb75fed31abf71679ed921bb2dba 100644 (file)
@@ -105,6 +105,7 @@ int main(const int argc, char* const argv[])
        const char* testCaseName;
        GString* analysisModulesNames;
        unsigned int id;
+       GArray* factors;
 
        /*
         * Initialize event modules
@@ -207,7 +208,8 @@ int main(const int argc, char* const argv[])
        syncState->analysisModule->initAnalysis(syncState);
 
        // Process traceset
-       syncState->processingModule->finalizeProcessing(syncState);
+       factors= syncState->processingModule->finalizeProcessing(syncState);
+       g_array_free(factors, TRUE);
 
        // Write graphs file
        if (syncState->graphsStream)
This page took 0.028874 seconds and 4 git commands to generate.