os/kernelhwsrv/kerneltest/e32test/bench/t_t64bm.cpp
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) 1996-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 the License "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
// e32test\bench\t_t64bm.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include <e32std_private.h>
sl@0
    20
#include <e32base.h>
sl@0
    21
#include <e32base_private.h>
sl@0
    22
#include <e32test.h>
sl@0
    23
sl@0
    24
const TInt KHeapSize=0x2000;
sl@0
    25
const TInt KAverageOverInSeconds=10;
sl@0
    26
const TInt KNumberOfCalculationsPerLoop=100;
sl@0
    27
sl@0
    28
volatile TInt64 count;
sl@0
    29
volatile TInt64 a;
sl@0
    30
volatile TInt64 b;
sl@0
    31
volatile TInt64 c;
sl@0
    32
volatile TInt64 barrier;
sl@0
    33
sl@0
    34
RTest test(_L("T_T64BM"));
sl@0
    35
sl@0
    36
GLREF_C TInt TInt64Addition(TAny*);
sl@0
    37
GLREF_C TInt TInt64Subtraction(TAny*);
sl@0
    38
GLREF_C TInt TInt64Multiplication(TAny*);
sl@0
    39
GLREF_C TInt TInt64Division(TAny*);
sl@0
    40
sl@0
    41
TInt64 runTest(TThreadFunction aFunction,const TDesC& aTitle)
sl@0
    42
    {
sl@0
    43
sl@0
    44
    RThread thread;
sl@0
    45
	TInt r=thread.Create(aTitle,aFunction,KDefaultStackSize,KHeapSize,KHeapSize,NULL);
sl@0
    46
	if(r!=KErrNone)
sl@0
    47
		{
sl@0
    48
		test.Printf(_L("Failed to create thread with error %d\n"),r);
sl@0
    49
		return(r);
sl@0
    50
		}
sl@0
    51
    thread.Resume();
sl@0
    52
    User::After(1000000);
sl@0
    53
    count=0;
sl@0
    54
    User::After(KAverageOverInSeconds*1000000);
sl@0
    55
    TInt64 result=count;
sl@0
    56
sl@0
    57
	barrier = a;
sl@0
    58
	if (!barrier)
sl@0
    59
		barrier = c;
sl@0
    60
	barrier = b;
sl@0
    61
	if (!barrier)
sl@0
    62
		barrier = a;
sl@0
    63
	barrier = c;
sl@0
    64
	if (!barrier)
sl@0
    65
		barrier = b;
sl@0
    66
sl@0
    67
	thread.Kill(0);
sl@0
    68
	thread.Close();
sl@0
    69
	result*=KNumberOfCalculationsPerLoop;
sl@0
    70
	result/=KAverageOverInSeconds;
sl@0
    71
	r=I64INT(result);
sl@0
    72
    test.Printf(_L("%S executed %d in 1 second\n"),&aTitle,r);
sl@0
    73
    return(result);
sl@0
    74
    }
sl@0
    75
sl@0
    76
TInt E32Main()
sl@0
    77
//
sl@0
    78
// Benchmark for TInt64 functions
sl@0
    79
//
sl@0
    80
    {
sl@0
    81
sl@0
    82
    test.Title();
sl@0
    83
    test.Start(_L("Benchmarks for TInt64"));
sl@0
    84
sl@0
    85
	runTest(TInt64Addition,_L("Addition"));
sl@0
    86
	runTest(TInt64Subtraction,_L("Subtraction"));
sl@0
    87
	runTest(TInt64Multiplication,_L("Multiplication"));
sl@0
    88
	runTest(TInt64Division,_L("Division"));
sl@0
    89
sl@0
    90
	test.End();
sl@0
    91
	return(KErrNone);
sl@0
    92
    }
sl@0
    93