1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#ifndef _FINALROM
#include "PRinternal/dbgproto.h"
#include "PRinternal/rmonint.h"
#include "PRinternal/macros.h"
// TODO: this comes from a header
#if BUILD_VERSION >= VERSION_J
#ident "$Revision: 1.4 $"
#else
#ident "$Revision: 3.70 $"
#ident "$Revision: 1.5 $"
#ident "$Revision: 1.2 $"
#ident "$Revision: 1.4 $"
#ident "$Revision: 1.3 $"
#endif
static int NotImplemented(KKHeader* dummy UNUSED) {
return TV_ERROR_ILLEGAL_CALL;
}
static FUNPTR dispatchTable[] = {
__rmonLoadProgram, __rmonListProcesses, __rmonGetExeName, __rmonListThreads, __rmonThreadStatus,
NotImplemented, __rmonStopThread, __rmonRunThread, NotImplemented, NotImplemented,
__rmonSetFault, NotImplemented, __rmonGetRegionCount, __rmonGetRegions, __rmonGetGRegisters,
__rmonSetGRegisters, __rmonGetFRegisters, __rmonSetFRegisters, __rmonReadMem, __rmonWriteMem,
__rmonSetBreak, __rmonClearBreak, __rmonListBreak, NotImplemented, NotImplemented,
NotImplemented, NotImplemented, NotImplemented, NotImplemented, NotImplemented,
__rmonSetComm, NotImplemented, NotImplemented, NotImplemented, NotImplemented,
NotImplemented, NotImplemented, NotImplemented, NotImplemented, NotImplemented,
NotImplemented, NotImplemented, NotImplemented, NotImplemented, NotImplemented,
NotImplemented, NotImplemented, NotImplemented, NotImplemented, __rmonGetSRegs,
__rmonSetSRegs, __rmonGetVRegs, __rmonSetVRegs, NotImplemented,
};
int __rmonExecute(KKHeader* request) {
int retval;
KKHeader reply;
if (request->code >= ARRLEN(dispatchTable) - 1) {
return TV_ERROR_ILLEGAL_CALL;
}
retval = dispatchTable[(int)request->code](request);
if (retval < TV_ERROR_NO_ERROR) {
reply.code = request->code;
reply.error = retval;
__rmonSendReply(&reply, sizeof(reply), KK_TYPE_REPLY);
}
return retval;
}
#endif
|