Click here to Skip to main content
Licence 
First Posted 12 Dec 2001
Views 83,671
Bookmarked 23 times

High Resolution Elapsed Timer

By | 12 Dec 2001 | Article
A simple high resolution timer class to help time code blocks.

Introduction

The motivation for this came when I needed to time sections of code while analyzing performance issues. The existing timers did not provide the necessary granularity to accurately measure execution times in microseconds. So I ended up creating this simple class to do the timing.

Here's the class declaration:

// HighResElapsedTimer.h: interface for the HighResElapsedTimer class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(HIGHRESELAPSEDTIMER_H_INCLUDED_)
#define HIGHRESELAPSEDTIMER_H_INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

// File:  HighResElapsedTimer.h
// Author:  Chen Venkataraman (venkatar@sig.com)
// Date:  Wed Dec 6, 2001
//
// Purpose: 
//  For determing elapsed time details during execution of code blocks 
//  (initially for debug builds only)
//
//  Sample usage:
//
//  {
//    #ifdef _DEBUG
//     HighResElapsedTimer  elapsedTime("block id");
//    #endif
//
//    ... rest of the code block
//  }
//
//    At the end of the above block, trace msg of the form
//    "block id : Elapsed time - xxxx.xxx microseconds" is spit out

#ifdef _DEBUG

class HighResElapsedTimer  
{
public:
  HighResElapsedTimer(const CString& strName) : m_strName(strName)
  {
    if (m_llFrequency == 0)      // frequency value not yet set
    {
      LARGE_INTEGER  liFrequency;

      QueryPerformanceFrequency(&liFrequency);
      m_llFrequency = liFrequency.QuadPart;
    }

    QueryPerformanceCounter(&m_llCounter);
  }

  virtual ~HighResElapsedTimer()
  {
    LARGE_INTEGER    liNow;
    QueryPerformanceCounter(&liNow);
    double duration = (double)
      (liNow.QuadPart - m_llCounter.QuadPart)/m_llFrequency;

    TRACE(_T("%s : Elapsed time = %.3lf microseconds\n"), 
                                      m_strName, duration);
  }

private:
  CString      m_strName;
  LARGE_INTEGER  m_llCounter;

private:
  static LONGLONG  m_llFrequency; 
  // Frequency setting is based hardware clock which doesn't
  // does change - so we want to set this only once

private:
  HighResElapsedTimer(const HighResElapsedTimer&);
  HighResElapsedTimer& operator=(const HighResElapsedTimer&);
};

#endif  // _DEBUG

#endif  // !defined(HIGHRESELAPSEDTIMER_H_INCLUDED_)

... and here is the implementation.

// HighResElapsedTime.cpp: implementation of the HighResElapsedTime class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "HighResElapsedTimer.h"

#ifdef _DEBUG

/* static */
LONGLONG HighResElapsedTimer::m_llFrequency = 0;

#endif    // _DEBUG

Since I was timing the code execution only during debug builds, I've guarded the code using #ifdef _DEBUG's & used TRACE for output. If you want to time release builds or output differently, it should be fairly trivial to do so.

I've tested this only on NT4 SP6a & hopefully it will work on Win95 m/cs also.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Chen Venkataraman

Software Developer (Senior)

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalseconds, not microseconds PinmemberAnonymous6:58 5 Jun '02  
GeneralOther timers PinmemberDean Wyant4:37 18 Dec '01  
GeneralRe: Other timers PinmemberRick York10:06 18 Dec '01  
GeneralRe: Other timers PinmemberDean Wyant15:24 18 Dec '01  
GeneralRe: Other timers PinmemberRick York17:23 18 Dec '01  
GeneralRe: Other timers PinmemberDean Wyant5:04 19 Dec '01  
GeneralRe: Other timers PinmemberCrispy14:17 20 Dec '01  
QuestionWhat does QueryPerformanceCounter do? Pinmembermoliate0:02 14 Dec '01  
AnswerRe: What does QueryPerformanceCounter do? PinmemberDaniel Lohmann0:49 14 Dec '01  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 13 Dec 2001
Article Copyright 2001 by Chen Venkataraman
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid