5b2f0f33f9
passed in a structure now, so it is easier to extend it and ignore unused parameters. * One can now select which system profiling events one is interested in. * Added scheduling events to the system profiling interface. Those are pretty much the ones recorded when scheduler tracing is enabled. Still missing are the "wait object" events that allow to interpret what a thread is waiting for. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30243 a95241bf-73f2-0310-859d-f6bbb57e9c96
163 lines
3.4 KiB
C
163 lines
3.4 KiB
C
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SYSTEM_SYSTEM_PROFILER_DEFS_H
|
|
#define _SYSTEM_SYSTEM_PROFILER_DEFS_H
|
|
|
|
#include <image.h>
|
|
|
|
|
|
struct system_profiler_parameters {
|
|
// general
|
|
area_id buffer_area; // area the events will be written to
|
|
uint32 flags; // flags selecting the events to receive
|
|
|
|
// scheduling
|
|
size_t locking_lookup_size; // size of the lookup table used for
|
|
// caching the locking primitive infos
|
|
|
|
// sampling
|
|
bigtime_t interval; // interval at which to take samples
|
|
uint32 stack_depth; // maximum stack depth to sample
|
|
};
|
|
|
|
|
|
// event flags
|
|
enum {
|
|
B_SYSTEM_PROFILER_TEAM_EVENTS = 0x01,
|
|
B_SYSTEM_PROFILER_THREAD_EVENTS = 0x02,
|
|
B_SYSTEM_PROFILER_IMAGE_EVENTS = 0x04,
|
|
B_SYSTEM_PROFILER_SAMPLING_EVENTS = 0x08,
|
|
B_SYSTEM_PROFILER_SCHEDULING_EVENTS = 0x10
|
|
};
|
|
|
|
|
|
// events
|
|
enum {
|
|
// reserved for the user application
|
|
B_SYSTEM_PROFILER_USER_EVENT = 0,
|
|
|
|
// ring buffer wrap-around marker
|
|
B_SYSTEM_PROFILER_BUFFER_END,
|
|
|
|
// team
|
|
B_SYSTEM_PROFILER_TEAM_ADDED,
|
|
B_SYSTEM_PROFILER_TEAM_REMOVED,
|
|
B_SYSTEM_PROFILER_TEAM_EXEC,
|
|
|
|
// thread
|
|
B_SYSTEM_PROFILER_THREAD_ADDED,
|
|
B_SYSTEM_PROFILER_THREAD_REMOVED,
|
|
|
|
// image
|
|
B_SYSTEM_PROFILER_IMAGE_ADDED,
|
|
B_SYSTEM_PROFILER_IMAGE_REMOVED,
|
|
|
|
// profiling samples
|
|
B_SYSTEM_PROFILER_SAMPLES,
|
|
|
|
// scheduling
|
|
B_SYSTEM_PROFILER_THREAD_SCHEDULED,
|
|
B_SYSTEM_PROFILER_THREAD_ENQUEUED_IN_RUN_QUEUE,
|
|
B_SYSTEM_PROFILER_THREAD_REMOVED_FROM_RUN_QUEUE,
|
|
B_SYSTEM_PROFILER_WAIT_OBJECT_INFO
|
|
};
|
|
|
|
|
|
struct system_profiler_buffer_header {
|
|
size_t start;
|
|
size_t size;
|
|
};
|
|
|
|
|
|
struct system_profiler_event_header {
|
|
uint8 event;
|
|
uint8 cpu; // only for B_SYSTEM_PROFILER_SAMPLES
|
|
uint16 size; // size of the event structure excluding the header
|
|
};
|
|
|
|
|
|
// B_SYSTEM_PROFILER_TEAM_ADDED
|
|
struct system_profiler_team_added {
|
|
team_id team;
|
|
char args[1];
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_TEAM_REMOVED
|
|
struct system_profiler_team_removed {
|
|
team_id team;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_TEAM_EXEC
|
|
struct system_profiler_team_exec {
|
|
team_id team;
|
|
char thread_name[B_OS_NAME_LENGTH];
|
|
char args[1];
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_THREAD_ADDED
|
|
struct system_profiler_thread_added {
|
|
team_id team;
|
|
thread_id thread;
|
|
char name[B_OS_NAME_LENGTH];
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_THREAD_REMOVED
|
|
struct system_profiler_thread_removed {
|
|
team_id team;
|
|
thread_id thread;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_IMAGE_ADDED
|
|
struct system_profiler_image_added {
|
|
team_id team;
|
|
image_info info;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_IMAGE_REMOVED
|
|
struct system_profiler_image_removed {
|
|
team_id team;
|
|
image_id image;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_SAMPLES
|
|
struct system_profiler_samples {
|
|
thread_id thread;
|
|
addr_t samples[0];
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_THREAD_SCHEDULED,
|
|
struct system_profiler_thread_scheduled {
|
|
bigtime_t time;
|
|
thread_id thread;
|
|
thread_id previous_thread;
|
|
uint16 previous_thread_state;
|
|
uint16 previous_thread_wait_object_type;
|
|
addr_t previous_thread_wait_object;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_THREAD_ENQUEUED_IN_RUN_QUEUE,
|
|
struct system_profiler_thread_enqueued_in_run_queue {
|
|
bigtime_t time;
|
|
thread_id thread;
|
|
uint8 priority;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_THREAD_REMOVED_FROM_RUN_QUEUE,
|
|
struct system_profiler_thread_removed_from_run_queue {
|
|
bigtime_t time;
|
|
thread_id thread;
|
|
};
|
|
|
|
// B_SYSTEM_PROFILER_WAIT_OBJECT_INFO
|
|
struct system_profiler_wait_object_info {
|
|
uint32 type;
|
|
addr_t object;
|
|
addr_t referenced_object;
|
|
char name[1];
|
|
};
|
|
|
|
|
|
#endif /* _SYSTEM_SYSTEM_PROFILER_DEFS_H */
|