os/graphics/windowing/windowserver/inc/wstraces.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Definitions of performance tracing macros
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __WS_TRACES_H__
sl@0
    19
#define __WS_TRACES_H__
sl@0
    20
sl@0
    21
#include <e32btrace.h>
sl@0
    22
sl@0
    23
#ifdef USE_TRACECORE_CATEGORY
sl@0
    24
enum TWsPerformanceTraceCategories 
sl@0
    25
{
sl@0
    26
	EWsPerformanceTraceProcessRawEvent = 0x10,
sl@0
    27
	EWsPerformanceTraceQueueEvent,
sl@0
    28
	EWsPerformanceTraceGetEvent,
sl@0
    29
	EWsPerformanceTraceEventReady,
sl@0
    30
sl@0
    31
	EWsPerformanceTraceTriggerRedraw = 0x20,
sl@0
    32
	EWsPerformanceTraceGetRedraw,
sl@0
    33
	EWsPerformanceTraceRedrawReady,
sl@0
    34
	
sl@0
    35
	EWsPerformanceTraceStartRedraw = 0x30,
sl@0
    36
	EWsPerformanceTraceStopRedraw
sl@0
    37
};
sl@0
    38
#else
sl@0
    39
enum TWsPerformanceTraceCategories 
sl@0
    40
{
sl@0
    41
	EWsPerformanceTraceProcessRawEvent = 130,
sl@0
    42
	EWsPerformanceTraceQueueEvent,
sl@0
    43
	EWsPerformanceTraceGetEvent,
sl@0
    44
	EWsPerformanceTraceEventReady,
sl@0
    45
sl@0
    46
	EWsPerformanceTraceTriggerRedraw = 140,
sl@0
    47
	EWsPerformanceTraceGetRedraw,
sl@0
    48
	EWsPerformanceTraceRedrawReady,
sl@0
    49
	
sl@0
    50
	EWsPerformanceTraceStartRedraw = 150,
sl@0
    51
	EWsPerformanceTraceStopRedraw
sl@0
    52
};
sl@0
    53
#endif
sl@0
    54
sl@0
    55
#ifndef USE_WS_PERFORMANCE_TRACING
sl@0
    56
	#define WS_TRACE0(category) 
sl@0
    57
	#define WS_TRACE_CONTEXT0(category)
sl@0
    58
#else
sl@0
    59
	// TraceCore BTrace Handler
sl@0
    60
	#ifdef USE_TRACECORE_CATEGORY
sl@0
    61
		#define WS_TRACE0(category) BTrace4(0xA0, 0, category)
sl@0
    62
		#define WS_TRACE_CONTEXT0(category) BTraceContext4(0xA0, 0, category)
sl@0
    63
	#else
sl@0
    64
		#define WS_TRACE0(category) BTrace0(category, 0)
sl@0
    65
		#define WS_TRACE_CONTEXT0(category) BTraceContext0(category, 0)
sl@0
    66
	#endif // USE_TRACECORE_CATEGORY
sl@0
    67
#endif // USE_WS_PERFORMANCE_TRACING
sl@0
    68
sl@0
    69
#define WS_TRACE_SERVER_PROCESSRAWEVENT() WS_TRACE0(EWsPerformanceTraceProcessRawEvent)
sl@0
    70
#define WS_TRACE_SERVER_QUEUEEVENT() WS_TRACE0(EWsPerformanceTraceQueueEvent)
sl@0
    71
#define WS_TRACE_CLIENT_GETEVENT() WS_TRACE_CONTEXT0(EWsPerformanceTraceGetEvent)
sl@0
    72
#define WS_TRACE_CLIENT_EVENTREADY() WS_TRACE_CONTEXT0(EWsPerformanceTraceEventReady)
sl@0
    73
sl@0
    74
#define WS_TRACE_SERVER_TRIGGERREDRAW() WS_TRACE0(EWsPerformanceTraceTriggerRedraw)
sl@0
    75
#define WS_TRACE_CLIENT_GETREDRAW() WS_TRACE_CONTEXT0(EWsPerformanceTraceGetRedraw)
sl@0
    76
#define WS_TRACE_CLIENT_REDRAWREADY() WS_TRACE_CONTEXT0(EWsPerformanceTraceRedrawReady)
sl@0
    77
sl@0
    78
#define WS_TRACE_SERVER_STARTDRAW() WS_TRACE0(EWsPerformanceTraceStartRedraw)
sl@0
    79
#define WS_TRACE_SERVER_STOPDRAW() WS_TRACE0(EWsPerformanceTraceStopRedraw)
sl@0
    80
sl@0
    81
#endif