author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2006-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\nkernsa\x86\x86utils.cpp |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
#include <x86.h> |
sl@0 | 19 |
#include <nktest/nkutils.h> |
sl@0 | 20 |
|
sl@0 | 21 |
extern "C" { |
sl@0 | 22 |
|
sl@0 | 23 |
void __fastcall thread_request_signal(NThread* aThread); |
sl@0 | 24 |
|
sl@0 | 25 |
TUint64 fcf; |
sl@0 | 26 |
TUint32 nfcf; |
sl@0 | 27 |
TUint32 nfcfs; |
sl@0 | 28 |
|
sl@0 | 29 |
|
sl@0 | 30 |
TUint32 round_to_page(TUint32 x) |
sl@0 | 31 |
{ |
sl@0 | 32 |
return (x + KPageSize - 1) &~ (KPageSize - 1); |
sl@0 | 33 |
} |
sl@0 | 34 |
|
sl@0 | 35 |
|
sl@0 | 36 |
TLinAddr __initial_stack_base() |
sl@0 | 37 |
{ |
sl@0 | 38 |
return __stack_pointer() & ~0xfff; |
sl@0 | 39 |
} |
sl@0 | 40 |
|
sl@0 | 41 |
TInt __initial_stack_size() |
sl@0 | 42 |
{ |
sl@0 | 43 |
return 0x1000; |
sl@0 | 44 |
} |
sl@0 | 45 |
|
sl@0 | 46 |
TUint64 fast_counter_freq() |
sl@0 | 47 |
{ |
sl@0 | 48 |
return fcf; |
sl@0 | 49 |
} |
sl@0 | 50 |
|
sl@0 | 51 |
TUint32 norm_fast_counter_freq() |
sl@0 | 52 |
{ |
sl@0 | 53 |
return nfcf; |
sl@0 | 54 |
} |
sl@0 | 55 |
|
sl@0 | 56 |
void init_fast_counter() |
sl@0 | 57 |
{ |
sl@0 | 58 |
NKern::Sleep(2); |
sl@0 | 59 |
TUint64 initial = fast_counter(); |
sl@0 | 60 |
NKern::Sleep(1000); |
sl@0 | 61 |
TUint64 final = fast_counter(); |
sl@0 | 62 |
fcf = final - initial; |
sl@0 | 63 |
TUint64 f = fcf; |
sl@0 | 64 |
nfcfs = 0; |
sl@0 | 65 |
while (f > 2000000) |
sl@0 | 66 |
f>>=1, ++nfcfs; |
sl@0 | 67 |
nfcf = (TUint32)(fcf >> nfcfs); |
sl@0 | 68 |
|
sl@0 | 69 |
DEBUGPRINT("fcf=%lx",fcf); |
sl@0 | 70 |
DEBUGPRINT("nfcf=%d",nfcf); |
sl@0 | 71 |
} |
sl@0 | 72 |
|
sl@0 | 73 |
TInt __microseconds_to_fast_counter(TInt us) |
sl@0 | 74 |
{ |
sl@0 | 75 |
TUint64 x = TUint64(TUint32(us)); |
sl@0 | 76 |
x *= fcf; |
sl@0 | 77 |
x += TUint64(500000); |
sl@0 | 78 |
x /= TUint64(1000000); |
sl@0 | 79 |
|
sl@0 | 80 |
return (TInt)x; |
sl@0 | 81 |
} |
sl@0 | 82 |
|
sl@0 | 83 |
TInt __microseconds_to_norm_fast_counter(TInt us) |
sl@0 | 84 |
{ |
sl@0 | 85 |
TUint64 x = TUint64(TUint32(us)); |
sl@0 | 86 |
x *= nfcf; |
sl@0 | 87 |
x += TUint64(500000); |
sl@0 | 88 |
x /= TUint64(1000000); |
sl@0 | 89 |
|
sl@0 | 90 |
return (TInt)x; |
sl@0 | 91 |
} |
sl@0 | 92 |
|
sl@0 | 93 |
extern TUint32 __eflags(); |
sl@0 | 94 |
void CheckPoint() |
sl@0 | 95 |
{ |
sl@0 | 96 |
KPrintf("EFLAGS=%08x", __eflags()); |
sl@0 | 97 |
} |
sl@0 | 98 |
|
sl@0 | 99 |
void __fastcall thread_request_signal(NThread* aThread) |
sl@0 | 100 |
{ |
sl@0 | 101 |
NKern::ThreadRequestSignal(aThread); |
sl@0 | 102 |
} |
sl@0 | 103 |
} |