2013-08-12 09:07:39 +00:00
|
|
|
/*
|
|
|
|
* \brief Trace timestamp
|
|
|
|
* \author Josef Soentgen
|
|
|
|
* \date 2013-02-12
|
|
|
|
*
|
|
|
|
* Serialized reading of tsc on x86_32.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2013-08-12 09:07:39 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2013-08-12 09:07:39 +00:00
|
|
|
*/
|
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
#ifndef _INCLUDE__SPEC__X86_32__TRACE__TIMESTAMP_H_
|
|
|
|
#define _INCLUDE__SPEC__X86_32__TRACE__TIMESTAMP_H_
|
2013-08-12 09:07:39 +00:00
|
|
|
|
|
|
|
#include <base/fixed_stdint.h>
|
|
|
|
|
|
|
|
namespace Genode { namespace Trace {
|
|
|
|
|
|
|
|
typedef uint64_t Timestamp;
|
|
|
|
|
|
|
|
inline Timestamp timestamp()
|
|
|
|
{
|
|
|
|
uint64_t t;
|
|
|
|
__asm__ __volatile__ (
|
|
|
|
"pushl %%ebx\n\t"
|
|
|
|
"xorl %%eax,%%eax\n\t"
|
|
|
|
"cpuid\n\t"
|
|
|
|
"popl %%ebx\n\t"
|
|
|
|
:
|
|
|
|
:
|
|
|
|
: "%eax", "%ecx", "%edx"
|
|
|
|
);
|
|
|
|
__asm__ __volatile__ (
|
|
|
|
"rdtsc" : "=A" (t)
|
|
|
|
);
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
#endif /* _INCLUDE__SPEC__X86_32__TRACE__TIMESTAMP_H_ */
|