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 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 |
// Definitions of functions in d_rmdebug_step_tests.s
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef D_RMDEBUG_STEP_TESTS_H
|
sl@0
|
18 |
#define D_RMDEBUG_STEP_TESTS_H
|
sl@0
|
19 |
|
sl@0
|
20 |
extern "C"
|
sl@0
|
21 |
{
|
sl@0
|
22 |
// ARM tests
|
sl@0
|
23 |
unsigned int RMDebug_StepTest_Non_PC_Modifying(void);
|
sl@0
|
24 |
unsigned int RMDebug_StepTest_Non_PC_Modifying_OK(void);
|
sl@0
|
25 |
|
sl@0
|
26 |
unsigned int RMDebug_StepTest_Branch(void);
|
sl@0
|
27 |
unsigned int RMDebug_StepTest_Branch_1(void);
|
sl@0
|
28 |
|
sl@0
|
29 |
unsigned int RMDebug_StepTest_Branch_And_Link(void);
|
sl@0
|
30 |
unsigned int RMDebug_StepTest_Branch_And_Link_1(void);
|
sl@0
|
31 |
unsigned int RMDebug_StepTest_Branch_And_Link_2(void);
|
sl@0
|
32 |
|
sl@0
|
33 |
unsigned int RMDebug_StepTest_MOV_PC(void);
|
sl@0
|
34 |
unsigned int RMDebug_StepTest_MOV_PC_1(void);
|
sl@0
|
35 |
unsigned int RMDebug_StepTest_MOV_PC_2(void);
|
sl@0
|
36 |
|
sl@0
|
37 |
unsigned int RMDebug_StepTest_LDR_PC(void);
|
sl@0
|
38 |
unsigned int RMDebug_StepTest_LDR_PC_1(void);
|
sl@0
|
39 |
|
sl@0
|
40 |
// Thumb tests
|
sl@0
|
41 |
unsigned int RMDebug_StepTest_Thumb_Non_PC_Modifying(void);
|
sl@0
|
42 |
unsigned int RMDebug_StepTest_Thumb_Non_PC_Modifying_1(void);
|
sl@0
|
43 |
unsigned int RMDebug_StepTest_Thumb_Non_PC_Modifying_2(void);
|
sl@0
|
44 |
|
sl@0
|
45 |
unsigned int RMDebug_StepTest_Thumb_Branch(void);
|
sl@0
|
46 |
unsigned int RMDebug_StepTest_Thumb_Branch_1(void);
|
sl@0
|
47 |
unsigned int RMDebug_StepTest_Thumb_Branch_2(void);
|
sl@0
|
48 |
|
sl@0
|
49 |
unsigned int RMDebug_StepTest_Thumb_Branch_And_Link(void);
|
sl@0
|
50 |
unsigned int RMDebug_StepTest_Thumb_Branch_And_Link_1(void);
|
sl@0
|
51 |
unsigned int RMDebug_StepTest_Thumb_Branch_And_Link_2(void);
|
sl@0
|
52 |
unsigned int RMDebug_StepTest_Thumb_Branch_And_Link_3(void);
|
sl@0
|
53 |
|
sl@0
|
54 |
unsigned int RMDebug_StepTest_Thumb_Back_Branch_And_Link(void);
|
sl@0
|
55 |
unsigned int RMDebug_StepTest_Thumb_Back_Branch_And_Link_1(void);
|
sl@0
|
56 |
unsigned int RMDebug_StepTest_Thumb_Back_Branch_And_Link_2(void);
|
sl@0
|
57 |
unsigned int RMDebug_StepTest_Thumb_Back_Branch_And_Link_3(void);
|
sl@0
|
58 |
|
sl@0
|
59 |
unsigned int RMDebug_StepTest_Thumb_AddPC(void);
|
sl@0
|
60 |
unsigned int RMDebug_StepTest_Thumb_AddPC_1(void);
|
sl@0
|
61 |
unsigned int RMDebug_StepTest_Thumb_AddPC_2(void);
|
sl@0
|
62 |
unsigned int RMDebug_StepTest_Thumb_AddPC_3(void);
|
sl@0
|
63 |
|
sl@0
|
64 |
// ARM<->Thumb interworking tests
|
sl@0
|
65 |
unsigned int RMDebug_StepTest_Interwork(void);
|
sl@0
|
66 |
unsigned int RMDebug_StepTest_Interwork_1(void);
|
sl@0
|
67 |
unsigned int RMDebug_StepTest_Interwork_2(void);
|
sl@0
|
68 |
unsigned int RMDebug_StepTest_Interwork_3(void);
|
sl@0
|
69 |
|
sl@0
|
70 |
// Stepping performance test
|
sl@0
|
71 |
unsigned int RMDebug_StepTest_Count(void);
|
sl@0
|
72 |
unsigned int RMDebug_StepTest_Count_1(void);
|
sl@0
|
73 |
unsigned int RMDebug_StepTest_Count_2(void);
|
sl@0
|
74 |
|
sl@0
|
75 |
// Multiple step test
|
sl@0
|
76 |
unsigned int RMDebug_StepTest_ARM_Step_Multiple(void);
|
sl@0
|
77 |
unsigned int RMDebug_StepTest_ARM_Step_Multiple_1(void);
|
sl@0
|
78 |
|
sl@0
|
79 |
}
|
sl@0
|
80 |
#endif // D_RMDEBUG_STEP_TESTS_H
|