rename markers*.{c,h} -> marker*.{c,h}
[lttv.git] / ltt / branches / poly / ltt / ltt-private.h
CommitLineData
449cb9d7 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Xiangxiu Yang
1b44b0b5 3 * 2006 Mathieu Desnoyers
449cb9d7 4 *
1b44b0b5 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License Version 2.1 as published by the Free Software Foundation.
449cb9d7 8 *
1b44b0b5 9 * This library is distributed in the hope that it will be useful,
449cb9d7 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1b44b0b5 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
449cb9d7 13 *
1b44b0b5 14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
449cb9d7 18 */
19
fcdf0ec2 20#ifndef LTT_PRIVATE_H
21#define LTT_PRIVATE_H
22
858bd80a 23#include <glib.h>
cbd41522 24#include <sys/types.h>
fcdf0ec2 25#include <ltt/ltt.h>
3b10b765 26#include <endian.h>
29af7cfd 27#include <ltt/event.h>
bb38a290 28#include <ltt/marker.h>
29af7cfd 29#include <ltt/trace.h>
e3247aa5 30
eed2ef37 31#ifndef max
32#define max(a,b) ((a)>(b)?(a):(b))
33#endif
34
2312de30 35#ifndef min
36#define min(a,b) ((a)<(b)?(a):(b))
37#endif
38
39
eed2ef37 40
3aee1200 41#define LTT_MAGIC_NUMBER 0x00D6B7ED
42#define LTT_REV_MAGIC_NUMBER 0xEDB7D600
43
44#define NSEC_PER_USEC 1000
45
cbd41522 46#define LTT_PACKED_STRUCT __attribute__ ((packed))
47
3aee1200 48/* Hardcoded facilities */
49#define LTT_FACILITY_CORE 0
3b10b765 50
51/* Byte ordering */
52#define LTT_GET_BO(t) ((t)->reverse_bo)
53
54#define LTT_HAS_FLOAT(t) ((t)->float_word_order!=0)
55#define LTT_GET_FLOAT_BO(t) \
56 (((t)->float_word_order==__BYTE_ORDER)?0:1)
57
f104d082 58#define SEQUENCE_AVG_ELEMENTS 1000
59
3aee1200 60/* Hardcoded core events */
61enum ltt_core_events {
62 LTT_EVENT_FACILITY_LOAD,
63 LTT_EVENT_FACILITY_UNLOAD,
b77d1b57 64 LTT_EVENT_HEARTBEAT,
d1bb700c 65 LTT_EVENT_HEARTBEAT_FULL,
b77d1b57 66 LTT_EVENT_STATE_DUMP_FACILITY_LOAD
3aee1200 67};
68
69
70#if 0
e3247aa5 71/* enumeration definition */
72
73typedef enum _BuildinEvent{
74 TRACE_FACILITY_LOAD = 0,
75 TRACE_BLOCK_START = 17,
76 TRACE_BLOCK_END = 18,
0d7aac52 77 TRACE_TIME_HEARTBEAT= 19
e3247aa5 78} BuildinEvent;
fcdf0ec2 79
7c6b3cd7 80
81/* structure definition */
82
e3247aa5 83typedef struct _FacilityLoad{
45e14832 84 gchar * name;
e3247aa5 85 LttChecksum checksum;
cbd41522 86 guint32 base_code;
e3247aa5 87} LTT_PACKED_STRUCT FacilityLoad;
88
89typedef struct _BlockStart {
3aee1200 90 LttTime time; //Time stamp of this block
e3247aa5 91 LttCycleCount cycle_count; //cycle count of the event
cbd41522 92 guint32 block_id; //block id
e3247aa5 93} LTT_PACKED_STRUCT BlockStart;
94
95typedef struct _BlockEnd {
3aee1200 96 LttTime time; //Time stamp of this block
e3247aa5 97 LttCycleCount cycle_count; //cycle count of the event
cbd41522 98 guint32 block_id; //block id
e3247aa5 99} LTT_PACKED_STRUCT BlockEnd;
3aee1200 100#endif //0
101
102
103typedef guint8 uint8_t;
104typedef guint16 uint16_t;
105typedef guint32 uint32_t;
106typedef guint64 uint64_t;
107
16fcbb80 108/* Hardcoded facility load event : this plus an preceding "name" string */
3aee1200 109struct LttFacilityLoad {
110 guint32 checksum;
111 guint32 id;
c88ddec5 112 guint32 int_size;
3aee1200 113 guint32 long_size;
114 guint32 pointer_size;
115 guint32 size_t_size;
c88ddec5 116 guint32 has_alignment;
16fcbb80 117} LTT_PACKED_STRUCT;
3aee1200 118
119struct LttFacilityUnload {
120 guint32 id;
16fcbb80 121} LTT_PACKED_STRUCT;
3aee1200 122
123struct LttStateDumpFacilityLoad {
124 guint32 checksum;
125 guint32 id;
c88ddec5 126 guint32 int_size;
3aee1200 127 guint32 long_size;
128 guint32 pointer_size;
129 guint32 size_t_size;
c88ddec5 130 guint32 has_alignment;
16fcbb80 131} LTT_PACKED_STRUCT;
e3247aa5 132
78f79181 133/* Empty event */
e3247aa5 134typedef struct _TimeHeartbeat {
e3247aa5 135} LTT_PACKED_STRUCT TimeHeartbeat;
136
d1bb700c 137typedef struct _TimeHeartbeatFull {
138 guint64 tsc;
139} LTT_PACKED_STRUCT TimeHeartbeatFull;
140
3aee1200 141struct ltt_event_header_hb {
142 uint32_t timestamp;
3c165eaf 143 uint16_t event_id;
3aee1200 144 uint16_t event_size;
16fcbb80 145} LTT_PACKED_STRUCT;
3aee1200 146
147struct ltt_event_header_nohb {
148 uint64_t timestamp;
3c165eaf 149 uint16_t event_id;
3aee1200 150 uint16_t event_size;
16fcbb80 151} LTT_PACKED_STRUCT;
3aee1200 152
b7576a11 153
154/* Block and trace headers */
155
156struct ltt_trace_header_any {
157 uint32_t magic_number;
158 uint32_t arch_type;
159 uint32_t arch_variant;
160 uint32_t float_word_order;
161 uint8_t arch_size;
162 uint8_t major_version;
163 uint8_t minor_version;
164 uint8_t flight_recorder;
165 uint8_t has_heartbeat;
166 uint8_t has_alignment; /* Event header alignment */
c88ddec5 167 uint32_t freq_scale;
b7576a11 168} LTT_PACKED_STRUCT;
169
3c165eaf 170struct ltt_trace_header_1_0 {
d1bb700c 171 uint32_t magic_number;
172 uint32_t arch_type;
173 uint32_t arch_variant;
174 uint32_t float_word_order;
175 uint8_t arch_size;
176 uint8_t major_version;
177 uint8_t minor_version;
178 uint8_t flight_recorder;
179 uint8_t has_heartbeat;
180 uint8_t has_alignment; /* Event header alignment */
181 uint8_t tsc_lsb_truncate;
182 uint8_t tscbits;
183 uint32_t freq_scale;
184 uint64_t start_freq;
185 uint64_t start_tsc;
186 uint64_t start_monotonic;
187 uint64_t start_time_sec;
188 uint64_t start_time_usec;
189} LTT_PACKED_STRUCT;
190
e939e5b2 191
3aee1200 192struct ltt_block_start_header {
193 struct {
3aee1200 194 uint64_t cycle_count;
986e2a7c 195 uint64_t freq;
3aee1200 196 } begin;
197 struct {
3aee1200 198 uint64_t cycle_count;
986e2a7c 199 uint64_t freq;
3aee1200 200 } end;
201 uint32_t lost_size; /* Size unused at the end of the buffer */
202 uint32_t buf_size; /* The size of this sub-buffer */
51551c6f 203 struct ltt_trace_header_any trace[0];
16fcbb80 204} LTT_PACKED_STRUCT;
3aee1200 205
e3247aa5 206
14b1ac27 207#if 0
e3247aa5 208struct _LttType{
f104d082 209// LTTV does not care about type names. Everything is a field.
210// GQuark type_name; //type name if it is a named type
45e14832 211 gchar * fmt;
f104d082 212 guint size;
e3247aa5 213 LttTypeEnum type_class; //which type
2312de30 214 GHashTable *enum_map; //maps enum labels to numbers.
880fded3 215 gint32 highest_value; //For enum
216 gint32 lowest_value; //For enum
f104d082 217 GArray *fields; // Array of LttFields, for array, sequence, union, struct.
218 GData *fields_by_name;
c88ddec5 219 guint network; // Is the type in network byte order ?
e8548639 220 //part added by gaby for fmt:
221 char *header;
222 char *separator;
223 char *footer;
7c6b3cd7 224};
14b1ac27 225#endif //0
7c6b3cd7 226
d7913a10 227#if 0
e3247aa5 228struct _LttEventType{
3aee1200 229 GQuark name;
45e14832 230 gchar * description;
f104d082 231 guint index; //id of the event type within the facility
3c165eaf 232 struct marker_info *info;
f104d082 233 GArray * fields; //event's fields (LttField)
234 GData *fields_by_name;
dd3a6d39 235 int has_compact_data; //event header contains compact data (first field)
7c6b3cd7 236};
d7913a10 237#endif //0
7c6b3cd7 238
3aee1200 239enum field_status { FIELD_UNKNOWN, FIELD_VARIABLE, FIELD_FIXED };
240
14b1ac27 241#if 0
e3247aa5 242struct _LttField{
f104d082 243 GQuark name;
244 gchar *description;
245 LttType field_type; //field type
246
247 off_t offset_root; //offset from the root
248 enum field_status fixed_root; //offset fixed according to the root
249
250 guint field_size; // size of the field
251 // Only if field type size is set to 0
252 // (it's variable), then the field_size should be
253 // dynamically calculated while reading the trace
254 // and put here. Otherwise, the field_size always
d1bb700c 255 // equals the type size.
f104d082 256 off_t array_offset; // offset of the beginning of the array (for array
257 // and sequences)
258 GArray * dynamic_offsets; // array of offsets calculated dynamically at
259 // each event for sequences and arrays that
260 // contain variable length fields.
7c6b3cd7 261};
14b1ac27 262#endif //0
3c165eaf 263#if 0
e3247aa5 264struct _LttFacility{
3aee1200 265 LttTrace *trace;
3aee1200 266 GQuark name;
267 guint32 checksum; //checksum of the facility
268 guint32 id; //id of the facility
269
f104d082 270 guint32 int_size;
cb03932a 271 guint32 long_size;
f104d082 272 guint32 pointer_size;
3aee1200 273 guint32 size_t_size;
274 guint32 alignment;
275
3aee1200 276 GArray *events;
277 GData *events_by_name;
f104d082 278 // not necessary in LTTV GData *named_types;
3aee1200 279
280 unsigned char exists; /* 0 does not exist, 1 exists */
7c6b3cd7 281};
3c165eaf 282#endif //0
7c6b3cd7 283
3aee1200 284typedef struct _LttBuffer {
285 void * head;
286 unsigned int index;
287
288 struct {
289 LttTime timestamp;
290 uint64_t cycle_count;
986e2a7c 291 uint64_t freq; /* Frequency in khz */
3aee1200 292 } begin;
293 struct {
294 LttTime timestamp;
295 uint64_t cycle_count;
986e2a7c 296 uint64_t freq; /* Frequency in khz */
3aee1200 297 } end;
298 uint32_t lost_size; /* Size unused at the end of the buffer */
299
300 /* Timekeeping */
301 uint64_t tsc; /* Current timestamp counter */
986e2a7c 302 uint64_t freq; /* Frequency in khz */
791dffa6 303 //double nsecs_per_cycle; /* Precalculated from freq */
304 guint32 cyc2ns_scale;
3aee1200 305} LttBuffer;
306
29af7cfd 307struct LttTracefile {
3aee1200 308 gboolean cpu_online; //is the cpu online ?
d3d34f49 309 GQuark long_name; //tracefile complete filename
3aee1200 310 GQuark name; //tracefile name
311 guint cpu_num; //cpu number of the tracefile
c88ddec5 312 guint tid; //Usertrace tid, else 0
313 guint pgid; //Usertrace pgid, else 0
314 guint64 creation; //Usertrace creation, else 0
e3247aa5 315 LttTrace * trace; //trace containing the tracefile
316 int fd; //file descriptor
317 off_t file_size; //file size
f628823c 318 //unsigned block_size; //block_size
f104d082 319 guint num_blocks; //number of blocks in the file
3aee1200 320 gboolean reverse_bo; //must we reverse byte order ?
3b10b765 321 gboolean float_word_order; //what is the byte order of floats ?
c88ddec5 322 size_t has_alignment; //alignment of events in the tracefile.
323 // 0 or the architecture size in bytes.
3aee1200 324
90440c06 325 guint8 has_heartbeat;
823820eb 326 size_t buffer_header_size;
d1bb700c 327 int compact; //compact tracefile ?
328 uint8_t tsc_lsb_truncate;
329 uint8_t tscbits;
330 uint8_t tsc_msb_cutoff;
331 uint64_t tsc_mask;
332 uint64_t tsc_mask_next_bit; //next MSB after the mask
823820eb 333
c88ddec5 334 /* Current event */
3aee1200 335 LttEvent event; //Event currently accessible in the trace
336
c88ddec5 337 /* Current block */
3aee1200 338 LttBuffer buffer; //current buffer
339 guint32 buf_size; /* The size of blocks */
340
c88ddec5 341 /* Time flow */
3aee1200 342 //unsigned int count; //the number of overflow of cycle count
343 //double nsec_per_cycle; //Nsec per cycle
344 //TimeHeartbeat * last_heartbeat; //last heartbeat
345
887208b7 346 //LttCycleCount cycles_per_nsec_reciprocal; // Optimisation for speed
3aee1200 347 //void * last_event_pos;
7c6b3cd7 348
3aee1200 349 //LttTime prev_block_end_time; //the end time of previous block
350 //LttTime prev_event_time; //the time of the previous event
351 //LttCycleCount pre_cycle_count; //previous cycle count of the event
e3247aa5 352};
7c6b3cd7 353
a5dcde2f 354/* The characteristics of the system on which the trace was obtained
355 is described in a LttSystemDescription structure. */
356
29af7cfd 357struct LttSystemDescription {
45e14832 358 gchar *description;
359 gchar *node_name;
360 gchar *domain_name;
a5dcde2f 361 unsigned nb_cpu;
362 LttArchSize size;
363 LttArchEndian endian;
45e14832 364 gchar *kernel_name;
365 gchar *kernel_release;
366 gchar *kernel_version;
367 gchar *machine;
368 gchar *processor;
369 gchar *hardware_platform;
370 gchar *operating_system;
a5dcde2f 371 LttTime trace_start;
372 LttTime trace_end;
373};
374
7c6b3cd7 375/*****************************************************************************
376 macro for size of some data types
377 *****************************************************************************/
3aee1200 378// alignment -> dynamic!
379
380//#define TIMESTAMP_SIZE sizeof(guint32)
381//#define EVENT_ID_SIZE sizeof(guint16)
382//#define EVENT_HEADER_SIZE (TIMESTAMP_SIZE + EVENT_ID_SIZE)
383
7c6b3cd7 384
29af7cfd 385//off_t get_alignment(LttField *field);
83e160f2 386
f104d082 387/* Calculate the offset needed to align the type.
388 * If has_alignment is 0, alignment is disactivated.
389 * else, the function returns the offset needed to
390 * align align_drift on the has_alignment value (should be
391 * the size of the architecture). */
392static inline unsigned int ltt_align(size_t align_drift,
83e160f2 393 size_t size_of_type,
394 size_t has_alignment)
f104d082 395{
c88ddec5 396 size_t alignment = min(has_alignment, size_of_type);
397
398 if(!has_alignment) return 0;
399
400 g_assert(size_of_type != 0);
401 return ((alignment - align_drift) & (alignment-1));
f104d082 402}
403
f104d082 404
fcdf0ec2 405#endif /* LTT_PRIVATE_H */
This page took 0.069139 seconds and 4 git commands to generate.