Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32btrace.h
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
24 #ifdef __KERNEL_MODE__
29 Class for handling fast tracing.
31 A trace record consists of three parts: a header, header extensions,
32 and the trace data itself.
34 The header consists of four bytes containing:
36 -# Size of the record in bytes. (Maximum value is KMaxBTraceRecordSize.)
37 -# Flags. See enum TFlags.
38 -# Category. Category value from enum BTrace::TCategory.
39 -# Sub-category. The meaning of this is dependent on the value of Category.
41 When trace records are stored in memory they are stored word (32 bit) aligned.
42 Therefore the size must be rounded up to a multiple of four when calculating
43 the address of the next record. E.g.
45 TUint8* record; // pointer to trace record
46 TInt size = record[BTrace::ESizeIndex];
47 record += (size+3)&~3; // move record pointer on to next record.
49 The NextRecord() method is provided to do this operation.
51 Following the header are optionally a number of 32 bit 'header extension' values.
52 These are present in the order shown below but only exist if the appropriate flag bit
55 -# Header2. Contains flag values from enum Flags2.
56 This value is only present if the EHeader2Present flag is set.
57 -# Timestamp. A timestamp value indicating when the trace was generated.
58 The format and resolution of this value are platform-dependent, but
59 typically will contain the same values as would be returned by
60 User::FastCounter() or NKern::FastCounter().
61 This value is only present if the ETimestampPresent flag is set.
62 -# Timestamp2. Additional timestamp information. E.g. the most significant
63 half of a 64bit timestamp value. Note, it is valid for a Timestamp2 value
64 to be present even if the previous Timestamp is absent.
65 This value is only present if the ETimestamp2Present flag is set.
66 -# Context ID. This value indicates the context in which the trace was generated.
67 The meaning of the id is dependent on the contents of the two
68 least significant bits:
69 - 00 indicates the value is the address of the NThread object for
70 the currently executing thread.
71 - 01 indicates Fast Interrupt (FIQ) context.
72 Other bits of the value are currently reserved for future use.
73 - 10 indicates Interrupt (IRQ) context. Other bits of the value
74 are currently reserved for future use.
75 - 11 indicates Immediate Delayed Function Call (IDFC) context.
76 Other bits of the value are currently reserved for future use.
78 This value is only present if the EContextIdPresent flag is set.
79 -# Program Counter. This is the memory address of the instruction after the location
81 This value is only present if the EPcPresent flag is set.
82 -# Extra. An extra value used for different purposes depending on the trace type.
83 This value is only present if the EExtraPresent flag is set.
85 Following the header extensions are 0 or more bytes of trace data specified when the trace
88 To output a trace, the following macros can be used:
114 Whenever a trace is output, the trace handler is called with the arguments specified.
115 See typedef THandler and SetHandler().
117 Each tracing category has a filter bit, which if set to zero means that traces in that category
118 are discarded, see SetFilter(). This filtering is performed before the trace handler is
119 called. This filter may also be initialised from boot time by using the 'btrace' keyword in
120 an OBY file used to build a ROM image.
122 Traces may also be additionally sent through a second level of filtering. This examines the
123 first 32 bits of data in the trace and if this value isn't present in the list maintained
124 in the secondary filter, the trace is discarded. The contents of the secondary filter are
125 set using the SetFilter2 methods.
127 Values used for secondary filtering must be Symbian Unique Identifiers (UIDs) allocated
128 using the normal UID allocation process. Note, the following non-valid UID value ranges
130 - 0x00000000..0x007fffff Reserved for platform specific use.
131 - 0x00800000..0x00ffffff Reserved for use by Symbian.
133 To generate traces which are to be processed by the secondary filter, the following
145 - BTraceFilteredPcBig
146 - BTraceFilteredContext4
147 - BTraceFilteredContext8
148 - BTraceFilteredContext12
149 - BTraceFilteredContextN
150 - BTraceFilteredContextBig
151 - BTraceFilteredContextPc4
152 - BTraceFilteredContextPc8
153 - BTraceFilteredContextPc12
154 - BTraceFilteredContextPcN
155 - BTraceFilteredContextPcBig
157 Traces generated using the above methods will be filtered twice; once using the primary
158 filter which checks the trace's category, and once using the secondary filter which checks
159 the 32 bit UID value at the start of the trace data. Therefore the trace must pass both filter
160 checks for it to be sent to the trace handler for output.
169 Byte indices into the trace header for specific fields.
171 enum THeaderStructure
174 Size of record in bytes.
179 Bitfield of flags from enum TFlags. E.g. to detect if a timestamp is present in
180 the record, code like this could be used.
182 TUint8* record; // pointer to trace record
183 if(record[BTrace::EFlagsIndex]&BTrace::ETimestampPresent)
186 TimestampNotPresent();
192 Category value from enum BTrace::TCategory.
197 Sub-category value. The meaning of this is dependent on the Category.
199 ESubCategoryIndex = 3,
203 Bit flags which indicate state of a trace record.
208 Header2 is present in the trace record.
210 EHeader2Present = 1<<0,
213 A timestamp value is present in the trace record.
215 ETimestampPresent = 1<<1,
218 A second timestamp value is present in the trace record.
220 ETimestamp2Present = 1<<2,
223 A context ID is present in the trace record.
225 EContextIdPresent = 1<<3,
228 A CPU program counter (PC) value is present in the trace record.
233 An 'extra' value is present in the trace record.
235 EExtraPresent = 1<<5,
238 Indicates that the data in this trace record was truncated to keep the size
239 within the maximum permissible.
241 ERecordTruncated = 1<<6,
244 Indicates that trace record(s) before this one are missing.
245 This can happen if the trace buffer was full when a trace output was attempted.
247 EMissingRecord = 1<<7
251 Bit flags present in the Flags2 value of the header extension.
256 Masks out the bits for the multipart trace type. (See enum TMultiPart.)
258 EMultipartFlagMask = 3<<0,
261 Masks out the bits for the CPU ID for SMP systems (zero if present on non SMP systems)
263 ECpuIdMask = 0xfff<<20,
267 Values for multipart trace indicator. These values are stored in Flags2 an
268 are obtained by ANDing with the value EMultipartFlagMask.
270 If a 'Big' trace is generated which doesn't fit into a single trace record
271 then its data is split into several separate trace records; a multipart trace.
273 In multipart traces the 'extra' trace value is present in the header extension.
274 (EExtraPresent is set.) This extra value contains a unique trace identifier
275 which is the same is all parts of the trace.
277 The structure of the data part of each trace record in a multipart trace is described
278 below. In this description, the following labels are used.
279 - A is the initial 4 bytes of data; the a1 argument of BTraceBig.
280 - D is the array of bytes of additional data; the aData argument of BTraceBig.
281 - N is the size of D; the aDataSize argument of BTraceBig
282 - X is the maximum number of additional bytes which will fit into a trace record.
283 This is usually KMaxBTraceDataArray but this should not be assumed, instead
284 the size and other information present in each trace record should be examined.
286 For the first part of a multipart trace, the data in a trace record has the following
289 - 4 bytes containing N.
290 - 4 bytes containing A.
291 - X bytes containing D[0..X-1]
293 If the parts are numbered 0 through to 'j', then a middle part of a multipart trace
294 is numbered 'i' where 0<i<j. The data in these parts has the structure:
296 - 4 bytes containing N.
297 - 4 bytes containing X*i. I.e. the offset within D for the data in this trace record.
298 - X bytes containing D[X*i..X*i+X-1]
300 For the last part of a multipart trace, the data has the structure:
302 - 4 bytes containing N.
303 - 4 bytes containing X*j. I.e. the offset within D for the data in this trace record.
304 - N modulo X bytes containing D[X*j..N-1]. I.e. the final bytes of the trace data.
309 Indicates that this trace is the first part of a multipart trace.
314 Indicates that this trace is a middle part of a multipart trace.
315 I.e. it is not the first or last part.
317 EMultipartMiddle = 2,
320 Indicates that this trace is the last part of a multipart trace.
326 Enumeration of trace categories.
331 Trace generated by all calls to RDebug::Printf.
333 The first 4 bytes of trace data contain the thread ID, RThread::Id(), for the
334 thread which caused this trace to be emitted. If the trace wasn't generated in
335 thread context, this id has the value KNullThreadId.
337 Subsequent bytes of data contain the ASCII text for the formatted string
338 generated by Kern::Printf.
340 These traces also contain a context ID, i.e. the EContextIdPresent flag is
341 set and a context ID value is present in the extended header.
343 If the trace text doesn't fit completely into one trace record, then
344 a multipart trace is generated. See enum TMultiPart.
349 Trace generated by all calls to Kern::Printf.
350 Trace records in this category have the same structure as ERDebugPrintf.
355 Trace generated by platform security diagnostic messages.
356 Trace records in this category have the same structure as ERDebugPrintf.
361 Trace generated for the purpose of associating thread context ids with
362 the textual names of threads. These traces are usually generated when a
363 thread is created, renamed or destroyed.
365 If #Prime is called with this category, traces will be generated for all
366 threads currently extant.
368 @see enum TThreadIdentification
370 EThreadIdentification = 3,
373 Trace generated when the CPU usage changes state, e.g. at thread context switch
374 or during interrupt and DFC processing.
376 The purpose of this trace category is to profile CPU usage.
383 Category used for profiling device drivers, kernel extensions etc.
384 Used by PERF_LOG macro.
390 Trace generated when client-server activity takes place such as server creation,
391 session management, message handling, etc.
393 If #Prime is called with this category, traces will be generated for all
394 servers currently running and their sessions.
399 Trace generated on thread request completion.
404 Trace generated when chunks are created and destroyed, and when memory
405 is committed and decommitted to and from chunks.
407 If #Prime is called with this category, traces will be generated for all
408 chunks currently extant.
415 Trace generated when code segments are created and destroyed, mapped
416 into out of processes, and when memory is committed and decommitted to
419 If #Prime is called with this category, traces will be generated for all
420 code segments currently extant.
427 Trace generated by Demand Paging.
433 Trace generated when thread and process priorities are modified, whether
434 directly or through priority inheritance, aging or other mechanisms used
437 The purpose of this category is to enable system-wide study of thread
440 If #Prime is called with this category, traces will be generated for all
441 threads currently extant.
443 @see enum TThreadPriority
447 EThreadPriority = 11,
450 Trace generated by processing Paging requests in the Media subsystem and Media drivers.
456 Trace generated by the kernel for memory regions which don't belong to any chunk.
457 @see enum TKernelMemory
463 Trace generated by user-mode heap usage.
465 Unlike other trace categories, capturing heap trace involves an additional step
466 depending on how much trace is required. To enable heap trace for a single process
467 from the moment it starts, add the following line to the .exe's project (.mmp) file:
469 firstlib eexe_instrumented_heap.lib
471 This overrides the build tools default implicit link (for .exe projects) against eexe.lib.
473 Alternatively, to enable heap trace for all processes at once you can enable the
474 KUSERHEAPTRACE bit (#96) of the kernel trace flags. You can set this flag either at
475 ROM-building time (look for the 'kerneltrace' line generally in \epoc32\rom\<platform>\header.iby)
476 or at runtime by running the following at the Eshell command prompt:
480 Note that changing this flag at runtime only affects processes created after the flag
481 is set or unset. It will not affect running processes.
489 Meta trace. Trace that is only useful to programs which use or display BTrace-based data.
496 Trace generated by the ram allocator to allow the physical layout of RAM
503 Trace generated by the Fast Mutex in the Nkern.
509 Trace generated by any sampling profiler.
515 Trace generated by Power Resource Manager.
518 EResourceManager = 19,
522 Trace generated by Power Resource Manager User-Side API.
525 EResourceManagerUs = 20,
528 Trace generated by Raw Event subsystem APIs
529 @see enum TRawEventTrace
535 Trace generated by USB communications (Client, Host and OTG) where use
536 of standard logging (conditional Kern::Printf() calls) is sufficiently
537 time-consuming that the required device timings mandated by the core
538 USB standards cannot be achieved
544 Trace generated by Symbian OS kernel synchronization objects.
547 ESymbianKernelSync = 23,
550 Trace generated by the flexible memory model.
552 EFlexibleMemModel = 24,
555 Trace generated by IIC bus.
561 First category value in the range reserved for platform specific use;
562 the end of this range is #EPlatformSpecificLast.
563 Symbian's code will not generate any traces with categories in this range.
565 It is strongly recommended that platforms reserve the first half of this range
566 (128..143) for definition and use by base-port (kernel-side) code. Any general
567 trace framework built on top of BTrace APIs should use the second half of the range.
568 This allows fast (primary filtered only) BTrace categories to be used in device drivers
569 and other base-port code, without clashing with more general trace frameworks implemented
570 for application layer code.
572 EPlatformSpecificFirst = 128,
575 Last category value in the range reserved for platform specific use.
576 @see EPlatformSpecificFirst
578 EPlatformSpecificLast = 191,
581 First category value in the range reserved for Symbian tools and future trace framework
582 implementations; the end of this range is #ESymbianExtentionsLast.
584 ESymbianExtentionsFirst = 192,
587 Last category value in the range reserved for Symbian tools and future trace framework
589 @see ESymbianExtentionsFirst
591 ESymbianExtentionsLast = 253,
594 Used for testing purposes.
596 This may be used for ad-hoc testing purposes, e.g. special builds of components
597 with tracing enabled for diagnostic purposes.
599 This category is also used by the E32 BTrace unit tests.
605 Used for testing purposes.
607 This may be used for ad-hoc testing purposes, e.g. special builds of components
608 with tracing enabled for diagnostic purposes.
610 This category is also used by the E32 BTrace unit tests.
617 Enumeration of sub-category values for trace category EThreadIdentification.
618 @see EThreadIdentification
620 enum TThreadIdentification
623 A nano-kernel thread (NThread) has been created.
626 - 4 bytes containing the context id (an NThread*) for this thread.
631 A nano-kernel thread (NThread) has been destroyed.
634 - 4 bytes containing the context id (an NThread*) for this thread.
639 A thread (DThread) has been created.
642 - 4 bytes containing the context id (an NThread*) for this thread.
643 - 4 bytes containing trace id (a DProcess*) for the process to which this thread belongs.
644 - Remaining data is the ASCII name of the thread.
649 A thread (DThread) has been destroyed.
652 - 4 bytes containing the context id (an NThread*) for this thread.
653 - 4 bytes containing trace id for the process to which this thread belongs.
654 - 4 bytes containing thread ID, as returned by RThread::Id().
659 A thread (DThread) has been renamed.
660 This trace may also be output by the tracing system at initialisation
661 in order to identify threads already in existence.
664 - 4 bytes containing the context id (an NThread*) for this thread.
665 - 4 bytes containing trace id (a DProcess*) for the process to which this thread belongs.
666 - Remaining data is the ASCII name of the thread.
671 A process has been renamed.
672 This trace may also be output together with EThreadCreate or EThreadName traces
673 to help identify the name of the process to which the thread belongs.
676 - 4 bytes containing zero, or if this trace is generated together with EThreadName
677 or EThreadCreate, this contains the context id (an NThread*) for the thread.
678 - 4 bytes containing trace id (a DProcess*) for process.
679 - Remaining data is the ASCII name of the process.
684 Informational trace giving a threads ID, as returned by RThread::Id().
686 - 4 bytes containing the context id (an NThread*) for this thread.
687 - 4 bytes containing trace id (a DProcess*) for the process to which this thread belongs.
688 - 4 bytes containing thread ID, as returned by RThread::Id().
693 A process has been created.
696 - 4 bytes containing trace id (a DProcess*) for the process.
701 A process has been destroyed.
704 - 4 bytes containing trace id (a DProcess*) for the process.
711 Enumeration of sub-category values for trace category ECpuUsage.
717 Trace output at start of Interrupt (IRQ) dispatch.
719 On platforms which support nested interrupts, traces for these will also
725 Trace output at end of Interrupt (IRQ) dispatch.
727 Note, this trace isn't generated if an Interrupt Service Routine queues
728 a DFC or causes a thread to be scheduled. In these cases, the traces for
729 these events (EIDFCStart or ENewThreadContext) should be taken to indicate
730 that interrupt servicing has ended.
735 Trace output at start of Fast Interrupt (FIQ) dispatch.
737 On platforms which support nested interrupts, traces for these will also
743 Trace output at end of Fast Interrupt (FIQ) dispatch.
745 Note, this trace isn't generated if an Interrupt Service Routine queues
746 a DFC or causes a thread to be scheduled. In these cases, the traces for
747 these events (EIDFCStart or ENewThreadContext) should be taken to indicate
748 that interrupt servicing has ended.
753 Trace output at start of Immediate Delayed Function Call (IDFC) processing.
754 This processing also includes moving DFCs to their final queue, so the trace
755 does not necessarily indicate that any IDFCs have been executed.
760 Trace output at end of Immediate Delayed Function Call (IDFC) processing.
765 Trace output when a thread is scheduled to run.
766 The context id (NThread*) in this trace is that of the thread being scheduled.
778 Trace generated whenever a server is created and during prime.
781 - 4 bytes containing the server id (a DServer*).
782 - 4 bytes containing the owning thread pointer (a DThread*).
783 - Remaining data is the ASCII name of the server.
789 Trace generated whenever a server is destroyed.
792 - 4 bytes containing the server id (a DServer*).
798 Trace generated whenever a new session is attached to a server and during prime.
799 I.e. a new session has been created.
802 - 4 bytes containing the session id (a DSession*).
803 - 4 bytes containing the server id (a DServer*).
804 - 4 bytes containing the owner id (a DObject*).
806 The context id (NThread*) in this trace is that of the thread creating the session
807 (apart from during prime when it is NULL).
812 Trace generated whenever a server session is detached from a server.
813 I.e. a session has been closed.
816 - 4 bytes containing the session id (a DSession*).
817 - 4 bytes containing the reasons (error code) for the session being closed.
823 Trace generated whenever a new message is sent to a server.
826 - 4 bytes containing the message handle.
827 - 4 bytes containing the iFunction value for the message.
828 - 4 bytes containing the session id (a DSession*).
830 The context id (NThread*) in this trace is that of the thread which sent the message.
835 Trace generated when a server receives a new message.
838 - 4 bytes containing the message handle.
843 Trace generated whenever a message is completed using RMessagePtr2::Complete.
846 - 4 bytes containing the message handle.
847 - 4 bytes containing the completion reason, or object handle, value.
848 (The object handle value is that which is delivered to the sender of the
849 message, not that supplied by the server actually completing the request.)
851 The context id (NThread*) in this trace is that of the thread which completed the message.
864 Trace generated whenever a request status is completed.
867 - 4 bytes containing the thread id (NThread*) of the thread being signalled.
868 - 4 bytes containing the address of the TRequestStatus object.
869 - 4 bytes containing the completion reason.
871 The context id (NThread*) in this trace is that of the thread which completed the request.
878 Enumeration of sub-category values for trace category EChunks.
884 Trace output when a chunk is created.
887 - 4 bytes containing the chunk id (a DChunk*).
888 - 4 bytes containing the maximum size of the chunk.
889 - The ASCII name of the chunk.
896 Trace output when a chunk is created containing extra chunk information.
898 Note that the meaning of the data in this trace is different between
899 memory models, and may change without warning.
902 - 4 bytes containing the chunk id (a DChunk*).
903 - 4 bytes containing the chunk type.
904 - 4 bytes containing the chunk's attributes.
909 Trace output when a chunk is destroyed.
912 - 4 bytes containing the chunk id (a DChunk*)
917 Trace output when memory is allocated and committed to a chunk.
920 - 4 bytes containing the chunk id (a DChunk*).
921 - 4 bytes containing the offset into the chunk.
922 - 4 bytes containing the size of the memory committed.
924 EChunkMemoryAllocated,
927 Trace output when memory is decommitted from a chunk and deallocated.
930 - 4 bytes containing the chunk id (a DChunk*).
931 - 4 bytes containing the offset into the chunk.
932 - 4 bytes containing the size of the memory decommitted.
934 EChunkMemoryDeallocated,
937 Trace output when un-owned memory is committed to a chunk.
940 - 4 bytes containing the chunk id (a DChunk*).
941 - 4 bytes containing the offset into the chunk.
942 - 4 bytes containing the size of the memory committed.
947 Trace output when un-owned memory is decommitted to a chunk.
950 - 4 bytes containing the chunk id (a DChunk*).
951 - 4 bytes containing the offset into the chunk.
952 - 4 bytes containing the size of the memory decommitted.
957 Trace to indicate the owning process of a chunk - only for local (private) chunks.
960 - 4 bytes containing the chunk id (a DChunk*).
961 - 4 bytes containing the process id of the owner (a DProcess*).
967 Enumeration of sub-category values for trace category ECodeSegs.
973 Trace output when a code segment is created to associate a code segment
977 - 4 bytes containing the code segment id (a DCodeSeg*).
978 - The ASCII filename.
983 Trace output when a code segment is created.
986 - 4 bytes containing the code segment id (a DCodeSeg*).
987 - 4 bytes containing the attributes.
988 - 4 bytes containing the code base address (.text).
989 - 4 bytes containing the size of the code section (.text).
990 - 4 bytes containing the base address of the constant data section (.rodata).
991 - 4 bytes containing the size of the constant data section (.rodata).
992 - 4 bytes containing the base address of the initialised data section (.data).
993 - 4 bytes containing the size of the initialised data section (.data).
994 - 4 bytes containing the base address of the uninitialised data section (.bss).
995 - 4 bytes containing the size of the uninitialised data section (.bss).
1000 Trace output when a code segment is destroyed.
1003 - 4 bytes containing the code segment id (a DCodeSeg*).
1008 Trace output when a code segment is mapped into a process.
1011 - 4 bytes containing the code segment id (a DCodeSeg*).
1012 - 4 bytes containing the process id (a DProcess*).
1017 Trace output when a code segment is unmapped from a process.
1020 - 4 bytes containing the code segment id (a DCodeSeg*).
1021 - 4 bytes containing the process id (a DProcess*).
1026 Trace output when memory is allocated to a code segment.
1028 Under the multiple memory model, code segments for RAM-loaded user code
1029 own the RAM pages the code occupies. The pages are not owned by any
1030 chunk, but are mapped into the code chunk of each process that uses the
1034 - 4 bytes containing the code segment id (a DCodeSeg*).
1035 - 4 bytes containing the size of the memory allocated.
1037 ECodeSegMemoryAllocated,
1040 Trace output when memory is deallocated from a code segment.
1042 Under the multiple memory model, code segments for RAM-loaded user code
1043 own the RAM pages the code occupies. The pages are not owned by any
1044 chunk, but are mapped into the code chunk of each process that uses the
1048 - 4 bytes containing the code segment id (a DCodeSeg*).
1049 - 4 bytes containing the size of the memory deallocated.
1051 ECodeSegMemoryDeallocated
1056 Enumeration of sub-category values for trace category EPaging.
1062 This event indicates the beginning of the 'page in' activity.
1063 The end of this activity is indicated by one of the following events:
1064 - EPagingPageInUnneeded
1067 - EPagingPageIn (flexible memory model)
1070 - 4 bytes containing the virtual address which was accessed, causing this paging event.
1071 - 4 bytes containing the virtual address of the instruction which caused this paging event.
1074 On the flexible memory model, the following addition trace data is also present:
1075 - 1 byte containing the required access permissions, as defined by TMappingPermissions.
1076 - 3 spare bytes, currently zero
1078 The context id (NThread*) in this trace is that of the thread caused this paging event.
1083 Event which terminates the 'page in' activity when the required page was found to have been
1084 paged in by another thread while the current thread was processing the fault (see
1085 EPagingPageInBegin).
1088 - 0 bytes. (No extra data.)
1090 The context id (NThread*) in this trace is that of the thread caused this paging event.
1092 EPagingPageInUnneeded,
1095 A ROM page has been paged in.
1096 This event indicates the end of the 'page in' activity. (See EPagingPageInBegin.)
1099 - 4 bytes containing the physical address of the page 'paged in'.
1100 - 4 bytes containing the virtual address of the page 'paged in'.
1102 The context id (NThread*) in this trace is that of the thread caused this paging event.
1104 This trace is not emitted on the flexible memory model - EPagingPageIn is used instead.
1109 A ROM page has been 'paged out'. I.e. removed from the live list to be either
1110 reused or returned to free pool.
1113 - 4 bytes containing the physical address of the page being 'paged out'.
1114 - 4 bytes containing the virtual address of the page being 'paged out'.
1116 The context id (NThread*) in this trace is that of the thread caused this paging event.
1118 This trace is not emitted on the flexible memory model - EPagingPageOut is used instead.
1123 A Free page has been 'paged in'. I.e. added to the live list.
1126 - 4 bytes containing the physical address of the page being 'paged in'.
1128 The context id (NThread*) in this trace is that of the thread caused this paging event.
1133 A Free page has been 'paged out'. I.e. removed from the live list to be either
1134 reused or returned to free pool.
1137 - 4 bytes containing the physical address of the page being 'paged out'.
1139 The context id (NThread*) in this trace is that of the thread caused this paging event.
1141 This trace is not emitted on the flexible memory model - EPagingPageOut is used instead.
1146 A page has been made 'young' again because it was accessed.
1149 - 4 bytes containing the physical address of the page being rejuvenated, (made young).
1150 - 4 bytes containing the virtual address which was accessed, causing this paging event.
1151 - 4 bytes containing the virtual address of the instruction which caused this paging event.
1154 The context id (NThread*) in this trace is that of the thread caused this paging event.
1159 A page fault was found to have already been previously serviced.
1162 - 4 bytes containing the physical address of the page accessed.
1163 - 4 bytes containing the virtual address which was accessed, causing this paging event.
1164 - 4 bytes containing the virtual address of the instruction which caused this paging event.
1167 The context id (NThread*) in this trace is that of the thread caused this paging event.
1169 This trace is not emitted on the flexible memory model.
1174 A page has been locked.
1177 - 4 bytes containing the physical address of the page being locked.
1178 - 4 bytes containing the value of the lock count after the paged was locked.
1180 The context id (NThread*) in this trace is that of the thread caused this paging event.
1185 A page has been unlocked.
1188 - 4 bytes containing the physical address of the page being unlocked.
1189 - 4 bytes containing the value of the lock count before the paged was unlocked.
1191 The context id (NThread*) in this trace is that of the thread caused this paging event.
1196 A page containing RAM cache has been 'paged out'. I.e. removed from the live list to be
1197 either reused or returned to free pool.
1200 - 4 bytes containing the physical address of the page being 'paged out'.
1201 - 4 bytes containing the virtual address of the page being 'paged out'.
1203 The context id (NThread*) in this trace is that of the thread caused this paging event.
1205 This trace is not emitted on the flexible memory model - EPagingPageOut is used instead.
1207 EPagingPageOutCache,
1210 A page containing RAM-loaded code has been paged in.
1211 This event indicates the end of the 'page in' activity. (See EPagingPageInBegin.)
1214 - 4 bytes containing the physical address of the page 'paged in'.
1215 - 4 bytes containing the virtual address of the page 'paged in'.
1217 The context id (NThread*) in this trace is that of the thread caused this paging event.
1219 This trace is not emitted on the flexible memory model - EPagingPageIn is used instead.
1224 A page containing RAM-loaded code has been 'paged out'. I.e. removed from the live list to be
1225 either reused or returned to free pool.
1228 - 4 bytes containing the physical address of the page being 'paged out'.
1229 - 4 bytes containing the virtual address of the page being 'paged out'.
1231 The context id (NThread*) in this trace is that of the thread caused this paging event.
1233 This trace is not emitted on the flexible memory model - EPagingPageOut is used instead.
1238 A page of RAM-loaded code was found to already be 'paged in' but not mapped in
1239 the faulting process.
1242 - 4 bytes containing the physical address of the page 'paged in'.
1243 - 4 bytes containing the virtual address which was accessed, causing this paging event.
1245 The context id (NThread*) in this trace is that of the thread caused this paging event.
1247 This trace is only emitted on the multiple memory model.
1252 A page has been made 'old' because it was the last young page to be accessed.
1254 This trace is only produced when the kernel is compiled with the #BTRACE_PAGING_VERBOSE
1258 - 4 bytes containing the physical address of the page being aged, (made old).
1260 The context id (NThread*) in this trace is that of the thread caused this paging event.
1265 Trace emitted at the start of decompression of demand paged data.
1267 This trace is only produced when the kernel is compiled with the #BTRACE_PAGING_VERBOSE
1271 - 4 bytes containing an integer which indicates the compression type being used:
1273 1, bytepair compression.
1275 The context id (NThread*) in this trace is that of the thread caused this paging event.
1277 EPagingDecompressStart,
1280 Trace emitted at the end of decompression of demand paged data.
1282 This trace is only produced when the kernel is compiled with the #BTRACE_PAGING_VERBOSE
1285 The context id (NThread*) in this trace is that of the thread caused this paging event.
1287 EPagingDecompressEnd,
1290 Information about the kernel's memory model.
1293 - 4 bytes containing the memory model as defined by TMemModelAttributes.
1298 A page has been donated to the paging cache via RChunk::Unlock().
1301 - 4 bytes containing the chunk id (a DChunk*).
1302 - 4 bytes containing the page index of the page within the chunk.
1304 This trace is not emitted on the flexible memory model.
1305 @see EPagingDonatePage
1307 EPagingChunkDonatePage,
1310 A page has been reclaimed from the paging cache via RChunk::Lock().
1313 - 4 bytes containing the chunk id (a DChunk*).
1314 - 4 bytes containing the page index of the page within the chunk.
1316 This trace is not emitted on the flexible memory model.
1317 @see EPagingReclaimPage.
1319 EPagingChunkReclaimPage,
1321 // Traces specific to the flexible memory model
1324 A page has been paged in.
1325 This event indicates the end of the 'page in' activity. (See EPagingPageInBegin.)
1328 - 4 bytes containing the physical address of the page 'paged in'.
1329 - 4 bytes containing the memory object id (DMemoryObject*).
1330 - 4 bytes containing the page index of the page within the memory object.
1332 The context id (NThread*) in this trace is that of the thread caused this paging event.
1334 This trace is only emitted on the flexible memory model.
1339 A page has been 'paged out'. I.e. removed from the live list to be either
1340 reused or returned to free pool.
1343 - 4 bytes containing the physical address of the page being 'paged out'.
1345 The context id (NThread*) in this trace is that of the thread caused this paging event.
1347 This trace is only emitted on the flexible memory model.
1352 Event which terminates the 'page in' activity when the required page was found to
1353 already be paged in but not mapped in the faulting process (see EPagingPageInBegin).
1356 - 4 bytes containing the physical address of the page 'paged in'.
1358 The context id (NThread*) in this trace is that of the thread caused this paging event.
1360 This trace is only emitted on the flexible memory model.
1365 A page has been donated to the paging cache via RChunk::Unlock().
1368 - 4 bytes containing the physical address of the page.
1369 - 4 bytes containing the memory object id (DMemoryObject*).
1370 - 4 bytes containing the page index of the page within the memory object.
1372 This trace is only emitted on the flexible memory model.
1373 @see EPagingChunkDonatePage.
1378 A page has been reclaimed from the paging cache via RChunk::Lock().
1381 - 4 bytes containing the physical address of the page.
1383 This trace is only emitted on the flexible memory model.
1384 @see EPagingChunkReclaimPage.
1389 A page has been moved to the oldest clean list because it was the last old page and
1392 This trace is only produced when the kernel is compiled with the #BTRACE_PAGING_VERBOSE
1396 - 4 bytes containing the physical address of the page being moved to the oldest clean list.
1398 The context id (NThread*) in this trace is that of the thread caused this paging event.
1403 A page has been moved to the oldest dirty list because it was the last old page and
1406 This trace is only produced when the kernel is compiled with the #BTRACE_PAGING_VERBOSE
1410 - 4 bytes containing the physical address of the page being moved to the oldest dirty list.
1412 The context id (NThread*) in this trace is that of the thread caused this paging event.
1417 A page has been allocated to hold the MMU page tables required to map demand paged memory.
1420 - 4 bytes containing the physical address of the page allocated.
1422 The context id (NThread*) in this trace is that of the thread caused this paging event.
1424 This trace is only emitted on the flexible memory model.
1426 EPagingPageTableAlloc,
1430 Enumeration of sub-category values for trace category EResourceManager.
1431 @see EResourceManager
1434 enum TResourceManager
1437 Trace output for resource registration.
1440 - 4 bytes containing the Resource Id.
1441 - 4 bytes containing the Resource address.
1442 - N bytes containing the Resource name, where 0 < N < 32
1443 - 4 bytes containing the Resource Minimum Level
1444 - 4 bytes containing the Resource Maximum Level
1445 - 4 bytes containing the Resource Default Level
1447 ERegisterResource = 0,
1450 Trace output for client registration
1453 - 4 bytes containing clientId
1454 - 4 bytes containing client address
1455 - N bytes containing client name, where 0 < N < 32
1460 Trace output for client deregistration
1463 - 4 bytes containing clientId
1464 - 4 bytes containing client address
1465 - N bytes containing client name, where 0 < N < 32
1470 Trace output for resource state change start operation
1473 - 4 bytes containing clientId
1474 - 4 bytes containing the Resource Id.
1475 - N bytes containing client name, where 0 < N < 32
1476 - N bytes containing the Resource name, where 0 < N < 32
1477 - 4 bytes containing the Resource state
1479 ESetResourceStateStart,
1482 Trace output for resource state change end operation
1485 - 4 bytes containing clientId
1486 - 4 bytes containing the Resource Id.
1487 - N bytes containing client name, where 0 < N < 32
1488 - N bytes containing the Resource name, where 0 < N < 32
1489 - 4 bytes containing return value.
1490 - 4 bytes containing the Resource state.
1492 ESetResourceStateEnd,
1495 Trace output for registration for post notification
1498 - 4 bytes containing clientId
1499 - 4 bytes containing the Resource Id.
1500 - 4 bytest containing the callback address
1501 - 4 bytes containing return value.
1503 EPostNotificationRegister,
1506 Trace output for deregistration for post notification
1509 - 4 bytes containing clientId
1510 - 4 bytes containing the Resource Id.
1511 - 4 bytes containing the callback address
1512 - 4 bytes containing the return value.
1514 EPostNotificationDeRegister,
1517 Trace output for post notification sent.
1520 - 4 bytes containing clientId
1521 - 4 bytes containing the Resource Id.
1523 EPostNotificationSent,
1526 Trace output for Callback complete
1529 - 4 bytes containing clientId
1530 - 4 bytes containing the Resource Id.
1535 Trace output for resource manager memory usage
1538 - 4 bytes containing memory allocated in bytes.
1543 Trace output for get resource state start operation
1546 - 4 bytes containing clientId
1547 - 4 bytes containing the Resource Id.
1548 - N bytes containing client name, where 0 < N < 32
1549 - N bytes containing the Resource name, where 0 < N < 32
1551 EGetResourceStateStart,
1554 Trace output for get resource state end operation
1557 - 4 bytes containing clientId
1558 - 4 bytes containing the Resource Id.
1559 - N bytes containing client name, where 0 < N < 32
1560 - N bytes containing the Resource name, where 0 < N < 32
1561 - 4 bytes containing the Resource state
1562 - 4 bytes containing return value.
1564 EGetResourceStateEnd,
1567 Trace output for cancellation of long latency operation
1570 - 4 bytes containing clientId
1571 - 4 bytes containing the Resource Id.
1572 - N bytes containing client name, where 0 < N < 32
1573 - N bytes containing the Resource name, where 0 < N < 32
1574 - 4 bytes containing return value
1576 ECancelLongLatencyOperation,
1579 Trace output for booting of resource manager
1582 - 4 bytes containing entry point
1587 Trace output for PSL resource state change operation
1590 - 4 bytes containing clientId
1591 - 4 bytes containing the Resource Id.
1592 - N bytes containing the Resource name, where 0 < N < 32
1593 - 4 bytes containing the Resource current state
1594 - 4 bytes containing the resource requested state
1596 EPslChangeResourceStateStart,
1599 Trace output for PSL resource state change operation
1602 - 4 bytes containing clientId
1603 - 4 bytes containing the Resource Id.
1604 - N bytes containing the Resource name, where 0 < N < 32
1605 - 4 bytes containing the Resource current state
1606 - 4 bytes containing the resource requested state
1607 - 4 bytes containing return value
1609 EPslChangeResourceStateEnd,
1612 Trace output for get resource state start operation in PSL
1615 - 4 bytes containing clientId
1616 - 4 bytes containing the Resource Id.
1617 - N bytes containing the Resource name, where 0 < N < 32
1619 EPslGetResourceStateStart,
1622 Trace output for get resource state end operation in PSL
1625 - 4 bytes containing clientId
1626 - 4 bytes containing the Resource Id.
1627 - N bytes containing the Resource name, where 0 < N < 32
1628 - 4 bytes containing the Resource state
1629 - 4 bytes containing return value.
1631 EPslGetResourceStateEnd,
1634 Trace output for resource creation
1637 - 4 bytes containing minimum value of resource
1638 - 4 bytes containing maximum value of resource
1639 - 4 bytes containing the default value of resource
1640 - 4 bytes containing the properties of the resource
1641 - N bytes containing the Resource name, where 0 < N < 32
1646 Trace output for static resource with dependency registration
1649 - 4 bytes containing the Resource Id
1650 - 4 bytes containing the Resource address
1651 - N bytes containing the Resource name, where 0 < N < 32
1652 - 4 bytes containing the minimum value of resource
1653 - 4 bytes containing the maximum value of resource
1654 - 4 bytes containing the default value of resource
1656 ERegisterStaticResourceWithDependency,
1659 Trace output for dynamic resource registration
1662 - 4 bytes containing clientId
1663 - 4 bytes containing the Resource Id
1664 - N bytes containing the client name, where 0 < N < 32
1665 - N bytes containing the resource name, where 0 < N < 32
1666 - 4 bytes containing the resouce address
1668 ERegisterDynamicResource,
1671 Trace output for dynamic resource deregistration
1674 - 4 bytes containing clientId
1675 - 4 bytes containing the Resource Id
1676 - N bytes containing the client name, where 0 < N < 32
1677 - N bytes containing the resource name, where 0 < N < 32
1678 - 4 bytes containing the resource address
1679 - 4 bytes containing the resource level.
1681 EDeRegisterDynamicResource,
1684 Trace output for resource dependency registration
1687 - 4 bytes containing clientId
1688 - 4 bytes containing the Resource Id of first dependent resource
1689 - N bytes containing the client name, where 0 < N < 32
1690 - N bytes containing the resource name of first dependent resource, where 0 < N < 32
1691 - 4 bytes containing the Resource Id of second dependent resource
1692 - N bytes containing the resource name of second dependent resource, where 0 < N < 32
1693 - 4 bytes containing the address of first dependent resource
1694 - 4 bytes containing the address of second dependent resource
1696 ERegisterResourceDependency,
1699 Trace output for resource dependency deregistration
1702 - 4 bytes containing clientId
1703 - 4 bytes containing the Resource Id of first dependent resource
1704 - N bytes containing the client name, where 0 < N < 32
1705 - N bytes containing the resource name of first dependent resource, where 0 < N < 32
1706 - 4 bytes containing the resource id of second dependent resource
1707 - N bytes containing the resource name of second dependent resource, where 0 < N < 32
1708 - 4 bytes containing the address of first dependent resource
1709 - 4 bytes containing the address of second dependent resource
1711 EDeRegisterResourceDependency
1714 Enumeration of sub-category values for trace category EResourceManagerUs.
1715 @see EResourceManagerUs
1718 enum TResourceManagerUs
1721 Trace output for the start of opening a channel to the Resource Controller.
1724 - 4 bytes unused (displays 0)
1725 - 4 bytes containing the client thread identifier.
1726 - N bytes containing the client name, where 0 < N < 32
1728 EOpenChannelUsStart = 0,
1730 Trace output for the end of opening a channel to the Resource Controller.
1733 - 4 bytes unused (displays 0)
1734 - 4 bytes containing the client identifier provided by the Resource Controller
1735 - N bytes containing the client name, where 0 < N < 32
1739 Trace output for the start of registering a client with the Resource Controller.
1742 - 4 bytes the number of concurrent change resource state operations to be supported
1743 - 4 bytes the number of concurrent notification requests to be supported
1744 - N bytes containing the client name, where 0 < N < 32
1745 - 4 bytes the number of concurrent get resource state operations to be supported
1747 ERegisterClientUsStart,
1749 Trace output for the end of registering a client with the Resource Controller.
1752 - 4 bytes containing the client identifier provided by the Resource Controller.
1753 - 4 bytes specifying the value returned from the call to Resource Controller's AllocReserve method
1755 ERegisterClientUsEnd,
1757 Trace output for the start of de-registering a client with the Resource Controller.
1760 - 4 bytes unused (displays 0)
1761 - 4 bytes containing the client identifier provided by the Resource Controller.
1762 - N bytes containing the client name, where 0 < N < 32
1764 EDeRegisterClientUsStart,
1766 Trace output for the end of registering a client with the Resource Controller.
1769 - 4 bytes containing the client identifier provided by the Resource Controller.
1771 EDeRegisterClientUsEnd,
1773 Trace output for the start of a GetResourceState request to the Resource Controller.
1776 - 4 bytes specifying the resource ID
1777 - 4 bytes containing the client identifier provided by the Resource Controller.
1778 - N bytes containing the client name, where 0 < N < 32
1780 EGetResourceStateUsStart,
1782 Trace output for the end of a GetResourceState request to the Resource Controller.
1785 - 4 bytes specifying the resource ID
1786 - 4 bytes specifying the resource level
1787 - 4 bytes containing the client identifier
1788 - 4 bytes specifying the success code returned by the Resource Controller.
1790 EGetResourceStateUsEnd,
1792 Trace output for the start of a ChangeResourceState request to the Resource Controller.
1795 - 4 bytes specifying the resource ID
1796 - 4 bytes specifying the required state
1797 - N bytes containing the client name, where 0 < N < 32
1798 - 4 bytes containing the client identifier provided by the Resource Controller.
1800 ESetResourceStateUsStart,
1802 Trace output for the end of a ChangeResourceState request to the Resource Controller.
1805 - 4 bytes specifying the resource ID
1806 - 4 bytes specifying the requested state
1807 - 4 bytes containing the client identifier
1808 - 4 bytes specifying the success code returned by the Resource Controller.
1810 ESetResourceStateUsEnd,
1812 Trace output for the start of a cancel GetResourceState request to the Resource Controller.
1815 - 4 bytes specifying the resource ID
1816 - 4 bytes containing the client identifier provided by the Resource Controller.
1817 - N bytes containing the client name, where 0 < N < 32
1819 ECancelGetResourceStateUsStart,
1821 Trace output for the end of a cancel GetResourceState request to the Resource Controller.
1824 - 4 bytes specifying the resource ID
1825 - 4 bytes containing the client identifier provided by the Resource Controller.
1826 - N bytes containing the client name, where 0 < N < 32
1828 ECancelGetResourceStateUsEnd,
1830 Trace output for the start of a cancel ChangeResourceState request to the Resource Controller.
1833 - 4 bytes specifying the resource ID
1834 - 4 bytes containing the client identifier provided by the Resource Controller.
1835 - N bytes containing the client name, where 0 < N < 32
1837 ECancelSetResourceStateUsStart,
1839 Trace output for the end of a cancel ChangeResourceState request to the Resource Controller.
1842 - 4 bytes specifying the resource ID
1843 - 4 bytes containing the client identifier provided by the Resource Controller.
1844 - N bytes containing the client name, where 0 < N < 32
1846 ECancelSetResourceStateUsEnd
1850 Enumeration of sub-category values for trace category EThreadPriority.
1851 @see EThreadPriority
1855 enum TThreadPriority
1858 Trace output when a nanothread priority is changed.
1861 - 4 bytes containing the context id (an NThread*) for the thread whose priority is changing.
1862 - 4 bytes containing the new absolute priority.
1867 Trace output when a DThread's default priority is set.
1870 - 4 bytes containing the context id (an NThread*) for the thread whose priority is changing.
1871 - 4 bytes containing the iThreadPriority member - a value from enum ::TThrdPriority.
1872 - 4 bytes containing the new default absolute priority.
1877 Trace output when a DProcess priority is changed.
1880 - 4 bytes containing trace id (a DProcess*) for process.
1881 - 4 bytes containing the new process priority, a value from enum ::TProcPriority
1887 Enumeration of sub-category values for trace category EPagingMedia.
1893 Event generated when a request to 'page in' data is received by the Local Media Subsystem.
1896 - 4 bytes containing the linear address of the buffer to where the data is to be written.
1897 - 4 bytes containing the offset from start of the partition to where the data to be paged in resides.
1898 - 4 bytes containing the number of bytes to be read off the media.
1899 - 4 bytes containing local drive number for the drive where the data to be paged in resides (-1 if ROM paging).
1900 - 4 bytes containing the linear address in memory where this request object resides.
1902 The context id (NThread*) in this trace is that of the thread that took the page fault that caused this event.
1904 EPagingMediaLocMedPageInBegin,
1907 Event generated by the Local Media Subsystem when a request to page data in or out has completed.
1910 - 4 bytes containing the linear address in memory where this request object resides.
1911 - 4 bytes containing the completion code to be returned.
1912 - 4 bytes containing a code qualifying this request as either a ROM or Code 'page in' (see TPagingRequestId) or a data page-in/out.
1914 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
1916 EPagingMediaLocMedPageInPagedIn,
1919 Event generated by the Local Media Subsystem when a request to 'page in' data is deferred.
1922 - 4 bytes containing the linear address in memory where this request object resides.
1923 - 4 bytes containing a code qualifying this request as either a ROM or Code 'page in' (see TPagingRequestId) or a data page-in/out..
1925 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
1927 EPagingMediaLocMedPageInDeferred,
1930 Event generated by the Local Media Subsystem when a request to 'page in' data that has been deferred is re-posted.
1933 - 4 bytes containing the linear address in memory where this request object resides.
1934 - 4 bytes containing a code qualifying this request as either a ROM or Code 'page in' (see TPagingRequestId) or a data page-in/out..
1936 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
1938 EPagingMediaLocMedPageInDeferredReposted,
1941 Event generated by the Local Media Subsystem when a request to 'page in' data is re-deferred.
1944 - 4 bytes containing the linear address in memory where this request object resides.
1945 - 4 bytes containing a code qualifying this request as either a ROM or Code 'page in' (see TPagingRequestId) or a data page-in/out..
1947 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
1949 EPagingMediaLocMedPageInReDeferred,
1952 Event generated by the Local Media Subsystem when a request to 'page in' data is issued when the media is not yet open.
1955 - 4 bytes containing the linear address in memory where this request object resides.
1956 - 4 bytes containing the state of the media (one of TMediaState).
1957 - 4 bytes containing a code qualifying this request as either a ROM or Code 'page in' (see TPagingRequestId) or a data page-in/out..
1959 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
1961 EPagingMediaLocMedPageInQuietlyDeferred,
1964 Event generated by the Local Media Subsystem when a fragment of a Write request is created and is ready to be sent to the Media
1968 - 4 bytes containing the linear address in memory where this request object resides.
1969 - 4 bytes containing the ID of this fragment (middle or last).
1970 - 4 bytes containing the length of data in this request fragment.
1971 - 4 bytes containing the offset within the original request to the start of data in this fragment.
1972 - 4 bytes containing the offset from start of the partition to where the data in this fragment is to be written.
1973 - 4 bytes containing the address of the DThread object representing the thread that issued the original Write request.
1975 The context id (NThread*) in this trace is that of the File Server drive thread that issued the original Write request.
1977 EPagingMediaLocMedFragmentBegin,
1980 Event generated by the Local Media Subsystem when a Write fragment is completed .
1983 - 4 bytes containing the linear address in memory where this request object resides.
1984 - 4 bytes containing the completion code to be returned.
1986 The context id (NThread*) in this trace is that of the File Server drive thread that issued the original Write request.
1988 EPagingMediaLocMedFragmentEnd,
1991 Event generated when the Media Driver starts processing a request to 'page in' data in its specific Request(..) function.
1994 - 4 bytes containing a code describing the type of the media (one of TMediaDevice).
1995 - 4 bytes containing the linear address in memory where this request object resides.
1997 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
1999 EPagingMediaPagingMedDrvBegin,
2002 Event generated by the Media Driver when the data read by a 'page in' request is written to the paging buffer.
2005 - 4 bytes containing a code describing the type of the media (one of TMediaDevice).
2006 - 4 bytes containing the linear address in memory where this request object resides.
2007 - 4 bytes containing the linear address of the buffer to where the data is to be written.
2008 - 4 bytes containing the offset within the buffer to where the data will be written.
2009 - 4 bytes containing the length of data to be written.
2011 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
2013 EPagingMediaMedDrvWriteBack,
2016 Event generated when a request to 'page in' data is put on hold because the Media Driver is performing some background
2017 operation (not another request) and cannot service the request.
2020 - 4 bytes containing a code describing the type of the media (one of TMediaDevice).
2021 - 4 bytes containing the linear address in memory where this request object resides.
2023 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
2025 EPagingMediaMedDrvOnHold,
2028 Event generated by the Media Driver when the data read by a 'page out' request is read from the paging buffer.
2031 - 4 bytes containing a code describing the type of the media (one of TMediaDevice).
2032 - 4 bytes containing the linear address in memory where this request object resides.
2033 - 4 bytes containing the linear address of the buffer to where the data is to be written.
2034 - 4 bytes containing the offset within the buffer to where the data will be written.
2035 - 4 bytes containing the length of data to be written.
2037 The context id (NThread*) in this trace is that of the media driver thread that services this 'page in' request.
2039 EPagingMediaMedDrvRead,
2042 Event generated when a request to 'page out' data is received by the Local Media Subsystem.
2045 - 4 bytes containing the linear address of the buffer from where the data is to be read.
2046 - 4 bytes containing the offset from start of the partition to where the data to be paged out resides.
2047 - 4 bytes containing the number of bytes to be written to the media.
2048 - 4 bytes containing the linear address in memory where this request object resides.
2050 The context id (NThread*) in this trace is that of the thread that took the page fault that caused this event.
2052 EPagingMediaLocMedPageOutBegin,
2055 Event generated when a request to mark an area of the swap file as deleted is received by the Local Media Subsystem.
2058 - 4 bytes containing NULL
2059 - 4 bytes containing the offset from start of the partition to where the data to be paged out resides.
2060 - 4 bytes containing the number of bytes to be marked as deleted
2061 - 4 bytes containing the linear address in memory where this request object resides.
2063 The context id (NThread*) in this trace is that of the thread that took the page fault that caused this event.
2065 EPagingMediaLocMedDeleteNotifyBegin,
2070 Enumeration of sub-category values for trace category EKernelMemory.
2076 Event recorded during startup and prime which details the initial amount of free RAM.
2079 - 4 bytes containing the number of bytes of RAM the system started with.
2081 EKernelMemoryInitialFree,
2084 Event recorded during prime which records the then-current amount of free RAM.
2087 - 4 bytes containing the number of bytes of free RAM.
2089 EKernelMemoryCurrentFree,
2092 Event recorded when a miscellaneous kernel allocation is made. These include:
2093 - Memory for MMU page table contents
2094 - Memory for MMU SPageTableInfos
2095 - Memory for shadow pages
2098 - 4 bytes containing the size, in bytes, of the allocation.
2100 EKernelMemoryMiscAlloc,
2103 Event recorded when a miscellaneous kernel allocation (see EKernelMemoryMiscAlloc
2107 - 4 bytes containing the size, in bytes, of the freed allocation.
2109 EKernelMemoryMiscFree,
2112 The amount of memory reserved for the minimum demand paging cache. The *actual* DP cache
2113 also uses free memory, only this minimum amount is permanently reserved for that purpose.
2114 This event is recorded during prime and when the amount changes.
2117 - 4 bytes containing the minimum size, in bytes, of the demand paging cache.
2119 EKernelMemoryDemandPagingCache,
2122 Physically contiguous memory allocated by device drivers via one of:
2123 Epoc::AllocPhysicalRam()
2124 Epoc::ZoneAllocPhysicalRam()
2125 Epoc::ClaimPhysicalRam()
2126 TRamDefragRequest::ClaimRamZone()
2129 - 4 bytes containing the size of the allocated memory.
2130 - 4 bytes containing the physical base address of allocated memory.
2132 NB: The prime function logs a EKernelMemoryDrvPhysAlloc record where the physical
2133 address is -1 and should be ignored.
2135 EKernelMemoryDrvPhysAlloc,
2138 Memory freed by device drivers via calls to all versions of
2139 Epoc::FreePhysicalRam().
2142 - 4 bytes containing the size of the freed memory.
2143 - 4 bytes containing the physical base address of freed memory.
2145 EKernelMemoryDrvPhysFree,
2149 Enumeration of sub-category values for trace category EHeap.
2155 Event recorded during process startup which logs the point of heap creation.
2158 - 4 bytes containing the heap ID (The RAllocator*)
2159 - 2 bytes containing the size of header overhead, per allocation (0xFFFF indicates a variable size)
2160 - 2 bytes containing the size of footer overhead, per allocation (0xFFFF indicates a variable size)
2165 Event recorded during process startup which details the chunk being used as a heap.
2168 - 4 bytes containing the heap ID (The RAllocator*)
2169 - 4 bytes containing the chunk ID (The RHandleBase* of the chunk)
2174 Event recorded when RHeap::Alloc() is called.
2177 - 4 bytes containing the heap ID (The RAllocator*)
2178 - 4 bytes containing the address of the allocation
2179 - 4 bytes containing the size of the allocation
2180 - 4 bytes containing the requested size of allocation
2185 Event recorded when RHeap::ReAlloc() is called.
2188 - 4 bytes containing the heap ID (The RAllocator*)
2189 - 4 bytes containing the address of the new allocation
2190 - 4 bytes containing the size of the allocation
2191 - 4 bytes containing the requested size of allocation
2192 - 4 bytes containing the address of the old allocation
2197 Event recorded when RHeap::Free() is called.
2200 - 4 bytes containing the heap ID (The RAllocator*)
2201 - 4 bytes containing the address of the free'd allocation
2206 Event recorded when RHeap::Alloc() fails.
2209 - 4 bytes containing the heap ID (The RAllocator*)
2210 - 4 bytes containing the requested size of allocation
2215 Event recorded when RHeap::ReAlloc() fails.
2218 - 4 bytes containing the heap ID (The RAllocator*)
2219 - 4 bytes containing the address of the old allocation
2220 - 4 bytes containing the requested size of allocation
2225 Event recorded when heap memory corruption occurs.
2228 - 4 bytes containing the heap ID (The RAllocator*)
2229 - 4 bytes containing address of the corrupted memory block
2230 - 4 bytes containing length of the corrupted memory block
2235 Trace to provide additional heap debugging information.
2237 This trace (if present) is generated by Symbian OS memory debug tools, and
2238 will follow one of the other THeap events (e.g. EHeapAlloc, EHeapFree, etc.).
2239 It is intended to provide a stack trace for the preceding heap event,
2240 to indicate how the previous heap event was generated.
2242 On many systems exact stack frames are not available, and the values
2243 will be extracted from the stack using heuristics, so there may be some
2244 spurious values and some missing values.
2247 - 4 bytes containing the heap ID (the RAllocator*)
2248 - sequence of 4-byte PC values representing the call stack, with the top-most
2249 (most recent call) first.
2255 Enumeration of sub-category values for trace category EMetaTrace.
2261 Information about timestamps used for tracing.
2264 - 4 bytes containing the period of the Timestamp value.
2265 - 4 bytes containing the period of the Timestamp2 value.
2266 - 4 bytes containing a set of bit flags with the following meaning:
2267 - Bit 0, if true, indicates that Timestamp and Timestamp2 are two halves
2268 of a single 64bit timestamp value; Timestamp2 is the most significant part.
2269 - All other bits are presently undefined.
2271 The format of the timestamp period data is a period in seconds given using an exponent and mantissa
2272 format, where the most significant 8 bits are the signed power-of-two value for the exponent, and
2273 the least significant 24 bits are the integer value of the mantissa. The binary point is to the right
2274 of the least significant mantissa bit, and the mantissa may not be in normalised form.
2276 Example code for decoding the period:
2278 TInt32 period; // value from trace record
2279 int exponent = (signed char)(period>>24);
2280 int mantissa = period&0xffffff;
2281 double periodInSeconds = (double)mantissa*pow(2,exponent);
2284 EMetaTraceTimestampsInfo,
2287 Trace indicating the start of a test case being measured.
2290 - 4 bytes containing measurement specific value.
2291 - 4 bytes containing a further measurement specific value.
2292 - Remaining data is ASCII text providing human readable information.
2294 EMetaTraceMeasurementStart,
2297 Trace indicating the end of a test case being measured.
2300 - 4 bytes containing measurement specific identifying value.
2301 - 4 bytes containing a further measurement specific identifying value.
2303 The values contained in this trace must be identical to those in the corresponding
2304 ETraceInfoMeasurementStart trace.
2306 EMetaTraceMeasurementEnd,
2309 Trace indicating a change in state of the primary filter.
2312 - 1 byte containing a trace category number.
2313 - 1 byte containing the new filter state for the category. (0=off, 1=on).
2314 - 2 byte padding. (Should be output as zeros.)
2316 EMetaTraceFilterChange,
2320 Enumeration of sub-category values for trace category ERamAllocator.
2321 @see BTrace::ERamAllocator
2326 The number of RAM zones.
2329 - 4 bytes containing the number of RAM zones.
2334 Information on the layout of a RAM zone.
2337 - 4 bytes containing the number of pages in the zone
2338 - 4 bytes containing the physical base address of the zone
2339 - 4 bytes containing the ID of the zone
2340 - 1 bytes containing the preference of the zone
2341 - 1 bytes containing the flags of the zone
2342 - 2 bytes reserved for future use
2344 ERamAllocZoneConfig,
2347 This trace is sent for every contiguous block of RAM that was allocated
2348 during the kernel boot process.
2351 - 4 bytes containing the number of contiguous pages allocated for the block
2352 - 4 bytes containing the physical base address of the block
2354 ERamAllocBootAllocation,
2358 This trace marks the end of the boot allocations
2361 - no extra bytes are sent
2363 ERamAllocBootAllocationEnd,
2366 Event generated when a RAM zone's flags have been modified
2367 This could occur when a RAM zone is blocked/unblocked from further
2368 allocations from all/certain page types.
2371 - 4 bytes containing the ID of the zone
2372 - 4 bytes containing the flags of the zone
2374 ERamAllocZoneFlagsModified,
2377 Event generated when DRamAllocator::ClaimPhysicalRam has successfully
2378 claimed the specified RAM pages.
2381 - 4 bytes containing the number of contiguous pages
2382 - 4 bytes containing the base address of the pages
2387 Event generated when DRamAllocator::MarkPageAllocated has successfully
2388 marked the specified page as allocated.
2391 - 4 bytes containing the TZonePageType type of the page
2392 - 4 bytes containing the address of the page
2394 ERamAllocMarkAllocated,
2397 Event generated when DRamAllocator::AllocContiguousRam successfully
2398 allocates the requested number of pages.
2401 - 4 bytes containing the TZonePageType type of the pages
2402 - 4 bytes containing the number of contiguous pages
2403 - 4 bytes containing the base address of the pages
2405 ERamAllocContiguousRam,
2408 Event generated when DRamAllocator::FreePage has successfully freed
2409 the specified RAM page.
2412 - 4 bytes containing the TZonePageType type of the page
2413 - 4 bytes containing the address of the page
2418 Event generated when DRamAllocator::FreePhysical successfully freed
2419 the specified RAM page(s).
2422 - 4 bytes containing the number of contiguous pages
2423 - 4 bytes containing the base address of the pages
2425 ERamAllocFreePhysical,
2428 Event generated for each contiguous block of pages when
2429 DRamAllocator::AllocRamPages or DRamAllocator::ZoneAllocRamPages
2430 are attempting to fulfil a request.
2433 - 4 bytes containing the TZonePageType type of the pages
2434 - 4 bytes containing the number of contiguous pages
2435 - 4 bytes containing the base address of the pages
2440 Event generated for contiguous block of pages when
2441 DRamAllocator::FreeRamPages is invoked.
2444 - 4 bytes containing the TZonePageType type of the pages
2445 - 4 bytes containing the number of contiguous pages
2446 - 4 bytes containing the base address of the pages
2451 Event generated when DRamAllocator::AllocRamPages has successfully
2452 allocated all the requested number of RAM pages. If DRamAllocator::AllocRamPages
2453 couldn't allocate all the requested pages then this event is not generated.
2456 - no extra bytes sent
2458 ERamAllocRamPagesEnd,
2461 Event generated when all ERamAllocFreePages events for a particular
2462 call of DRamAllocator::FreeRamPages have been generated.
2465 - no extra bytes sent
2467 ERamAllocFreePagesEnd,
2470 Event generated when DRamAllocator::ChangePageType is has successfully
2471 updated the type of the specified page.
2474 - 4 bytes containing the new TZonePageType type of the page
2475 - 4 bytes containing the physical address of the page
2477 ERamAllocChangePageType,
2480 Event generated when DRamAllocator::ZoneAllocContiguousRam has
2481 successfully allocated the required number of pages.
2484 - 4 bytes containing the TZonePageType type of the pages
2485 - 4 bytes containing the number of contiguous pages
2486 - 4 bytes containing the base address of the pages
2488 ERamAllocZoneContiguousRam,
2491 Event generated when DRamAllocator::ZoneAllocRamPages has successfully
2492 allocated all the requested RAM pages. If DRamAllocator::ZoneAllocRamPages
2493 couldn't allocate all the requested pages then this event is not generated.
2496 - no extra bytes sent
2498 ERamAllocZoneRamPagesEnd,
2501 Event generated when Epoc::ClaimRamZone has successfully claimed
2505 - 4 bytes containing the ID of the zone that has been claimed.
2513 Event generated when a thread acquires a fast mutex, (waits on it).
2516 - 4 bytes containing the fast mutex id, (an NFastMutex*).
2521 Event generated when a thread releases a fast mutex, (signals it).
2524 - 4 bytes containing the fast mutex id, (an NFastMutex*).
2529 Event generated when a fast mutex is 'flashed' (signalled then immediately
2530 waited on again). E.g the operation performed by NKern::FlashSystem.
2533 - 4 bytes containing the fast mutex id, (an NFastMutex*).
2538 Trace to associate a fast mutex with a textual name.
2541 - 4 bytes containing the fast mutex id, (an NFastMutex*).
2542 - 4 bytes containing unspecified data (should be output as zero).
2543 - Remaining data is the ASCII name for the fast mutex.
2548 Event generated when a thread blocks on a fast mutex.
2551 - 4 bytes containing the fast mutex id, (an NFastMutex*).
2557 Enumeration of sub-category values for trace category EProfiling.
2558 @see BTrace::EProfiling
2563 CPU sample including program counter and thread context.
2566 - 4 bytes containing the program counter.
2567 - 4 bytes containing thread context (an NThread*).
2572 Optimised CPU sample including program counter.
2573 Doesn't include a thread context id as it hasn't changed since
2577 - 4 bytes containing the program counter.
2579 ECpuOptimisedSample,
2582 CPU sample from iDFC including program counter.
2585 - 4 bytes containing the program counter.
2590 CPU sample from non-Symbian thread.
2593 - no extra bytes are sent
2595 ECpuNonSymbianThreadSample
2600 Enumeration of sub-category values for trace category ERawEvent.
2601 @see BTrace::ERawEvent
2607 For all the set Functions in the TRawEvent class.
2608 Trace Data Format Varies depends which of the Overloaded Set Method from where its set .
2610 if there are only one 4 byte data
2612 --The Following oder is folloed for data.
2613 - 4 bytes containing the event type
2615 if there are 2*4 byte data
2616 - 4 bytes containing the event type
2617 - 4 bytes containing the scan code
2619 if there are 3*4 byte data
2620 - 4 bytes containing the event type
2621 --4 bytes containining the X co-ordinate
2622 --4 bytes containining the Y co-ordinate
2624 if there are 4*4 byte data
2625 - 4 bytes containing the event type
2626 --4 bytes containining the X co-ordinate
2627 --4 bytes containining the Y co-ordinate
2628 --4 bytes containining the Z co-ordinate
2630 if there are 5*4 byte data
2631 - 4 bytes containing the event type
2632 --4 bytes containining the X co-ordinate
2633 --4 bytes containining the Y co-ordinate
2634 --4 bytes containining the Z co-ordinate
2635 --4 bytes containining the PointerNumber
2637 if there are 7*4 byte data
2638 - 4 bytes containing the event type
2639 --4 bytes containining the X co-ordinate
2640 --4 bytes containining the Y co-ordinate
2641 --4 bytes containining the Z co-ordinate
2642 --4 bytes containining the Phi polar coordinate.
2643 --4 bytes containining the Theta polar coordinate.
2644 --4 bytes containining the rotation angle(alpha)
2650 For user side SetTip Events
2652 - 4 bytes to state containing Tip Info.
2659 - 4 bytes containing the event type
2660 --4 bytes containining the Phi polar coordinate.
2661 --4 bytes containining the Theta polar coordinate.
2666 For SetRotation Events
2668 - 4 bytes containing the event type
2669 --4 bytes containining the rotation angle (alpha)
2674 For SetPointerNumber Events
2676 - 4 bytes containing the Pointer Number
2678 ESetPointerNumberEvent,
2681 For user side addevents (User::AddEvent)
2683 - 4 bytes containing the event type
2688 For kernal side addevents (Kern::AddEvent)
2690 - 4 bytes containing the event type
2695 enum TSymbianKernelSync
2698 A semaphore (DSemaphore) has been created.
2701 - 4 bytes containing trace id (a DSemaphore*) for this semaphore.
2702 - 4 bytes containing the owning DThread* or DProcess*
2703 - Remaining data is the ASCII name of the semaphore.
2705 ESemaphoreCreate=0x00,
2708 A semaphore (DSemaphore) has been destroyed.
2711 - 4 bytes containing trace id (a DSemaphore*) for this semaphore.
2713 ESemaphoreDestroy=0x01,
2716 A semaphore (DSemaphore) has been acquired.
2719 - 4 bytes containing trace id (a DSemaphore*) for this semaphore.
2721 ESemaphoreAcquire=0x02,
2724 A semaphore (DSemaphore) has been released.
2727 - 4 bytes containing trace id (a DSemaphore*) for this semaphore.
2729 ESemaphoreRelease=0x03,
2732 A thread has blocked on a semaphore (DSemaphore)
2735 - 4 bytes containing trace id (a DSemaphore*) for this semaphore.
2737 ESemaphoreBlock=0x04,
2741 A mutex (DMutex) has been created.
2744 - 4 bytes containing trace id (a DMutex*) for this mutex.
2745 - 4 bytes containing the owning DThread* or DProcess*
2746 - Remaining data is the ASCII name of the mutex.
2751 A mutex (DMutex) has been destroyed.
2754 - 4 bytes containing trace id (a DMutex*) for this mutex.
2759 A mutex (DMutex) has been acquired.
2762 - 4 bytes containing trace id (a DMutex*) for this mutex.
2767 A mutex (DMutex) has been released.
2770 - 4 bytes containing trace id (a DMutex*) for this mutex.
2775 A thread has blocked on a mutex (DMutex)
2778 - 4 bytes containing trace id (a DMutex*) for this mutex.
2784 A condition variable (DCondVar) has been created.
2787 - 4 bytes containing trace id (a DCondVar*) for this condition variable.
2788 - 4 bytes containing the owning DThread* or DProcess*
2789 - Remaining data is the ASCII name of the condition variable.
2791 ECondVarCreate=0x20,
2794 A condition variable (DCondVar) has been destroyed.
2797 - 4 bytes containing trace id (a DCondVar*) for this condition variable.
2799 ECondVarDestroy=0x21,
2802 A thread has blocked on a condition variable (DCondVar)
2805 - 4 bytes containing trace id (a DCondVar*) for this condition variable.
2806 - 4 bytes containing trace id (DMutex*) for the associated mutex.
2811 A thread has been released from a condition variable (DCondVar) wait
2814 - 4 bytes containing trace id (a DCondVar*) for this condition variable.
2815 - 4 bytes containing trace id (DMutex*) for the associated mutex.
2817 ECondVarWakeUp=0x23,
2820 A condition variable (DCondVar) has been signalled
2823 - 4 bytes containing trace id (a DCondVar*) for this condition variable.
2824 - 4 bytes containing trace id (DMutex*) for the associated mutex.
2826 ECondVarSignal=0x24,
2829 A condition variable (DCondVar) has been signalled in broadcast mode.
2832 - 4 bytes containing trace id (a DCondVar*) for this condition variable.
2833 - 4 bytes containing trace id (DMutex*) for the associated mutex.
2835 ECondVarBroadcast=0x25,
2839 enum TFlexibleMemModel
2842 A memory object has been created.
2845 - 4 bytes containing the memory object id (DMemoryObject*).
2846 - 4 bytes containing the size of the memory in pages.
2848 EMemoryObjectCreate,
2851 A memory object has been destroyed.
2854 - 4 bytes containing the memory object id (DMemoryObject*).
2856 EMemoryObjectDestroy,
2859 A memory mapping has been created.
2862 - 4 bytes containing the memory mapping id (DMemoryMapping*).
2863 - 4 bytes containing the memory object id (DMemoryObject*).
2864 - 4 bytes containing the offset of the mapping into the memory object, in pages
2865 - 4 bytes containing the size of the mapping in pages
2866 - 2 bytes containing the ASID
2867 - 2 spare bytes, currently zero
2868 - 4 bytes containing the virtual address the mapping
2870 EMemoryMappingCreate,
2873 A memory mapping has been destroyed.
2876 - 4 bytes containing the memory mapping id (DMemoryMapping*).
2878 EMemoryMappingDestroy,
2880 // The following traces associate memory model objects with the kernel objects that use them
2883 A memory object is being used for the contents of a chunk.
2886 - 4 bytes containing the memory object id (a DMemoryObject*).
2887 - 4 bytes containing the chunk id (a DChunk*)
2889 EMemoryObjectIsChunk,
2892 A memory object is being used for the contents of a code segment.
2895 - 4 bytes containing the memory object id (a DMemoryObject*).
2896 - 4 bytes containing the code segment id (a DCodeSeg*)
2898 EMemoryObjectIsCodeSeg,
2901 A memory object is being used for process static data.
2904 - 4 bytes containing the memory object id (a DMemoryObject*).
2905 - 4 bytes containing the process id (a DProcess*)
2907 EMemoryObjectIsProcessStaticData,
2910 A memory object is being used for DLL static data.
2913 - 4 bytes containing the memory object id (a DMemoryObject*).
2914 - 4 bytes containing the code segment id (a DCodeSeg*)
2915 - 4 bytes containing the process id (a DProcess*)
2917 EMemoryObjectIsDllStaticData,
2920 A memory object is being used for a thread's supervisor stack.
2923 - 4 bytes containing the memory object id (a DMemoryObject*).
2924 - 4 bytes containing the thread id (a DThread*)
2926 EMemoryObjectIsSupervisorStack,
2929 A memory object is being used for a thread's user stack.
2932 - 4 bytes containing the memory object id (a DMemoryObject*).
2933 - 4 bytes containing the thread id (a DThread*)
2935 EMemoryObjectIsUserStack,
2938 Identifies the Address Space ID (ASID) used for a process.
2941 - 4 bytes containing the process id (a DProcess*)
2942 - 2 bytes containing the ASID
2943 - 2 spare bytes, currently zero
2949 Enumeration of sub-category values for trace category EIic.
2956 Trace output for the invocation by the PSL of registering an array of pointers to channels with the IIC bus controller.
2959 - 4 bytes containing the address of the array
2960 - 4 bytes containing the number of channels in the array
2962 ERegisterChansStartPsl = 0,
2965 Trace output for the start of the PIL registering an array of pointers to channels with the IIC bus controller.
2968 - 4 bytes containing the address of the array
2969 - 4 bytes containing the number of channels in the array
2970 - 4 bytes containing the number of channels registered with the controller prior to this point
2972 ERegisterChansStartPil = 1,
2975 Trace output for the end of the PIL registering an array of pointers to channels with the IIC bus controller.
2978 - 4 bytes containing the address of the array
2979 - 4 bytes containing the number of channels now registered with the controller
2981 ERegisterChansEndPil = 2,
2984 Trace output for the end of the PSL registering an array of pointers to channels with the IIC bus controller.
2987 - 4 bytes containing the address of the array
2988 - 4 bytes containing the number of channels in the array
2989 - 4 bytes containing the error code returned by the IIC bus controller
2991 ERegisterChansEndPsl = 3,
2994 Trace output for the start of the PSL de-registering a channel with the IIC bus controller.
2997 - 4 bytes containing the address of the channel
2999 EDeRegisterChanStartPsl = 4,
3002 Trace output for the start of the PIL de-registering a channel with the IIC bus controller.
3005 - 4 bytes containing the address of the channel
3006 - 4 bytes containing the number of channels registered with the controller prior to this point
3008 EDeRegisterChanStartPil = 5,
3011 Trace output for the end of the PSL de-registering a channel with the IIC bus controller.
3014 - 4 bytes containing the address of the channel
3015 - 4 bytes containing the number of channels now registered with the controller
3017 EDeRegisterChanEndPil = 6,
3020 Trace output for the end of the PSL de-registering a channel with the IIC bus controller.
3023 - 4 bytes containing the address of the channel
3024 - 4 bytes containing the error code returned by the IIC bus controller
3026 EDeRegisterChanEndPsl = 7,
3029 Trace output for the start of a synchronous queue transaction request in the PIL.
3032 - 4 bytes containing the bus realisation variability token
3033 - 4 bytes containing the pointer to the transaction object
3035 EMQTransSyncStartPil = 8,
3038 Trace output for the end of a synchronous queue transaction request in the PIL.
3041 - 4 bytes containing the bus realisation variability token
3042 - 4 bytes containing the error code returned by the controller
3044 EMQTransSyncEndPil = 9,
3047 Trace output for the start of a synchronous queue transaction request in the PIL.
3050 - 4 bytes containing the bus realisation variability token
3051 - 4 bytes containing the pointer to the transaction object
3052 - 4 bytes containing the pointer to the callback object
3054 EMQTransAsyncStartPil = 10,
3057 Trace output for the end of a synchronous queue transaction request in the PIL.
3060 - 4 bytes containing the bus realisation variability token
3061 - 4 bytes containing the error code returned by the controller
3063 EMQTransAsyncEndPil = 11,
3066 Trace output for the start of cancelling an asynchronous queue transaction request in the PIL.
3069 - 4 bytes containing the bus realisation variability token
3070 - 4 bytes containing the pointer to the transaction object
3072 EMCancelTransStartPil = 12,
3075 Trace output for the end of cancelling an asynchronous queue transaction request in the PIL.
3078 - 4 bytes containing the pointer to the transaction object
3079 - 4 bytes containing the error code returned by the controller
3081 EMCancelTransEndPil = 13,
3084 Trace output for the start of processing a transaction request in the PIL.
3087 - 4 bytes containing the address of the channel
3088 - 4 bytes containing the pointer to the transaction object
3090 EMProcessTransStartPil = 14,
3093 Trace output for the start of processing a transaction request in the PSL.
3096 - 4 bytes containing the pointer to the transaction object
3098 EMProcessTransStartPsl = 15,
3101 Trace output for the end of processing a transaction request in the PSL.
3104 - 4 bytes containing the result code
3106 EMProcessTransEndPsl = 16,
3109 Trace output for the end of processing a transaction request in the PIL.
3112 - 4 bytes containing the address of the channel
3113 - 4 bytes containing the pointer to the transaction object
3114 - 4 bytes containing the result code
3115 - 4 bytes containing the pointer to the client callback object
3117 EMProcessTransEndPil = 17,
3120 Trace output for the start of synchronously capturing a Slave channel in the PIL.
3123 - 4 bytes containing the bus realisation variability
3124 - 4 bytes containing a pointer to device specific configuration option applicable to all transactions
3126 ESCaptChanSyncStartPil = 18,
3129 Trace output for the start of synchronously capturing a Slave channel in the PSL.
3132 - 4 bytes containing the address of the channel
3133 - 4 bytes containing a pointer to device specific configuration option applicable to all transactions
3135 ESCaptChanSyncStartPsl = 19,
3138 Trace output for the end of synchronously capturing a Slave channel in the PSL.
3141 - 4 bytes containing the address of the channel
3142 - 4 bytes containing the result code
3144 ESCaptChanSyncEndPsl = 20,
3147 Trace output for the end of synchronously capturing a Slave channel in the PIL.
3150 - 4 bytes containing the bus realisation variability
3151 - 4 bytes containing the platform-specific cookie that uniquely identifies the channel
3152 - 4 bytes containing the result code
3154 ESCaptChanSyncEndPil = 21,
3157 Trace output for the start of asynchronously capturing a Slave channel in the PIL.
3160 - 4 bytes containing the bus realisation variability
3161 - 4 bytes containing a pointer to device specific configuration option applicable to all transactions
3162 - 4 bytes containing the pointer to the client callback object
3164 ESCaptChanASyncStartPil = 22,
3167 Trace output for the start of asynchronously capturing a Slave channel in the PSL.
3170 - 4 bytes containing a pointer to the channel object
3171 - 4 bytes containing a pointer to device specific configuration option applicable to all transactions
3173 ESCaptChanASyncStartPsl = 23,
3176 Trace output for the end of asynchronously capturing a Slave channel in the PSL.
3179 - 4 bytes containing a pointer to the channel object
3180 - 4 bytes containing the result code
3182 ESCaptChanASyncEndPsl = 24,
3185 Trace output for the end of asynchronously capturing a Slave channel in the PIL.
3188 - 4 bytes containing a pointer to the channel object
3189 - 4 bytes containing the result code
3191 ESCaptChanASyncEndPil = 25,
3194 Trace output for the start of releasing a Slave channel in the PIL.
3197 - 4 bytes containing the channel identifier cookie
3199 ESRelChanStartPil = 26,
3202 Trace output for the start of releasing a Slave channel in the PSL.
3205 - 4 bytes containing a pointer to the channel object
3207 ESRelChanStartPsl = 27,
3210 Trace output for the end of releasing a Slave channel in the PSL.
3213 - 4 bytes containing a pointer to the channel object
3214 - 4 bytes containing the result code
3216 ESRelChanEndPsl = 28,
3219 Trace output for the end of releasing a Slave channel in the PIL.
3222 - 4 bytes containing the channel identifier cookie
3223 - 4 bytes containing the result code
3225 ESRelChanEndPil = 29,
3228 Trace output for the start of registering an Rx buffer for a Slave channel in the PIL.
3231 - 4 bytes containing a pointer to the receive buffer
3232 - 4 bytes containing the number of buffer bytes used to store a word.
3233 - 4 bytes containing the number of words expected to be received.
3234 - 4 bytes containing offset from the start of the buffer where to store the received data.
3236 ESRegRxBufStartPil = 30,
3239 Trace output for the start of registering an Rx buffer for a Slave channel in the PSL.
3242 - 4 bytes containing a pointer to the channel object
3243 - 4 bytes containing a pointer to the receive buffer
3244 - 4 bytes containing the number of buffer bytes used to store a word.
3245 - 4 bytes containing the number of words expected to be received.
3246 - 4 bytes containing offset from the start of the buffer where to store the received data.
3248 ESRegRxBufStartPsl = 31,
3251 Trace output for the end of registering an Rx buffer for a Slave channel in the PSL.
3254 - 4 bytes containing a pointer to the channel object
3255 - 4 bytes containing the result code
3257 ESRegRxBufEndPsl = 32,
3260 Trace output for the end of registering an Rx buffer for a Slave channel in the PIL.
3263 - 4 bytes containing the result code
3265 ESRegRxBufEndPil = 33,
3268 Trace output for the start of registering an Tx buffer for a Slave channel in the PIL.
3271 - 4 bytes containing a pointer to the transmit buffer
3272 - 4 bytes containing the number of buffer bytes used to store a word.
3273 - 4 bytes containing the number of words expected to be transmitted.
3274 - 4 bytes containing offset from the start of the buffer from where to transmit data.
3276 ESRegTxBufStartPil = 34,
3279 Trace output for the start of registering an Tx buffer for a Slave channel in the PSL.
3282 - 4 bytes containing a pointer to the channel object
3283 - 4 bytes containing a pointer to the transmit buffer
3284 - 4 bytes containing the number of buffer bytes used to store a word.
3285 - 4 bytes containing the number of words expected to be transmitted.
3286 - 4 bytes containing offset from the start of the buffer from where to transmit data.
3288 ESRegTxBufStartPsl = 35,
3291 Trace output for the end of registering an Tx buffer for a Slave channel in the PSL.
3294 - 4 bytes containing a pointer to the channel object
3295 - 4 bytes containing the result code
3297 ESRegTxBufEndPsl = 36,
3300 Trace output for the start of setting a notification for a Slave channel in the PIL.
3303 - 4 bytes containing the result code
3305 ESRegTxBufEndPil = 37,
3308 Trace output for the start of setting a notification for a Slave channel in the PIL.
3311 - 4 bytes containing the channel identifier cookie
3312 - 4 bytes containing the trigger value
3314 ESNotifTrigStartPil = 38,
3317 Trace output for the start of setting a notification for a Slave channel in the PSL.
3320 - 4 bytes containing the trigger value
3322 ESNotifTrigStartPsl = 39,
3325 Trace output for the end of setting a notification for a Slave channel in the PSL.
3328 - 4 bytes containing the result code
3330 ESNotifTrigEndPsl = 40,
3333 Trace output for the end of setting a notification for a Slave channel in the PIL.
3336 - 4 bytes containing the channel identifier cookie
3337 - 4 bytes containing the result code
3339 ESNotifTrigEndPil = 41,
3342 Trace output for the start of a StaticExtension operaton for a MasterSlave channel in the PIL.
3345 - 4 bytes containing a token containing the bus realisation variability or the channel identifier cookie for this client.
3346 - 4 bytes containing a function identifier
3347 - 4 bytes containing an argument to be passed to the function
3348 - 4 bytes containing an argument to be passed to the function
3350 EMSStatExtStartPil = 42,
3353 Trace output for the end of a StaticExtension operation for a MasterSlave channel in the PIL.
3356 - 4 bytes containing a token containing the bus realisation variability or the channel identifier cookie for this client.
3357 - 4 bytes containing a function identifier
3358 - 4 bytes containing the result code
3360 EMSStatExtEndPil = 43,
3363 Trace output for the start of a StaticExtension operation for a Master channel in the PIL.
3366 - 4 bytes containing a token containing the bus realisation variability or the channel identifier cookie for this client.
3367 - 4 bytes containing a function identifier
3368 - 4 bytes containing an argument to be passed to the function
3369 - 4 bytes containing an argument to be passed to the function
3371 EMStatExtStartPil = 44,
3374 Trace output for the start of a StaticExtension operation for a Master channel in the PSL.
3377 - 4 bytes containing a pointer to the channel object
3378 - 4 bytes containing a function identifier
3379 - 4 bytes containing an argument to be passed to the function
3380 - 4 bytes containing an argument to be passed to the function
3382 EMStatExtStartPsl = 45,
3385 Trace output for the end of a StaticExtension operation for a Master channel in the PSL.
3388 - 4 bytes containing a pointer to the channel object
3389 - 4 bytes containing a function identifier
3390 - 4 bytes containing the result code
3392 EMStatExtEndPsl = 46,
3395 Trace output for the end of a StaticExtension operation for a Master channel in the PIL.
3398 - 4 bytes containing a token containing the bus realisation variability or the channel identifier cookie for this client.
3399 - 4 bytes containing a function identifier
3400 - 4 bytes containing the result code
3402 EMStatExtEndPil = 47,
3405 Trace output for the start of a StaticExtension operation for a Slave channel in the PIL.
3408 - 4 bytes containing a token containing the bus realisation variability or the channel identifier cookie for this client.
3409 - 4 bytes containing a function identifier
3410 - 4 bytes containing an argument to be passed to the function
3411 - 4 bytes containing an argument to be passed to the function
3413 ESStatExtStartPil = 48,
3416 Trace output for the start of a StaticExtension operation for a Slave channel in the PSL.
3419 - 4 bytes containing a pointer to the channel object
3420 - 4 bytes containing a function identifier
3421 - 4 bytes containing an argument to be passed to the function
3422 - 4 bytes containing an argument to be passed to the function
3424 ESStatExtStartPsl = 49,
3427 Trace output for the end of a StaticExtension operation for a Slave channel in the PSL.
3430 - 4 bytes containing a pointer to the channel object
3431 - 4 bytes containing a function identifier
3432 - 4 bytes containing the result code
3434 ESStatExtEndPsl = 50,
3436 Trace output for the end of a StaticExtension operation for a Slave channel in the PIL.
3439 - 4 bytes containing a token containing the bus realisation variability or the channel identifier cookie for this client.
3440 - 4 bytes containing a function identifier
3441 - 4 bytes containing the result code
3443 ESStatExtEndPil = 51
3447 Calculate the address of the next trace record.
3448 @param aCurrentRecord A pointer to a trace record.
3449 @return The address of the trace record which follows aCurrentRecord.
3451 inline static TUint8* NextRecord(TAny* aCurrentRecord);
3453 #ifdef __KERNEL_MODE__
3456 Create initial trace output required for the specified trace category.
3457 E.g. For the EThreadIdentification category, this will cause traces which identify
3458 all threads already in existence at this point.
3460 @aCategory The trace category, or -1 to indicate all trace categories.
3465 IMPORT_C static void Prime(TInt aCategory=-1);
3468 Prototype for function which is called to output trace records.
3469 I.e. as set by SetHandler().
3471 The handler function should output all values which are appropriate for the
3472 trace as specified in aHeader.
3474 @param aHeader The 4 bytes for the trace header.
3475 @param aHeader2 The second header word.
3476 (If EHeader2Present is set in the header flags.)
3477 @param aContext The context id.
3478 (If EContextIdPresent is set in the header flags.)
3479 @param a1 The first four bytes of trace data.
3480 (Only if the header size indicates that this is present.)
3481 @param a2 The second four bytes of trace data.
3482 (Only if the header size indicates that this is present.)
3483 @param a3 This is either the third four bytes of trace data, if
3484 the header size indicates there is between 9 and 12 bytes
3485 of trace data. If more than 12 of trace data are indicated, then
3486 a3 contains a pointer to the remaining trace data, bytes 8 trough to N.
3487 This trace data is word aligned.
3488 @param aExtra The 'extra' value.
3489 (If EExtraPresent is set in the header flags.)
3490 @param aPc The Program Counter value.
3491 (If EPcPresent is set in the header flags.)
3493 @return True, if the trace handler is enabled and outputting trace.
3496 Here is an example implementation of a trace handler:
3499 TInt size = (aHeader>>BTrace::ESizeIndex*8)&0xff;
3500 TInt flags = (aHeader>>BTrace::EFlagsIndex*8)&0xff;
3501 Output(aHeader), size -= 4;
3502 if(flags&BTrace::EHeader2Present)
3503 Output(aHeader2), size -= 4;
3504 if(flags&BTrace::EContextIdPresent)
3505 Output(aContext), size -= 4;
3506 if(flags&BTrace::EPcPresent)
3507 Output(aPc), size -= 4;
3508 if(flags&BTrace::EExtraPresent)
3509 Output(aExtra), size -= 4;
3512 Output(a1), size -= 4;
3515 Output(a2), size -= 4;
3522 TUint32* data = (TUint32*)a3;
3523 TUint32* end = (TUint32*)(a3+size);
3524 do Output(*data++); while(data<end);
3529 The trace handler may add timestamp values to the trace it outputs, in which case
3530 it should modify the flags and size in aHeader accordingly, before outputting this value.
3531 The Timestamp and/or Timestamp2 should be output, in that order, between the Header2 and
3535 - The handler must not make use of any kernel APIs, apart from TDfc::RawAdd(). (This is
3536 because kernel APIs may contain tracing and this would result in deadlock of the system.)
3537 - The trace handler must not access or modify arguments which are not indicated as
3538 being present by their flag in aHeader or aHeader2.
3539 In particular, on ARM CPUs, the values a2, a3, aExtra and aPc are stored on the stack
3540 and the caller of this function may not have created these arguments before calling the
3542 - The handler may be called in any context and in a re-entrant manner. Implementations must
3543 be designed to cope with this.
3544 - The interrupt disable status must not be reduced by the trace handler during its operation.
3545 E.g. if IRQs are disabled on entry, the handler must not cause them to become enabled
3548 @pre Call in any context.
3549 @post Interrupt enable status unchanged.
3554 typedef TBool(*THandler)(TUint32 aHeader,TUint32 aHeader2,const TUint32 aContext,const TUint32 a1,const TUint32 a2,const TUint32 a3,const TUint32 aExtra,const TUint32 aPc);
3558 Set the function which will receive all trace records.
3559 @return The handler function which existed before this function was called.
3563 IMPORT_C static BTrace::THandler SetHandler(BTrace::THandler aHandler);
3567 Set the trace filter bit for the specified category.
3569 @param aCategory A category value from enum BTrace::TCategory.
3570 @param aValue The new filter value for the category.
3571 1 means traces of this category are output, 0 means they are suppressed.
3572 Other values must not be used.
3574 @return The previous value of the filter for the category, 0 or 1.
3575 Or KErrNotSupported if this category is not supported by this build of the kernel.
3579 IMPORT_C static TInt SetFilter(TUint aCategory, TBool aValue);
3583 Modify the secondary trace filter to add or remove the specified UID.
3585 This method can not be used to disable a UID key if SetFilter2(TInt aGlobalFilter)
3586 has been used to set the filter to pass all traces. Such attempts result in a return
3587 code of KErrNotSupported.
3589 @param aUid The UID to filter.
3590 @param aValue The new filter value for the UID.
3591 1 means traces with this UID are output, 0 means they are suppressed.
3592 Other values must not be used.
3594 @return The previous value of the filter for the UID, 0 or 1, if operation is successful.
3595 Otherwise, a negative number representing a system wide error code.
3596 (E.g. KErrNoMemory.)
3598 @pre Call in a thread context.
3603 IMPORT_C static TInt SetFilter2(TUint32 aUid, TBool aValue);
3607 Set the secondary trace filter to include only the specified UIDs.
3609 @param aUids Pointer to array of UIDs.
3610 @param aNumUids Number of UID values pointer to by \a aUid.
3612 @return KErrNone on success.
3613 Otherwise, a negative number representing a system wide error code.
3614 (E.g. KErrNoMemory.)
3616 @pre Call in a thread context.
3621 IMPORT_C static TInt SetFilter2(const TUint32* aUids, TInt aNumUids);
3625 Set the secondary trace filter to pass or reject every trace.
3627 @param aGlobalFilter If 0, the secondary filter will reject
3628 all traces; if 1, all traces are passed
3630 Other values have no effect.
3632 @return The previous value of the global filter, or -1 if the global filter
3633 was not previously set.
3635 @pre Call in a thread context.
3640 IMPORT_C static TInt SetFilter2(TInt aGlobalFilter);
3644 Get the contents of the secondary trace filter.
3646 @param[out] aUids Pointer to array of UIDs contained in the secondary filter.
3647 Ownership of this array is passed to the caller of this
3648 function, which is then responsible for deleting it.
3649 If filter is empty, \a aUid equals zero.
3650 @param[out] aGlobalFilter Set to 1 if the secondary filter passes all traces.
3651 Set to 0 if the secondary filter rejects all traces.
3652 Set to -1 if the secondary filter operates by UIDs contained in traces.
3654 @return Number of UIDs in returned array, if operation is successful.
3655 Otherwise, a negative number representing a system wide error code.
3658 @pre Call in a thread context.
3659 @pre Calling thread must be in a critical section.
3664 IMPORT_C static TInt Filter2(TUint32*& aUids, TInt& aGlobalFilter);
3668 Get the trace filter bit for the specified category.
3670 @param aCategory A category value from enum BTrace::TCategory,
3671 @return The value of the filter for the category, 0 or 1.
3672 Or KErrNotSupported if this category is not supported by this build of the kernel.
3677 inline static TInt Filter(TUint aCategory);
3680 Get a pointer to the spinlock used to serialise BTrace output on SMP systems.
3684 IMPORT_C static TSpinLock* LockPtr();
3688 Enumeration of control functions which can be implemented by the BTrace handler.
3690 These values are passed to #Control to indicate the requested operation and are
3691 passed unaltered to the BTrace implementation's control function as specified by
3695 @see #TControlFunction
3700 Called to indicate that the system has crashed. Typical response to this call
3701 is to disable tracing so that debug monitor activity doesn't generate any additional
3704 As this function is called after the system is crashed its implementation must not
3705 make use of any APIs which require a running system, it must also not re-enable
3708 ControlFunction argument meaning: None, ignore.
3710 ControlFunction returns nothing, ignore.
3715 Called by crash monitor to request first block of data from any memory resident
3716 trace buffer. A size of zero should be returned if the buffer is empty.
3718 This should be a non-destructive operation if possible. I.e. the contents of the
3719 buffer should be capable of being read multiple times by issuing repeated
3720 ECtrlCrashReadFirst/ECtrlCrashReadNext sequences.
3722 As this function is called after the system is crashed its implementation must not
3723 make use of any APIs which require a running system, it must also not re-enable
3726 ControlFunction argument meaning:
3727 - aArg1 should be treated as a TUint8*& and set to the start address of the trace data.
3728 - aArg2 should be treated as a TUint& and set to the length of the trace data.
3730 ControlFunction returns KErrNone if successful, otherwise one of the other system wide
3733 ECtrlCrashReadFirst,
3736 Called by crash monitor after using ECrashReadFirst, to request subsequent
3737 blocks of data from the trace buffer. A size of zero should be returned if
3738 the end of the buffer has been reached.
3740 As this function is called after the system is crashed its implementation must not
3741 make use of any APIs which require a running system, it must also not re-enable
3744 ControlFunction argument meaning:
3745 aArg1 should be treated as a TUint8** and set to the start address of the trace data.
3746 aArg2 should be treated as a TUint* and set to the length of the trace data.
3748 ControlFunction returns KErrNone if successful, otherwise one of the other system wide
3755 Prototype for function callback called by #Control.
3756 I.e. as set by SetHandlers().
3758 typedef TInt(*TControlFunction)(TControl aFunction, TAny* aArg1, TAny* aArg2);
3761 Call the BTrace handlers control function to perform the function.
3763 @param aFunction A value from TControl specifying the requested operation.
3764 @param aArg1 First argument for the operation. See enum TControl.
3765 @param aArg1 Second argument for the operation. See enum TControl.
3767 @return KErrNone if successful,
3768 KErrNotSupported if the function isn't supported.
3769 otherwise one of the other system wide error codes.
3773 IMPORT_C static TInt Control(TControl aFunction, TAny* aArg1=0, TAny* aArg2=0);
3776 Set both the function which will receive all trace records, and the
3777 control function which will be called by each use of #Control.
3779 @param aNewHandler The new handler to receive trace.
3780 @param aNewControl The new handler for control functions.
3781 @param aOldHandler The trace handler which existed prior to this function being called.
3782 @param aOldControl The control handler which existed prior to this function being called.
3784 IMPORT_C static void SetHandlers(BTrace::THandler aNewHandler, BTrace::TControlFunction aNewControl, BTrace::THandler& aOldHandler, BTrace::TControlFunction& aOldControl);
3786 #endif // __KERNEL_MODE__
3789 Check the trace filters to see if a trace with a given category
3792 @param aCategory A category value from enum BTrace::TCategory.
3793 Only the 8 least significant bits in this value are used;
3794 other bits are ignored.
3796 @return True if a trace with this specification would be passed by the filters.
3797 False if a trace with this specification would be dropped by the filters.
3802 IMPORT_C static TBool CheckFilter(TUint32 aCategory);
3805 Check the trace filters to see if a trace with a given category
3806 and filter UID would be output.
3808 @param aCategory A category value from enum BTrace::TCategory.
3809 Only the 8 least significant bits in this value are used;
3810 other bits are ignored.
3811 @param aUid A UID to filter on.
3813 @return True if a trace with this specification would be passed by the filters.
3814 False if a trace with this specification would be dropped by the filters.
3819 IMPORT_C static TBool CheckFilter2(TUint32 aCategory,TUint32 aUid);
3822 Common function for BTrace macros.
3825 IMPORT_C static TBool Out(TUint32 a0,TUint32 a1,TUint32 a2,TUint32 a3);
3828 Common function for BTrace macros.
3831 IMPORT_C static TBool OutX(TUint32 a0,TUint32 a1,TUint32 a2,TUint32 a3);
3834 Common function for BTrace macros.
3837 IMPORT_C static TBool OutN(TUint32 a0, TUint32 a1, TUint32 a2, const TAny* aData, TInt aDataSize);
3840 Common function for BTrace macros.
3843 IMPORT_C static TBool OutNX(TUint32 a0, TUint32 a1, TUint32 a2, const TAny* aData, TInt aDataSize);
3846 Common function for BTrace macros.
3849 IMPORT_C static TBool OutBig(TUint32 a0, TUint32 a1, const TAny* aData, TInt aDataSize);
3852 Common function for BTrace macros.
3855 IMPORT_C static TBool OutFiltered(TUint32 a0,TUint32 a1,TUint32 a2,TUint32 a3);
3858 Common function for BTrace macros.
3861 IMPORT_C static TBool OutFilteredX(TUint32 a0,TUint32 a1,TUint32 a2,TUint32 a3);
3864 Common function for BTrace macros.
3867 IMPORT_C static TBool OutFilteredN(TUint32 a0, TUint32 a1, TUint32 a2, const TAny* aData, TInt aDataSize);
3870 Common function for BTrace macros.
3873 IMPORT_C static TBool OutFilteredNX(TUint32 a0, TUint32 a1, TUint32 a2, const TAny* aData, TInt aDataSize);
3876 Common function for BTrace macros.
3879 IMPORT_C static TBool OutFilteredBig(TUint32 a0, TUint32 a1, const TAny* aData, TInt aDataSize);
3884 static void Init0();
3889 typedef TBool(*TBTrace1)(TUint32);
3894 typedef TBool(*TBTrace2)(TUint32,TUint32);
3899 typedef TBool(*TBTrace3)(TUint32,TUint32,TUint32);
3904 struct SExecExtension
3914 static TBool DoOutBig(TUint32 a0, TUint32 a1, const TAny* aData, TInt aDataSize, TUint32 aContext, TUint32 aPc);
3919 static TUint32 BigTraceId;
3924 static TBool IsSupported(TUint aCategory);
3927 Common function for UTrace calls, that need to set both program counter and format id as well as the normal parameters.
3929 @param aHeader The header (a0) of the trace record.
3930 @param aModuleUid A uid (a1) to filter on
3931 @param aPc A program counter
3932 @param aFormatId A format id
3933 @param aData The data to output
3934 @param aDataSize The size of the data
3936 @return ETrue if a trace was successfully sent and dealt with by the handler.
3941 IMPORT_C static TBool OutFilteredPcFormatBig(TUint32 aHeader, TUint32 aModuleUid, TUint32 aPc, TUint16 aFormatId, const TAny* aData, TInt aDataSize);
3949 class DBTraceFilter2
3956 TBool Check(TUint32 aUid);
3958 static DBTraceFilter2* New(TInt aNumUids);
3959 static DBTraceFilter2* Open(DBTraceFilter2*volatile& aFilter2);
3962 DBTraceFilter2* iCleanupLink;
3963 static DBTraceFilter2* iCleanupHead;
3964 static void Cleanup();
3977 #define BTRACE_HEADER(aSize,aCategory,aSubCategory) \
3978 (((aSize)<<BTrace::ESizeIndex*8) \
3979 +((aCategory)<<BTrace::ECategoryIndex*8) \
3980 +((aSubCategory)<<BTrace::ESubCategoryIndex*8))
3985 #define BTRACE_HEADER_C(aSize,aCategory,aSubCategory) \
3986 ((((aSize)+4)<<BTrace::ESizeIndex*8) \
3987 +((BTrace::EContextIdPresent)<<BTrace::EFlagsIndex*8) \
3988 +((aCategory)<<BTrace::ECategoryIndex*8) \
3989 +((aSubCategory)<<BTrace::ESubCategoryIndex*8))
3994 #define BTRACE_HEADER_P(aSize,aCategory,aSubCategory) \
3995 ((((aSize)+4)<<BTrace::ESizeIndex*8) \
3996 +((BTrace::EPcPresent)<<BTrace::EFlagsIndex*8) \
3997 +((aCategory)<<BTrace::ECategoryIndex*8) \
3998 +((aSubCategory)<<BTrace::ESubCategoryIndex*8))
4003 #define BTRACE_HEADER_CP(aSize,aCategory,aSubCategory) \
4004 ((((aSize)+8)<<BTrace::ESizeIndex*8) \
4005 +((BTrace::EContextIdPresent|BTrace::EPcPresent)<<BTrace::EFlagsIndex*8) \
4006 +((aCategory)<<BTrace::ECategoryIndex*8) \
4007 +((aSubCategory)<<BTrace::ESubCategoryIndex*8))
4012 Output a trace record of the specified category.
4014 The trace record data is 0 bytes in size.
4016 @param aCategory A value from enum BTrace::TCategory,
4017 @param aSubCategory Sub-category value between 0 and 255.
4018 The meaning of this is dependent on the Category.
4020 @return True if trace is enabled for aCategory, false otherwise.
4024 #define BTrace0(aCategory,aSubCategory) \
4025 ((BTrace::TBTrace1)BTrace::Out) \
4026 (BTRACE_HEADER(4,(aCategory),(aSubCategory)))
4029 Output a trace record of the specified category.
4031 The trace record data is 4 bytes in size.
4033 @param aCategory A value from enum BTrace::TCategory,
4034 @param aSubCategory Sub-category value between 0 and 255.
4035 The meaning of this is dependent on the Category.
4036 @param a1 The 32bit quantity which forms the data of this trace record.
4038 @return True if trace is enabled for aCategory, false otherwise.
4042 #define BTrace4(aCategory,aSubCategory,a1) \
4043 ((BTrace::TBTrace2)BTrace::Out) \
4044 (BTRACE_HEADER(8,(aCategory),(aSubCategory)),(TUint32)(a1))
4047 Output a trace record of the specified category.
4049 The trace record data is 8 bytes in size.
4051 @param aCategory A value from enum BTrace::TCategory,
4052 @param aSubCategory Sub-category value between 0 and 255.
4053 The meaning of this is dependent on the Category.
4054 @param a1 The first 32bit quantity which forms the data of this trace record.
4055 @param a2 The second 32bit quantity which forms the data of this trace record.
4057 @return True if trace is enabled for aCategory, false otherwise.
4061 #define BTrace8(aCategory,aSubCategory,a1,a2) \
4062 ((BTrace::TBTrace3)BTrace::Out) \
4063 (BTRACE_HEADER(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2))
4066 Output a trace record of the specified category.
4068 The trace record data is 12 bytes in size.
4070 @param aCategory A value from enum BTrace::TCategory,
4071 @param aSubCategory Sub-category value between 0 and 255.
4072 The meaning of this is dependent on the Category.
4073 @param a1 The first 32bit quantity which forms the data of this trace record.
4074 @param a2 The second 32bit quantity which forms the data of this trace record.
4075 @param a3 The third 32bit quantity which forms the data of this trace record.
4077 @return True if trace is enabled for aCategory, false otherwise.
4081 #define BTrace12(aCategory,aSubCategory,a1,a2,a3) \
4083 (BTRACE_HEADER(16,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),(TUint32)(a3))
4086 Output a trace record of the specified category.
4088 @param aCategory A value from enum BTrace::TCategory,
4089 @param aSubCategory Sub-category value between 0 and 255.
4090 The meaning of this is dependent on the Category.
4091 @param a1 The first 32bit quantity which forms the data of this trace record.
4092 @param a2 The second 32bit quantity which forms the data of this trace record.
4093 @param aData Address of addition data to add to trace.
4094 Must be word aligned, i.e. a multiple of 4.
4095 @param aDataSize Number of bytes of additional data. If this value is greater than
4096 KMaxBTraceDataArray then data is truncated to this size and the
4097 flag ERecordTruncated is set in the record.
4099 @return True if trace is enabled for aCategory, false otherwise.
4103 #define BTraceN(aCategory,aSubCategory,a1,a2,aData,aDataSize) \
4105 (BTRACE_HEADER(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),aData,aDataSize)
4108 Output a trace record of the specified category.
4110 If the specified data is too big to find into a single trace record, then a
4111 multipart trace is generated. See TMultiPart.
4113 @param aCategory A value from enum BTrace::TCategory,
4114 @param aSubCategory Sub-category value between 0 and 255.
4115 The meaning of this is dependent on the Category.
4116 @param a1 The first 32bit quantity which forms the data of this trace record.
4117 @param aData Address of addition data to add to trace.
4118 Must be word aligned, i.e. a multiple of 4.
4119 @param aDataSize Number of bytes of additional data.
4121 @return True if trace is enabled for aCategory, false otherwise.
4125 #define BTraceBig(aCategory,aSubCategory,a1,aData,aDataSize) \
4127 (BTRACE_HEADER(8,(aCategory),(aSubCategory)),(TUint32)(a1),aData,(TInt)(aDataSize))
4132 Output a trace record of the specified category.
4134 The trace record data is 0 bytes in size.
4136 @param aCategory A value from enum BTrace::TCategory,
4137 @param aSubCategory Sub-category value between 0 and 255.
4138 The meaning of this is dependent on the Category.
4140 @return True if trace is enabled for aCategory, false otherwise.
4144 #define BTraceContext0(aCategory,aSubCategory) \
4145 ((BTrace::TBTrace1)BTrace::OutX) \
4146 (BTRACE_HEADER_C(4,(aCategory),(aSubCategory)))
4149 Output a trace record of the specified category which also includes a Context ID.
4151 The trace record data is 4 bytes in size.
4153 @param aCategory A value from enum BTrace::TCategory,
4154 @param aSubCategory Sub-category value between 0 and 255.
4155 The meaning of this is dependent on the Category.
4156 @param a1 The 32bit quantity which forms the data of this trace record.
4158 @return True if trace is enabled for aCategory, false otherwise.
4162 #define BTraceContext4(aCategory,aSubCategory,a1) \
4163 ((BTrace::TBTrace2)BTrace::OutX) \
4164 (BTRACE_HEADER_C(8,(aCategory),(aSubCategory)),(TUint32)(a1))
4167 Output a trace record of the specified category which also includes a Context ID.
4169 The trace record data is 8 bytes in size.
4171 @param aCategory A value from enum BTrace::TCategory,
4172 @param aSubCategory Sub-category value between 0 and 255.
4173 The meaning of this is dependent on the Category.
4174 @param a1 The first 32bit quantity which forms the data of this trace record.
4175 @param a2 The second 32bit quantity which forms the data of this trace record.
4177 @return True if trace is enabled for aCategory, false otherwise.
4181 #define BTraceContext8(aCategory,aSubCategory,a1,a2) \
4182 ((BTrace::TBTrace3)BTrace::OutX) \
4183 (BTRACE_HEADER_C(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2))
4186 Output a trace record of the specified category which also includes a Context ID.
4188 The trace record data is 12 bytes in size.
4190 @param aCategory A value from enum BTrace::TCategory,
4191 @param aSubCategory Sub-category value between 0 and 255.
4192 The meaning of this is dependent on the Category.
4193 @param a1 The first 32bit quantity which forms the data of this trace record.
4194 @param a2 The second 32bit quantity which forms the data of this trace record.
4195 @param a3 The third 32bit quantity which forms the data of this trace record.
4197 @return True if trace is enabled for aCategory, false otherwise.
4201 #define BTraceContext12(aCategory,aSubCategory,a1,a2,a3) \
4203 (BTRACE_HEADER_C(16,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),(TUint32)(a3))
4206 Output a trace record of the specified category which also includes a Context ID.
4208 @param aCategory A value from enum BTrace::TCategory,
4209 @param aSubCategory Sub-category value between 0 and 255.
4210 The meaning of this is dependent on the Category.
4211 @param a1 The first 32bit quantity which forms the data of this trace record.
4212 @param a2 The second 32bit quantity which forms the data of this trace record.
4213 @param aData Address of addition data to add to trace.
4214 Must be word aligned, i.e. a multiple of 4.
4215 @param aDataSize Number of bytes of additional data. If this value is greater than
4216 KMaxBTraceDataArray then data is truncated to this size and the
4217 flag ERecordTruncated is set in the record.
4219 @return True if trace is enabled for aCategory, false otherwise.
4223 #define BTraceContextN(aCategory,aSubCategory,a1,a2,aData,aDataSize) \
4225 (BTRACE_HEADER_C(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),aData,aDataSize)
4228 Output a trace record of the specified category which also includes a Context ID.
4230 If the specified data is too big to find into a single trace record, then a
4231 multipart trace is generated. See TMultiPart.
4233 @param aCategory A value from enum BTrace::TCategory,
4234 @param aSubCategory Sub-category value between 0 and 255.
4235 The meaning of this is dependent on the Category.
4236 @param a1 The first 32bit quantity which forms the data of this trace record.
4237 @param aData Address of addition data to add to trace.
4238 Must be word aligned, i.e. a multiple of 4.
4239 @param aDataSize Number of bytes of additional data.
4241 @return True if trace is enabled for aCategory, false otherwise.
4245 #define BTraceContextBig(aCategory,aSubCategory,a1,aData,aDataSize) \
4247 (BTRACE_HEADER_C(8,(aCategory),(aSubCategory)),(TUint32)(a1),aData,(TInt)(aDataSize))
4252 Output a trace record of the specified category which also includes a Program Counter value.
4254 The trace record data is 0 bytes in size.
4256 @param aCategory A value from enum BTrace::TCategory,
4257 @param aSubCategory Sub-category value between 0 and 255.
4258 The meaning of this is dependent on the Category.
4260 @return True if trace is enabled for aCategory, false otherwise.
4264 #define BTracePc0(aCategory,aSubCategory) \
4265 ((BTrace::TBTrace1)BTrace::Out) \
4266 (BTRACE_HEADER_P(4,(aCategory),(aSubCategory)))
4269 Output a trace record of the specified category which also includes a Program Counter value.
4271 The trace record data is 4 bytes in size.
4273 @param aCategory A value from enum BTrace::TCategory,
4274 @param aSubCategory Sub-category value between 0 and 255.
4275 The meaning of this is dependent on the Category.
4276 @param a1 The 32bit quantity which forms the data of this trace record.
4278 @return True if trace is enabled for aCategory, false otherwise.
4282 #define BTracePc4(aCategory,aSubCategory,a1) \
4283 ((BTrace::TBTrace2)BTrace::Out) \
4284 (BTRACE_HEADER_P(8,(aCategory),(aSubCategory)),(TUint32)(a1))
4287 Output a trace record of the specified category which also includes a Program Counter value.
4289 The trace record data is 8 bytes in size.
4291 @param aCategory A value from enum BTrace::TCategory,
4292 @param aSubCategory Sub-category value between 0 and 255.
4293 The meaning of this is dependent on the Category.
4294 @param a1 The first 32bit quantity which forms the data of this trace record.
4295 @param a2 The second 32bit quantity which forms the data of this trace record.
4297 @return True if trace is enabled for aCategory, false otherwise.
4301 #define BTracePc8(aCategory,aSubCategory,a1,a2) \
4302 ((BTrace::TBTrace3)BTrace::Out) \
4303 (BTRACE_HEADER_P(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2))
4306 Output a trace record of the specified category which also includes a Program Counter value.
4308 The trace record data is 12 bytes in size.
4310 @param aCategory A value from enum BTrace::TCategory,
4311 @param aSubCategory Sub-category value between 0 and 255.
4312 The meaning of this is dependent on the Category.
4313 @param a1 The first 32bit quantity which forms the data of this trace record.
4314 @param a2 The second 32bit quantity which forms the data of this trace record.
4315 @param a3 The third 32bit quantity which forms the data of this trace record.
4317 @return True if trace is enabled for aCategory, false otherwise.
4321 #define BTracePc12(aCategory,aSubCategory,a1,a2,a3) \
4323 (BTRACE_HEADER_P(16,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),(TUint32)(a3))
4326 Output a trace record of the specified category which also includes a Program Counter value.
4328 @param aCategory A value from enum BTrace::TCategory,
4329 @param aSubCategory Sub-category value between 0 and 255.
4330 The meaning of this is dependent on the Category.
4331 @param a1 The first 32bit quantity which forms the data of this trace record.
4332 @param a2 The second 32bit quantity which forms the data of this trace record.
4333 @param aData Address of addition data to add to trace.
4334 Must be word aligned, i.e. a multiple of 4.
4335 @param aDataSize Number of bytes of additional data. If this value is greater than
4336 KMaxBTraceDataArray then data is truncated to this size and the
4337 flag ERecordTruncated is set in the record.
4339 @return True if trace is enabled for aCategory, false otherwise.
4343 #define BTracePcN(aCategory,aSubCategory,a1,a2,aData,aDataSize) \
4345 (BTRACE_HEADER_P(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),aData,aDataSize)
4348 Output a trace record of the specified category which also includes a Program Counter value.
4350 If the specified data is too big to find into a single trace record, then a
4351 multipart trace is generated. See TMultiPart.
4353 @param aCategory A value from enum BTrace::TCategory,
4354 @param aSubCategory Sub-category value between 0 and 255.
4355 The meaning of this is dependent on the Category.
4356 @param a1 The first 32bit quantity which forms the data of this trace record.
4357 @param aData Address of addition data to add to trace.
4358 Must be word aligned, i.e. a multiple of 4.
4359 @param aDataSize Number of bytes of additional data.
4361 @return True if trace is enabled for aCategory, false otherwise.
4365 #define BTracePcBig(aCategory,aSubCategory,a1,aData,aDataSize) \
4367 (BTRACE_HEADER_P(8,(aCategory),(aSubCategory)),(TUint32)(a1),aData,(TInt)(aDataSize))
4373 Output a trace record of the specified category which also includes
4374 Context ID and Program Counter values.
4376 The trace record data is 0 bytes in size.
4378 @param aCategory A value from enum BTrace::TCategory,
4379 @param aSubCategory Sub-category value between 0 and 255.
4380 The meaning of this is dependent on the Category.
4382 @return True if trace is enabled for aCategory, false otherwise.
4386 #define BTraceContextPc0(aCategory,aSubCategory) \
4387 ((BTrace::TBTrace1)BTrace::OutX) \
4388 (BTRACE_HEADER_CP(4,(aCategory),(aSubCategory)))
4391 Output a trace record of the specified category which also includes
4392 Context ID and Program Counter values.
4394 The trace record data is 4 bytes in size.
4396 @param aCategory A value from enum BTrace::TCategory,
4397 @param aSubCategory Sub-category value between 0 and 255.
4398 The meaning of this is dependent on the Category.
4399 @param a1 The 32bit quantity which forms the data of this trace record.
4401 @return True if trace is enabled for aCategory, false otherwise.
4405 #define BTraceContextPc4(aCategory,aSubCategory,a1) \
4406 ((BTrace::TBTrace2)BTrace::OutX) \
4407 (BTRACE_HEADER_CP(8,(aCategory),(aSubCategory)),(TUint32)(a1))
4410 Output a trace record of the specified category which also includes
4411 Context ID and Program Counter values.
4413 The trace record data is 8 bytes in size.
4415 @param aCategory A value from enum BTrace::TCategory,
4416 @param aSubCategory Sub-category value between 0 and 255.
4417 The meaning of this is dependent on the Category.
4418 @param a1 The first 32bit quantity which forms the data of this trace record.
4419 @param a2 The second 32bit quantity which forms the data of this trace record.
4421 @return True if trace is enabled for aCategory, false otherwise.
4425 #define BTraceContextPc8(aCategory,aSubCategory,a1,a2) \
4426 ((BTrace::TBTrace3)BTrace::OutX) \
4427 (BTRACE_HEADER_CP(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2))
4430 Output a trace record of the specified category which also includes
4431 Context ID and Program Counter values.
4433 The trace record data is 12 bytes in size.
4435 @param aCategory A value from enum BTrace::TCategory,
4436 @param aSubCategory Sub-category value between 0 and 255.
4437 The meaning of this is dependent on the Category.
4438 @param a1 The first 32bit quantity which forms the data of this trace record.
4439 @param a2 The second 32bit quantity which forms the data of this trace record.
4440 @param a3 The third 32bit quantity which forms the data of this trace record.
4442 @return True if trace is enabled for aCategory, false otherwise.
4446 #define BTraceContextPc12(aCategory,aSubCategory,a1,a2,a3) \
4448 (BTRACE_HEADER_CP(16,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),(TUint32)(a3))
4451 Output a trace record of the specified category which also includes
4452 Context ID and Program Counter values.
4454 @param aCategory A value from enum BTrace::TCategory,
4455 @param aSubCategory Sub-category value between 0 and 255.
4456 The meaning of this is dependent on the Category.
4457 @param a1 The first 32bit quantity which forms the data of this trace record.
4458 @param a2 The second 32bit quantity which forms the data of this trace record.
4459 @param aData Address of addition data to add to trace.
4460 Must be word aligned, i.e. a multiple of 4.
4461 @param aDataSize Number of bytes of additional data. If this value is greater than
4462 KMaxBTraceDataArray then data is truncated to this size and the
4463 flag ERecordTruncated is set in the record.
4465 @return True if trace is enabled for aCategory, false otherwise.
4469 #define BTraceContextPcN(aCategory,aSubCategory,a1,a2,aData,aDataSize) \
4471 (BTRACE_HEADER_CP(12,(aCategory),(aSubCategory)),(TUint32)(a1),(TUint32)(a2),aData,aDataSize)
4474 Output a trace record of the specified category which also includes
4475 Context ID and Program Counter values.
4477 If the specified data is too big to find into a single trace record, then a
4478 multipart trace is generated. See TMultiPart.
4480 @param aCategory A value from enum BTrace::TCategory,
4481 @param aSubCategory Sub-category value between 0 and 255.
4482 The meaning of this is dependent on the Category.
4483 @param a1 The first 32bit quantity which forms the data of this trace record.
4484 @param aData Address of addition data to add to trace.
4485 Must be word aligned, i.e. a multiple of 4.
4486 @param aDataSize Number of bytes of additional data.
4488 @return True if trace is enabled for aCategory, false otherwise.
4492 #define BTraceContextPcBig(aCategory,aSubCategory,a1,aData,aDataSize) \
4494 (BTRACE_HEADER_CP(8,(aCategory),(aSubCategory)),(TUint32)(a1),aData,(TInt)(aDataSize))
4499 Output a trace record of the specified category.
4501 The trace record data is 4 bytes in size.
4503 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4505 @param aCategory A value from enum BTrace::TCategory,
4506 @param aSubCategory Sub-category value between 0 and 255.
4507 The meaning of this is dependent on the Category.
4508 @param aUid The 32bit quantity which forms the data of this trace record.
4510 @return True if trace is enabled for aCategory and aUid, false otherwise.
4514 #define BTraceFiltered4(aCategory,aSubCategory,aUid) \
4515 ((BTrace::TBTrace2)BTrace::OutFiltered) \
4516 (BTRACE_HEADER(8,(aCategory),(aSubCategory)),(TUint32)(aUid))
4519 Output a trace record of the specified category.
4521 The trace record data is 8 bytes in size.
4523 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4525 @param aCategory A value from enum BTrace::TCategory,
4526 @param aSubCategory Sub-category value between 0 and 255.
4527 The meaning of this is dependent on the Category.
4528 @param aUid The first 32bit quantity which forms the data of this trace record.
4529 @param a1 The second 32bit quantity which forms the data of this trace record.
4531 @return True if trace is enabled for aCategory and aUid, false otherwise.
4535 #define BTraceFiltered8(aCategory,aSubCategory,aUid,a1) \
4536 ((BTrace::TBTrace3)BTrace::OutFiltered) \
4537 (BTRACE_HEADER(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1))
4540 Output a trace record of the specified category.
4542 The trace record data is 12 bytes in size.
4544 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4546 @param aCategory A value from enum BTrace::TCategory,
4547 @param aSubCategory Sub-category value between 0 and 255.
4548 The meaning of this is dependent on the Category.
4549 @param aUid The first 32bit quantity which forms the data of this trace record.
4550 @param a1 The second 32bit quantity which forms the data of this trace record.
4551 @param a2 The third 32bit quantity which forms the data of this trace record.
4553 @return True if trace is enabled for aCategory and aUid, false otherwise.
4557 #define BTraceFiltered12(aCategory,aSubCategory,aUid,a1,a2) \
4558 BTrace::OutFiltered \
4559 (BTRACE_HEADER(16,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),(TUint32)(a2))
4562 Output a trace record of the specified category.
4564 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4566 @param aCategory A value from enum BTrace::TCategory,
4567 @param aSubCategory Sub-category value between 0 and 255.
4568 The meaning of this is dependent on the Category.
4569 @param aUid The first 32bit quantity which forms the data of this trace record.
4570 @param a1 The second 32bit quantity which forms the data of this trace record.
4571 @param aData Address of addition data to add to trace.
4572 Must be word aligned, i.e. a multiple of 4.
4573 @param aDataSize Number of bytes of additional data. If this value is greater than
4574 KMaxBTraceDataArray then data is truncated to this size and the
4575 flag ERecordTruncated is set in the record.
4577 @return True if trace is enabled for aCategory and aUid, false otherwise.
4581 #define BTraceFilteredN(aCategory,aSubCategory,aUid,a1,aData,aDataSize) \
4582 BTrace::OutFilteredN \
4583 (BTRACE_HEADER(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),aData,aDataSize)
4586 Output a trace record of the specified category.
4588 If the specified data is too big to find into a single trace record, then a
4589 multipart trace is generated. See TMultiPart.
4591 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4593 @param aCategory A value from enum BTrace::TCategory,
4594 @param aSubCategory Sub-category value between 0 and 255.
4595 The meaning of this is dependent on the Category.
4596 @param aUid The first 32bit quantity which forms the data of this trace record.
4597 @param aData Address of addition data to add to trace.
4598 Must be word aligned, i.e. a multiple of 4.
4599 @param aDataSize Number of bytes of additional data.
4601 @return True if trace is enabled for aCategory and aUid, false otherwise.
4605 #define BTraceFilteredBig(aCategory,aSubCategory,aUid,aData,aDataSize) \
4606 BTrace::OutFilteredBig \
4607 (BTRACE_HEADER(8,(aCategory),(aSubCategory)),(TUint32)(aUid),aData,(TInt)(aDataSize))
4612 Output a trace record of the specified category which also includes a Context ID.
4614 The trace record data is 4 bytes in size.
4616 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4618 @param aCategory A value from enum BTrace::TCategory,
4619 @param aSubCategory Sub-category value between 0 and 255.
4620 The meaning of this is dependent on the Category.
4621 @param aUid The 32bit quantity which forms the data of this trace record.
4623 @return True if trace is enabled for aCategory and aUid, false otherwise.
4627 #define BTraceFilteredContext4(aCategory,aSubCategory,aUid) \
4628 ((BTrace::TBTrace2)BTrace::OutFilteredX) \
4629 (BTRACE_HEADER_C(8,(aCategory),(aSubCategory)),(TUint32)(aUid))
4632 Output a trace record of the specified category which also includes a Context ID.
4634 The trace record data is 8 bytes in size.
4636 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4638 @param aCategory A value from enum BTrace::TCategory,
4639 @param aSubCategory Sub-category value between 0 and 255.
4640 The meaning of this is dependent on the Category.
4641 @param aUid The first 32bit quantity which forms the data of this trace record.
4642 @param a1 The second 32bit quantity which forms the data of this trace record.
4644 @return True if trace is enabled for aCategory and aUid, false otherwise.
4648 #define BTraceFilteredContext8(aCategory,aSubCategory,aUid,a1) \
4649 ((BTrace::TBTrace3)BTrace::OutFilteredX) \
4650 (BTRACE_HEADER_C(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1))
4653 Output a trace record of the specified category which also includes a Context ID.
4655 The trace record data is 12 bytes in size.
4657 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4659 @param aCategory A value from enum BTrace::TCategory,
4660 @param aSubCategory Sub-category value between 0 and 255.
4661 The meaning of this is dependent on the Category.
4662 @param aUid The first 32bit quantity which forms the data of this trace record.
4663 @param a1 The second 32bit quantity which forms the data of this trace record.
4664 @param a2 The third 32bit quantity which forms the data of this trace record.
4666 @return True if trace is enabled for aCategory and aUid, false otherwise.
4670 #define BTraceFilteredContext12(aCategory,aSubCategory,aUid,a1,a2) \
4671 BTrace::OutFilteredX \
4672 (BTRACE_HEADER_C(16,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),(TUint32)(a2))
4675 Output a trace record of the specified category which also includes a Context ID.
4677 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4679 @param aCategory A value from enum BTrace::TCategory,
4680 @param aSubCategory Sub-category value between 0 and 255.
4681 The meaning of this is dependent on the Category.
4682 @param aUid The first 32bit quantity which forms the data of this trace record.
4683 @param a1 The second 32bit quantity which forms the data of this trace record.
4684 @param aData Address of addition data to add to trace.
4685 Must be word aligned, i.e. a multiple of 4.
4686 @param aDataSize Number of bytes of additional data. If this value is greater than
4687 KMaxBTraceDataArray then data is truncated to this size and the
4688 flag ERecordTruncated is set in the record.
4690 @return True if trace is enabled for aCategory and aUid, false otherwise.
4694 #define BTraceFilteredContextN(aCategory,aSubCategory,aUid,a1,aData,aDataSize) \
4695 BTrace::OutFilteredNX \
4696 (BTRACE_HEADER_C(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),aData,aDataSize)
4699 Output a trace record of the specified category which also includes a Context ID.
4701 If the specified data is too big to find into a single trace record, then a
4702 multipart trace is generated. See TMultiPart.
4704 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4706 @param aCategory A value from enum BTrace::TCategory,
4707 @param aSubCategory Sub-category value between 0 and 255.
4708 The meaning of this is dependent on the Category.
4709 @param aUid The first 32bit quantity which forms the data of this trace record.
4710 @param aData Address of addition data to add to trace.
4711 Must be word aligned, i.e. a multiple of 4.
4712 @param aDataSize Number of bytes of additional data.
4714 @return True if trace is enabled for aCategory and aUid, false otherwise.
4718 #define BTraceFilteredContextBig(aCategory,aSubCategory,aUid,aData,aDataSize) \
4719 BTrace::OutFilteredBig \
4720 (BTRACE_HEADER_C(8,(aCategory),(aSubCategory)),(TUint32)(aUid),aData,(TInt)(aDataSize))
4725 Output a trace record of the specified category which also includes a Program Counter value.
4727 The trace record data is 4 bytes in size.
4729 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4731 @param aCategory A value from enum BTrace::TCategory,
4732 @param aSubCategory Sub-category value between 0 and 255.
4733 The meaning of this is dependent on the Category.
4734 @param aUid The 32bit quantity which forms the data of this trace record.
4736 @return True if trace is enabled for aCategory and aUid, false otherwise.
4740 #define BTraceFilteredPc4(aCategory,aSubCategory,aUid) \
4741 ((BTrace::TBTrace2)BTrace::OutFiltered) \
4742 (BTRACE_HEADER_P(8,(aCategory),(aSubCategory)),(TUint32)(aUid))
4745 Output a trace record of the specified category which also includes a Program Counter value.
4747 The trace record data is 8 bytes in size.
4749 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4751 @param aCategory A value from enum BTrace::TCategory,
4752 @param aSubCategory Sub-category value between 0 and 255.
4753 The meaning of this is dependent on the Category.
4754 @param aUid The first 32bit quantity which forms the data of this trace record.
4755 @param a1 The second 32bit quantity which forms the data of this trace record.
4757 @return True if trace is enabled for aCategory and aUid, false otherwise.
4761 #define BTraceFilteredPc8(aCategory,aSubCategory,aUid,a1) \
4762 ((BTrace::TBTrace3)BTrace::OutFiltered) \
4763 (BTRACE_HEADER_P(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1))
4766 Output a trace record of the specified category which also includes a Program Counter value.
4768 The trace record data is 12 bytes in size.
4770 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4772 @param aCategory A value from enum BTrace::TCategory,
4773 @param aSubCategory Sub-category value between 0 and 255.
4774 The meaning of this is dependent on the Category.
4775 @param aUid The first 32bit quantity which forms the data of this trace record.
4776 @param a1 The second 32bit quantity which forms the data of this trace record.
4777 @param a2 The third 32bit quantity which forms the data of this trace record.
4779 @return True if trace is enabled for aCategory and aUid, false otherwise.
4783 #define BTraceFilteredPc12(aCategory,aSubCategory,aUid,a1,a2) \
4784 BTrace::OutFiltered \
4785 (BTRACE_HEADER_P(16,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),(TUint32)(a2))
4788 Output a trace record of the specified category which also includes a Program Counter value.
4790 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4792 @param aCategory A value from enum BTrace::TCategory,
4793 @param aSubCategory Sub-category value between 0 and 255.
4794 The meaning of this is dependent on the Category.
4795 @param aUid The first 32bit quantity which forms the data of this trace record.
4796 @param a1 The second 32bit quantity which forms the data of this trace record.
4797 @param aData Address of addition data to add to trace.
4798 Must be word aligned, i.e. a multiple of 4.
4799 @param aDataSize Number of bytes of additional data. If this value is greater than
4800 KMaxBTraceDataArray then data is truncated to this size and the
4801 flag ERecordTruncated is set in the record.
4803 @return True if trace is enabled for aCategory and aUid, false otherwise.
4807 #define BTraceFilteredPcN(aCategory,aSubCategory,aUid,a1,aData,aDataSize) \
4808 BTrace::OutFilteredN \
4809 (BTRACE_HEADER_P(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),aData,aDataSize)
4812 Output a trace record of the specified category which also includes a Program Counter value.
4814 If the specified data is too big to find into a single trace record, then a
4815 multipart trace is generated. See TMultiPart.
4817 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4819 @param aCategory A value from enum BTrace::TCategory,
4820 @param aSubCategory Sub-category value between 0 and 255.
4821 The meaning of this is dependent on the Category.
4822 @param aUid The first 32bit quantity which forms the data of this trace record.
4823 @param aData Address of addition data to add to trace.
4824 Must be word aligned, i.e. a multiple of 4.
4825 @param aDataSize Number of bytes of additional data.
4827 @return True if trace is enabled for aCategory and aUid, false otherwise.
4831 #define BTraceFilteredPcBig(aCategory,aSubCategory,aUid,aData,aDataSize) \
4832 BTrace::OutFilteredBig \
4833 (BTRACE_HEADER_P(8,(aCategory),(aSubCategory)),(TUint32)(aUid),aData,(TInt)(aDataSize))
4839 Output a trace record of the specified category which also includes
4840 Context ID and Program Counter values.
4842 The trace record data is 4 bytes in size.
4844 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4846 @param aCategory A value from enum BTrace::TCategory,
4847 @param aSubCategory Sub-category value between 0 and 255.
4848 The meaning of this is dependent on the Category.
4849 @param aUid The 32bit quantity which forms the data of this trace record.
4851 @return True if trace is enabled for aCategory and aUid, false otherwise.
4855 #define BTraceFilteredContextPc4(aCategory,aSubCategory,aUid) \
4856 ((BTrace::TBTrace2)BTrace::OutFilteredX) \
4857 (BTRACE_HEADER_CP(8,(aCategory),(aSubCategory)),(TUint32)(aUid))
4860 Output a trace record of the specified category which also includes
4861 Context ID and Program Counter values.
4863 The trace record data is 8 bytes in size.
4865 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4867 @param aCategory A value from enum BTrace::TCategory,
4868 @param aSubCategory Sub-category value between 0 and 255.
4869 The meaning of this is dependent on the Category.
4870 @param aUid The first 32bit quantity which forms the data of this trace record.
4871 @param a1 The second 32bit quantity which forms the data of this trace record.
4873 @return True if trace is enabled for aCategory and aUid, false otherwise.
4877 #define BTraceFilteredContextPc8(aCategory,aSubCategory,aUid,a1) \
4878 ((BTrace::TBTrace3)BTrace::OutFilteredX) \
4879 (BTRACE_HEADER_CP(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1))
4882 Output a trace record of the specified category which also includes
4883 Context ID and Program Counter values.
4885 The trace record data is 12 bytes in size.
4887 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4889 @param aCategory A value from enum BTrace::TCategory,
4890 @param aSubCategory Sub-category value between 0 and 255.
4891 The meaning of this is dependent on the Category.
4892 @param aUid The first 32bit quantity which forms the data of this trace record.
4893 @param a1 The second 32bit quantity which forms the data of this trace record.
4894 @param a2 The third 32bit quantity which forms the data of this trace record.
4896 @return True if trace is enabled for aCategory and aUid, false otherwise.
4900 #define BTraceFilteredContextPc12(aCategory,aSubCategory,aUid,a1,a2) \
4901 BTrace::OutFilteredX \
4902 (BTRACE_HEADER_CP(16,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),(TUint32)(a2))
4905 Output a trace record of the specified category which also includes
4906 Context ID and Program Counter values.
4908 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4910 @param aCategory A value from enum BTrace::TCategory,
4911 @param aSubCategory Sub-category value between 0 and 255.
4912 The meaning of this is dependent on the Category.
4913 @param aUid The first 32bit quantity which forms the data of this trace record.
4914 @param a1 The second 32bit quantity which forms the data of this trace record.
4915 @param aData Address of addition data to add to trace.
4916 Must be word aligned, i.e. a multiple of 4.
4917 @param aDataSize Number of bytes of additional data. If this value is greater than
4918 KMaxBTraceDataArray then data is truncated to this size and the
4919 flag ERecordTruncated is set in the record.
4921 @return True if trace is enabled for aCategory and aUid, false otherwise.
4925 #define BTraceFilteredContextPcN(aCategory,aSubCategory,aUid,a1,aData,aDataSize) \
4926 BTrace::OutFilteredNX \
4927 (BTRACE_HEADER_CP(12,(aCategory),(aSubCategory)),(TUint32)(aUid),(TUint32)(a1),aData,aDataSize)
4930 Output a trace record of the specified category which also includes
4931 Context ID and Program Counter values.
4933 If the specified data is too big to find into a single trace record, then a
4934 multipart trace is generated. See TMultiPart.
4936 If the value of \a aUid is not contained in the secondary filter then the trace is discarded.
4938 @param aCategory A value from enum BTrace::TCategory,
4939 @param aSubCategory Sub-category value between 0 and 255.
4940 The meaning of this is dependent on the Category.
4941 @param aUid The first 32bit quantity which forms the data of this trace record.
4942 @param aData Address of addition data to add to trace.
4943 Must be word aligned, i.e. a multiple of 4.
4944 @param aDataSize Number of bytes of additional data.
4946 @return True if trace is enabled for aCategory and aUid, false otherwise.
4950 #define BTraceFilteredContextPcBig(aCategory,aSubCategory,aUid,aData,aDataSize) \
4951 BTrace::OutFilteredBig \
4952 (BTRACE_HEADER_CP(8,(aCategory),(aSubCategory)),(TUint32)(aUid),aData,(TInt)(aDataSize))
4960 inline TUint8* BTrace::NextRecord(TAny* aCurrentRecord)
4962 TUint size = ((TUint8*)aCurrentRecord)[ESizeIndex];
4963 *(TUint*)&aCurrentRecord += 3;
4964 *(TUint*)&aCurrentRecord += size;
4965 *(TUint*)&aCurrentRecord &= ~3;
4966 return (TUint8*)aCurrentRecord;
4969 #ifdef __KERNEL_MODE__
4971 inline TInt BTrace::Filter(TUint aCategory)
4973 return SetFilter(aCategory,-1);
4979 The maximum permissible value for aDataSize in trace outputs.
4980 @see BTraceN BTracePcN BTraceContextN BTraceContextPcN
4984 const TUint KMaxBTraceDataArray = 80;
4989 The maximum total number of bytes in a trace record.
4993 const TInt KMaxBTraceRecordSize = 7*4+8+KMaxBTraceDataArray;
4997 #define BTRACE_MACHINE_CODED