⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timing.h

📁 传真通信V27 V29 V17 T38解调与解码
💻 H
字号:
/* * SpanDSP - a series of DSP components for telephony * * timing.h - Provide access to the Pentium/Athlon TSC timer register * * Written by Steve Underwood <steveu@coppice.org> * * Copyright (C) 2001 Steve Underwood * * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Id: timing.h,v 1.11 2007/04/08 08:16:18 steveu Exp $ */#if !defined(_SPANDSP_TIMING_H_)#define _SPANDSP_TIMING_H_#if defined(__cplusplus)extern "C"{#endif#if defined(__MSVC__)__declspec(naked) unsigned __int64 __cdecl rdtscll(void){   __asm   {      rdtsc      ret       ; return value at EDX:EAX   }}/*- End of function --------------------------------------------------------*/#elif defined(__GNUC__)#if defined(__i386__)static __inline__ uint64_t rdtscll(void){    uint64_t now;    __asm__ __volatile__(" rdtsc\n" : "=A" (now));    return now;}/*- End of function --------------------------------------------------------*/#elif defined(__x86_64__)static __inline__ uint64_t rdtscll(void){    unsigned int a;    unsigned int d;    /* For x86_64 we need to merge the result in 2 32 bit registers       into one clean 64 bit result. */    __asm__ __volatile__(" rdtsc\n" : "=a" (a), "=d" (d));    return ((uint64_t) a) | (((uint64_t) d) << 32);}/*- End of function --------------------------------------------------------*/#elsestatic __inline__ uint64_t rdtscll(void){    /* This architecture doesn't have a suitable timer */    return 0llu;}/*- End of function --------------------------------------------------------*/#endif#endif#if defined(__cplusplus)}#endif#endif/*- End of file ------------------------------------------------------------*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -