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;
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;
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);
*
* 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));
}
* 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>
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);
*
* 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);
}
// 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);
*
* 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;
{
processingData->factors= factors;
}
- else
- {
- g_array_free(factors, TRUE);
- }
+
+ return factors;
}
/*
- * 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
* 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>
struct rusage startUsage, endUsage;
GList* result;
unsigned int i;
+ GArray* factors;
+ double minOffset, minDrift;
+ unsigned int refFreqTrace;
int retval;
if (!optionSync.present)
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)
const char* testCaseName;
GString* analysisModulesNames;
unsigned int id;
+ GArray* factors;
/*
* Initialize event modules
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)