2009-07-08 13:19:16 -07:00
|
|
|
/*
|
2013-08-20 13:46:33 -07:00
|
|
|
* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COVERAGE_H
|
|
|
|
#define COVERAGE_H 1
|
|
|
|
|
|
|
|
/* This file implements a simple form of coverage instrumentation. Points in
|
|
|
|
* source code that are of interest must be explicitly annotated with
|
|
|
|
* COVERAGE_INC. The coverage counters may be logged at any time with
|
|
|
|
* coverage_log().
|
|
|
|
*
|
|
|
|
* This form of coverage instrumentation is intended to be so lightweight that
|
|
|
|
* it can be enabled in production builds. It is obviously not a substitute
|
|
|
|
* for traditional coverage instrumentation with e.g. "gcov", but it is still
|
|
|
|
* a useful debugging tool. */
|
|
|
|
|
2013-08-20 13:46:33 -07:00
|
|
|
#include "ovs-thread.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
#include "vlog.h"
|
|
|
|
|
2013-09-30 18:31:44 -07:00
|
|
|
/* Makes coverage_run run every 5000 ms (5 seconds).
|
|
|
|
* If this value is redefined, the new value must
|
|
|
|
* divide 60000 (1 minute). */
|
|
|
|
#define COVERAGE_RUN_INTERVAL 5000
|
|
|
|
BUILD_ASSERT_DECL(60000 % COVERAGE_RUN_INTERVAL == 0);
|
|
|
|
|
|
|
|
/* Defines the moving average array length. */
|
|
|
|
#define MIN_AVG_LEN (60000/COVERAGE_RUN_INTERVAL)
|
|
|
|
#define HR_AVG_LEN 60
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
/* A coverage counter. */
|
|
|
|
struct coverage_counter {
|
2013-08-20 13:46:33 -07:00
|
|
|
const char *const name; /* Textual name. */
|
|
|
|
unsigned int (*const count)(void); /* Gets, zeros this thread's count. */
|
|
|
|
unsigned long long int total; /* Total count. */
|
2013-09-30 18:31:44 -07:00
|
|
|
unsigned long long int last_total;
|
|
|
|
/* The moving average arrays. */
|
|
|
|
unsigned int min[MIN_AVG_LEN];
|
|
|
|
unsigned int hr[HR_AVG_LEN];
|
2009-07-08 13:19:16 -07:00
|
|
|
};
|
|
|
|
|
coverage: Make the coverage counters catalog program-specific.
Until now, the collection of coverage counters supported by a given OVS
program was not specific to that program. That means that, for example,
even though ovs-dpctl does not have anything to do with mac_learning, it
still has a coverage counter for it. This is confusing, at best.
This commit fixes the problem on some systems, in particular on ones that
use GCC and the GNU linker. It uses the feature of the GNU linker
described in its manual as:
If an orphaned section's name is representable as a C identifier then
the linker will automatically see PROVIDE two symbols: __start_SECNAME
and __end_SECNAME, where SECNAME is the name of the section. These
indicate the start address and end address of the orphaned section
respectively.
Systems that don't support these features retain the earlier behavior.
This commit also fixes the annoyance that files that include coverage
counters must be listed on COVERAGE_FILES in lib/automake.mk.
This commit also fixes the annoyance that modifying any source file that
includes a coverage counter caused all programs that link against
libopenvswitch.a to relink, even programs that the source file was not
linked into. For example, modifying ofproto/ofproto.c (which includes
coverage counters) caused tests/test-aes128 to relink, even though
test-aes128 does not link again ofproto.o.
2010-11-01 14:14:27 -07:00
|
|
|
/* Defines COUNTER. There must be exactly one such definition at file scope
|
|
|
|
* within a program. */
|
|
|
|
#if USE_LINKER_SECTIONS
|
|
|
|
#define COVERAGE_DEFINE(COUNTER) \
|
2013-08-20 13:46:33 -07:00
|
|
|
DEFINE_STATIC_PER_THREAD_DATA(unsigned int, \
|
|
|
|
counter_##COUNTER, 0); \
|
|
|
|
static unsigned int COUNTER##_count(void) \
|
|
|
|
{ \
|
|
|
|
unsigned int *countp = counter_##COUNTER##_get(); \
|
|
|
|
unsigned int count = *countp; \
|
|
|
|
*countp = 0; \
|
|
|
|
return count; \
|
|
|
|
} \
|
|
|
|
static inline void COUNTER##_add(unsigned int n) \
|
|
|
|
{ \
|
|
|
|
*counter_##COUNTER##_get() += n; \
|
|
|
|
} \
|
|
|
|
extern struct coverage_counter counter_##COUNTER; \
|
|
|
|
struct coverage_counter counter_##COUNTER \
|
2013-09-30 18:31:44 -07:00
|
|
|
= { #COUNTER, COUNTER##_count, 0, 0, {0}, {0} }; \
|
2011-05-06 11:38:19 -07:00
|
|
|
extern struct coverage_counter *counter_ptr_##COUNTER; \
|
coverage: Make the coverage counters catalog program-specific.
Until now, the collection of coverage counters supported by a given OVS
program was not specific to that program. That means that, for example,
even though ovs-dpctl does not have anything to do with mac_learning, it
still has a coverage counter for it. This is confusing, at best.
This commit fixes the problem on some systems, in particular on ones that
use GCC and the GNU linker. It uses the feature of the GNU linker
described in its manual as:
If an orphaned section's name is representable as a C identifier then
the linker will automatically see PROVIDE two symbols: __start_SECNAME
and __end_SECNAME, where SECNAME is the name of the section. These
indicate the start address and end address of the orphaned section
respectively.
Systems that don't support these features retain the earlier behavior.
This commit also fixes the annoyance that files that include coverage
counters must be listed on COVERAGE_FILES in lib/automake.mk.
This commit also fixes the annoyance that modifying any source file that
includes a coverage counter caused all programs that link against
libopenvswitch.a to relink, even programs that the source file was not
linked into. For example, modifying ofproto/ofproto.c (which includes
coverage counters) caused tests/test-aes128 to relink, even though
test-aes128 does not link again ofproto.o.
2010-11-01 14:14:27 -07:00
|
|
|
struct coverage_counter *counter_ptr_##COUNTER \
|
|
|
|
__attribute__((section("coverage"))) = &counter_##COUNTER
|
|
|
|
#else
|
2013-08-20 13:46:33 -07:00
|
|
|
#define COVERAGE_DEFINE(COUNTER) \
|
|
|
|
DECLARE_EXTERN_PER_THREAD_DATA(unsigned int, \
|
|
|
|
counter_##COUNTER); \
|
|
|
|
static inline void COUNTER##_add(unsigned int n) \
|
|
|
|
{ \
|
|
|
|
*counter_##COUNTER##_get() += n; \
|
|
|
|
} \
|
|
|
|
extern struct coverage_counter counter_##COUNTER
|
coverage: Make the coverage counters catalog program-specific.
Until now, the collection of coverage counters supported by a given OVS
program was not specific to that program. That means that, for example,
even though ovs-dpctl does not have anything to do with mac_learning, it
still has a coverage counter for it. This is confusing, at best.
This commit fixes the problem on some systems, in particular on ones that
use GCC and the GNU linker. It uses the feature of the GNU linker
described in its manual as:
If an orphaned section's name is representable as a C identifier then
the linker will automatically see PROVIDE two symbols: __start_SECNAME
and __end_SECNAME, where SECNAME is the name of the section. These
indicate the start address and end address of the orphaned section
respectively.
Systems that don't support these features retain the earlier behavior.
This commit also fixes the annoyance that files that include coverage
counters must be listed on COVERAGE_FILES in lib/automake.mk.
This commit also fixes the annoyance that modifying any source file that
includes a coverage counter caused all programs that link against
libopenvswitch.a to relink, even programs that the source file was not
linked into. For example, modifying ofproto/ofproto.c (which includes
coverage counters) caused tests/test-aes128 to relink, even though
test-aes128 does not link again ofproto.o.
2010-11-01 14:14:27 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Adds 1 to COUNTER. */
|
2013-08-20 13:46:33 -07:00
|
|
|
#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
|
coverage: Make the coverage counters catalog program-specific.
Until now, the collection of coverage counters supported by a given OVS
program was not specific to that program. That means that, for example,
even though ovs-dpctl does not have anything to do with mac_learning, it
still has a coverage counter for it. This is confusing, at best.
This commit fixes the problem on some systems, in particular on ones that
use GCC and the GNU linker. It uses the feature of the GNU linker
described in its manual as:
If an orphaned section's name is representable as a C identifier then
the linker will automatically see PROVIDE two symbols: __start_SECNAME
and __end_SECNAME, where SECNAME is the name of the section. These
indicate the start address and end address of the orphaned section
respectively.
Systems that don't support these features retain the earlier behavior.
This commit also fixes the annoyance that files that include coverage
counters must be listed on COVERAGE_FILES in lib/automake.mk.
This commit also fixes the annoyance that modifying any source file that
includes a coverage counter caused all programs that link against
libopenvswitch.a to relink, even programs that the source file was not
linked into. For example, modifying ofproto/ofproto.c (which includes
coverage counters) caused tests/test-aes128 to relink, even though
test-aes128 does not link again ofproto.o.
2010-11-01 14:14:27 -07:00
|
|
|
|
|
|
|
/* Adds AMOUNT to COUNTER. */
|
2013-08-20 13:46:33 -07:00
|
|
|
#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2009-07-10 15:09:41 -07:00
|
|
|
void coverage_init(void);
|
2012-04-20 14:09:30 -07:00
|
|
|
void coverage_log(void);
|
2009-07-08 13:19:16 -07:00
|
|
|
void coverage_clear(void);
|
2013-09-30 18:31:44 -07:00
|
|
|
void coverage_run(void);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
coverage: Make the coverage counters catalog program-specific.
Until now, the collection of coverage counters supported by a given OVS
program was not specific to that program. That means that, for example,
even though ovs-dpctl does not have anything to do with mac_learning, it
still has a coverage counter for it. This is confusing, at best.
This commit fixes the problem on some systems, in particular on ones that
use GCC and the GNU linker. It uses the feature of the GNU linker
described in its manual as:
If an orphaned section's name is representable as a C identifier then
the linker will automatically see PROVIDE two symbols: __start_SECNAME
and __end_SECNAME, where SECNAME is the name of the section. These
indicate the start address and end address of the orphaned section
respectively.
Systems that don't support these features retain the earlier behavior.
This commit also fixes the annoyance that files that include coverage
counters must be listed on COVERAGE_FILES in lib/automake.mk.
This commit also fixes the annoyance that modifying any source file that
includes a coverage counter caused all programs that link against
libopenvswitch.a to relink, even programs that the source file was not
linked into. For example, modifying ofproto/ofproto.c (which includes
coverage counters) caused tests/test-aes128 to relink, even though
test-aes128 does not link again ofproto.o.
2010-11-01 14:14:27 -07:00
|
|
|
/* Implementation detail. */
|
|
|
|
#define COVERAGE_DEFINE__(COUNTER) \
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
#endif /* coverage.h */
|