/usr/include/gpsim/trace.h is in gpsim-dev 0.27.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 | /*
Copyright (C) 1998 T. Scott Dattalo
This file is part of the libgpsim library of gpsim
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see
<http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
#ifndef __TRACE_H__
#define __TRACE_H__
#include <stdio.h>
#include <glib.h>
#include "exports.h"
#include "gpsim_classes.h"
#include "trigger.h"
#include "value.h"
#include "registers.h"
extern "C"
{
#include "lxt_write.h"
}
class Processor;
class Trace;
class TraceFrame;
//========================================================================
// A 'TraceObject' is created when the contents of the Trace buffer are
// displayed. The TraceObjects are placed into TraceFrames, and eventually
// the entire frame is displayed.
class TraceObject
{
public:
TraceObject();
virtual ~TraceObject()
{
}
virtual void print(FILE *)=0;
virtual void print_frame(TraceFrame *,FILE *);
virtual void getState(TraceFrame *); // FIXME Is this even used?
};
class CycleTraceObject : public TraceObject
{
public:
CycleTraceObject();
virtual ~CycleTraceObject()
{
}
virtual void print(FILE *);
virtual void print_frame(TraceFrame *,FILE *);
virtual void getState(TraceFrame *);
};
class InvalidTraceObject : public TraceObject
{
public:
InvalidTraceObject(int type);
virtual ~InvalidTraceObject()
{
}
virtual void print(FILE *);
protected:
int mType;
};
class ProcessorTraceObject : public TraceObject
{
public:
Processor *cpu;
ProcessorTraceObject(Processor *_cpu) : TraceObject() , cpu(_cpu)
{
}
virtual ~ProcessorTraceObject()
{
}
virtual void print(FILE *)=0;
};
class ModuleTraceType;
class ModuleTraceObject : public TraceObject
{
public:
Module *pModule;
ModuleTraceType *pModuleTraceType;
unsigned int mTracedData;
ModuleTraceObject(Module *_module,
ModuleTraceType *pmtt,
unsigned int d)
: TraceObject() ,
pModule(_module),
pModuleTraceType(pmtt),
mTracedData(d)
{
}
virtual ~ModuleTraceObject()
{
}
virtual void print(FILE *);
};
class RegisterWriteTraceObject : public ProcessorTraceObject
{
public:
Register *reg;
RegisterValue from;
RegisterValue to;
RegisterWriteTraceObject(Processor *_cpu, Register *_reg, RegisterValue trv);
virtual ~RegisterWriteTraceObject()
{
}
virtual void print(FILE *);
virtual void getState(TraceFrame *);
};
class RegisterReadTraceObject : public RegisterWriteTraceObject
{
public:
RegisterReadTraceObject(Processor *_cpu, Register *_reg, RegisterValue trv);
virtual ~RegisterReadTraceObject()
{
}
virtual void print(FILE *);
virtual void getState(TraceFrame *);
};
class PCTraceObject : public ProcessorTraceObject
{
public:
unsigned int address;
PCTraceObject(Processor *_cpu, unsigned int _address);
virtual ~PCTraceObject()
{
}
virtual void print(FILE *);
virtual void print_frame(TraceFrame *,FILE *);
};
//========================================================================
// The TraceType class is the base class for the various trace types that
// are supported by gpsim. In general, when a trace type is created,
// a 32 bit identifier is created. The upper byte of this identifier is
// the "type" of the trace and is dynamically allocated. The lower 24
// bits of this identifer are 0. When a TraceType is traced, the lower
// 24 bits are filled with the information that is to be recorded in
// the trace buffer. The whole 32 bits are then written to the trace buffer
// array.
class TraceType
{
public:
TraceType(unsigned int nTraceEntries, const char *desc);
virtual ~TraceType()
{
}
void setType(unsigned int t) { mType = t;}
// The actual type of the TraceType is an 8-bit field in the
// upper 32-bits of an unsigned integer. A TraceType can have
// more than one type, although the types are consecutive.
unsigned int type(unsigned int iType=0)
{
return (iType<mSize) ? (mType + (iType<<24)) : mType;
}
unsigned int size() { return mSize; }
// Given an index into the trace buffer, decode()
// will fetch traced items at that trace buffer index
// and attempt to decode them. In addition, the index is
// incremented by the number of trace entries this type
// used in the trace buffer (note, that this may not equal
// to the allocated mSize).
virtual TraceObject *decode(unsigned int tbi) = 0;
// Given an index into the trace buffer, entriesUsed()
// will return the number of trace buffer entries that
// were used to record this TraceType event. The default
// is the size allocated for this type.
virtual int entriesUsed(Trace *,unsigned int tbi);
virtual bool isFrameBoundary() { return false;}
// Returns true if the trace record starting at index 'tbi' is of the same
// type as this TraceType
virtual bool isValid(Trace *, unsigned int tbi);
// Returns true if the type of 'aType' is the same type as this TraceType
bool isValid(unsigned int aType)
{
unsigned int tMask=0xff<<24;
return ((aType&tMask) >= (mType&tMask)) && ((aType&tMask) <= ((mType&tMask) + (mSize<<24)));
}
virtual int bitsTraced() { return 24; }
virtual int dump_raw(Trace *,unsigned tbi, char *buf, int bufsize);
// Debugging - provide a way to see the TraceTypes that have been allocated.
virtual void showInfo();
const char *cpDescription();
private:
unsigned int mType; // The integer type is dynamically
// assigned by the Trace class.
unsigned int mSize; // The number of positions this
// type occupies
protected:
const char *mpDescription; //
};
class CycleTraceType : public TraceType
{
public:
CycleTraceType(unsigned int nTraceEntries);
virtual ~CycleTraceType()
{
}
virtual TraceObject *decode(unsigned int tbi);
virtual bool isFrameBoundary();
virtual int dump_raw(Trace *,unsigned tbi, char *buf, int bufsize);
virtual int entriesUsed(Trace *,unsigned int tbi);
};
class ModuleTraceType : public TraceType
{
public:
Module *pModule;
ModuleTraceType(Module *_pModule,
unsigned int nTraceEntries,
const char *desc);
virtual ~ModuleTraceType()
{
}
virtual TraceObject *decode(unsigned int tbi);
virtual int dump_raw(Trace *,unsigned tbi, char *buf, int bufsize);
};
class ProcessorTraceType : public TraceType
{
public:
Processor *cpu;
ProcessorTraceType(Processor *_cpu,
unsigned int nTraceEntries,
const char *pDesc);
virtual ~ProcessorTraceType()
{
}
virtual TraceObject *decode(unsigned int tbi) = 0;
};
class PCTraceType : public ProcessorTraceType
{
public:
PCTraceType(Processor *_cpu, unsigned int nTraceEntries);
virtual ~PCTraceType()
{
}
virtual TraceObject *decode(unsigned int tbi);
virtual bool isFrameBoundary() { return true; }
virtual int dump_raw(Trace *,unsigned tbi, char *buf, int bufsize);
};
class RegisterWriteTraceType : public ProcessorTraceType
{
public:
RegisterWriteTraceType(Processor *_cpu, unsigned int nTraceEntries);
virtual ~RegisterWriteTraceType()
{
}
virtual TraceObject *decode(unsigned int tbi);
virtual int dump_raw(Trace *,unsigned tbi, char *buf, int bufsize);
};
class RegisterReadTraceType : public ProcessorTraceType
{
public:
RegisterReadTraceType(Processor *_cpu, unsigned int nTraceEntries);
virtual ~RegisterReadTraceType()
{
}
virtual TraceObject *decode(unsigned int tbi);
virtual int dump_raw(Trace *,unsigned tbi, char *buf, int bufsize);
};
// Trace Type for Resets
class ResetTraceObject : public ProcessorTraceObject
{
public:
ResetTraceObject(Processor *_cpu, RESET_TYPE r);
virtual ~ResetTraceObject()
{
}
virtual void print(FILE *fp);
protected:
RESET_TYPE m_reset;
};
class ResetTraceType : public ProcessorTraceType
{
public:
ResetTraceType(Processor *_cpu);
virtual ~ResetTraceType()
{
}
TraceObject *decode(unsigned int tbi);
void record(RESET_TYPE r);
int dump_raw(Trace *pTrace,unsigned int tbi, char *buf, int bufsize);
unsigned int m_uiTT;
};
//========================================================================
// TraceFrame
//
// A trace frame collects all trace items that occurred at the same instant
// of time. When the trace buffer is decoded, markers will be examined
// to determine the frame boundaries.
class TraceFrame
{
public:
list <TraceObject *> traceObjects;
guint64 cycle_time;
TraceFrame();
virtual ~TraceFrame();
virtual void add(TraceObject *to);
virtual void print(FILE *);
virtual void update_state(void);
};
//-----------------------------------------------------------
class TraceRawLog
{
public:
char *log_filename;
FILE *log_file;
void log();
void enable(const char*);
void disable();
TraceRawLog();
~TraceRawLog();
};
//------------------------------------------------------------
class traceValue : public gpsimObject
{
public:
traceValue();
virtual void put_value(unsigned int new_value) {};
virtual unsigned int get_value();
};
//---------------------------------------------------------
// Class for trace buffer
class Trace
{
public:
enum eTraceTypes {
NOTHING = 0x3fffffff,
LAST_TRACE_TYPE = (1<<24),
TYPE_MASK = (0xff<<24),
CYCLE_COUNTER_LO = (0x80<<24),
CYCLE_COUNTER_HI = (0x40<<24)
};
#define TRACE_BUFFER_SIZE (1<<12)
#define TRACE_BUFFER_MASK (TRACE_BUFFER_SIZE-1)
#define TRACE_BUFFER_NEAR_FULL (TRACE_BUFFER_SIZE * 3 /4)
#define TRACE_STRING_BUFFER 50
unsigned int trace_buffer[TRACE_BUFFER_SIZE];
unsigned int trace_index;
unsigned int trace_flag;
bool bLogging;
TraceRawLog logger;
traceValue trace_value;
// When interfaced with a gui, the contents of the trace
// buffer are decoded one line-at-a-time, copied to the string_buffer
// and sent to the gui via xref interface (actually, the gui
// is notified that new data is available in the string_buffer).
XrefObject *xref;
char string_buffer[TRACE_STRING_BUFFER];
guint64 string_cycle; // The cycle corresponding to the decoded string
unsigned int string_index; // The trace buffer index corresponding " "
Processor *cpu;
TraceFrame *current_frame;
guint64 current_cycle_time; // used when decoding the trace buffer.
list <TraceFrame *> traceFrames;
unsigned int lastTraceType;
unsigned int lastSubTraceType;
Trace (void);
~Trace(void);
// trace raw allows any value to be written to the trace buffer.
// This is useful for modules that wish to trace things, but do
// not wish to modify the Trace class.
inline void raw (unsigned int ui)
{
trace_buffer[trace_index] = ui;
trace_index = (trace_index + 1) & TRACE_BUFFER_MASK;
}
/*
inline void opcode_write (unsigned int address, unsigned int opcode)
{
trace_buffer[trace_index] = OPCODE_WRITE | (address & 0xffffff);
trace_index = (trace_index + 1) & TRACE_BUFFER_MASK;
trace_buffer[trace_index] = OPCODE_WRITE | (opcode & 0xffff);
trace_index = (trace_index + 1) & TRACE_BUFFER_MASK;
}
*/
inline void cycle_counter (guint64 cc)
{
//RRRprintf("trace.cycle_counter index %x cycle %x\n", trace_index, (unsigned int)(cc & 0xffffffff));
// The 64 bit cycle counter requires two 32 bit traces.
trace_buffer[trace_index] = (unsigned int)(CYCLE_COUNTER_LO | (cc & 0xffffffff));
trace_index = (trace_index + 1) & TRACE_BUFFER_MASK;
trace_buffer[trace_index] = (unsigned int)(CYCLE_COUNTER_HI | (cc>>32) | (cc & CYCLE_COUNTER_LO));
trace_index = (trace_index + 1) & TRACE_BUFFER_MASK;
}
inline bool near_full(void) {
return (trace_index > TRACE_BUFFER_NEAR_FULL);
}
void switch_cpus(Processor *new_cpu) {cpu = new_cpu;};
int dump (int n=0, FILE *out_stream=0);
void dump_last_instruction(void);
int dump1(unsigned int,char *, int);
void dump_raw(int n);
// tbi - trace buffer index masking.
inline unsigned int tbi(unsigned int index)
{
return index & TRACE_BUFFER_MASK;
}
// inRange - returns true if the trace index i is between the
// indices of low and high.
// It's assumed that the range does not exceed half of the trace buffer
bool inRange(unsigned int i, unsigned int low, unsigned int high)
{
i = tbi(i);
if( low < high)
return (i >= low && i <= high);
// Looks like the range straddles the roll over boundary.
return (i >= low || i <= high);
}
// get() return the trace entry at 'index'
inline unsigned int operator [] (unsigned int index)
{
return trace_buffer[tbi(index)];
}
unsigned int get(unsigned int index)
{
return trace_buffer[tbi(index)];
}
// type() - return the trace type at 'index'
unsigned int type(unsigned int index);
// A gpsim clock cycle takes two consecutive trace buffer entries.
// The is_cycle_trace() member function will examine the trace
// buffer to determine if the two traces starting at 'index' are
// a cycle trace.
int is_cycle_trace(unsigned int index, guint64 *cvt_cycle);
// When logging is enabled, the entire trace buffer will be copied to a file.
void enableLogging(const char *fname);
void disableLogging();
unsigned int allocateTraceType(TraceType *);
// Trace frame manipulation
void addFrame(TraceFrame *newFrame);
void addToCurrentFrame(TraceObject *to);
void deleteTraceFrame(void);
void printTraceFrame(FILE *);
// Display information about allocated traces.
void showInfo();
};
#if defined(IN_MODULE) && defined(_WIN32)
// we are in a module: don't access trace object directly!
LIBGPSIM_EXPORT Trace & get_trace(void);
#else
// we are in gpsim: use of get_trace() is recommended,
// even if trace object can be accessed directly.
extern Trace trace;
inline Trace &get_trace(void)
{
return trace;
}
#endif
//-----------------------------------------------------------
#define TRACE_FILE_FORMAT_ASCII 0
#define TRACE_FILE_FORMAT_LXT 1
class TraceLog : public TriggerObject
{
public:
bool logging;
bool lograw;
int items_logged;
char *log_filename;
FILE *log_file;
Processor *cpu;
unsigned int last_trace_index;
Trace buffer;
int file_format;
struct lt_trace *lxtp;
struct lt_symbol *symp;
TraceLog(void);
~TraceLog(void);
virtual void callback(void);
void enable_logging(const char *new_filename=0, int format=TRACE_FILE_FORMAT_ASCII);
void disable_logging(void);
void switch_cpus(Processor *new_cpu);
void open_logfile(const char *new_fname, int format);
void close_logfile(void);
void write_logfile(void);
void status(void);
void lxt_trace(unsigned int address, unsigned int value, guint64 cc);
void register_read(Register *, guint64 cc);
void register_write(Register *, guint64 cc);
void register_read_value(Register *, guint64 cc);
void register_write_value(Register *, guint64 cc);
};
#if defined(_WIN32)
// we are in a module: don't access trace_log object directly!
LIBGPSIM_EXPORT TraceLog & GetTraceLog(void);
#else
// we are in gpsim: use of GetTraceLog() is recommended,
// even if trace_log object can be accessed directly.
extern TraceLog trace_log;
inline TraceLog &GetTraceLog(void)
{
return trace_log;
}
#endif
//-----------------------------------------------------------
class ProfileKeeper : public TriggerObject
{
public:
bool enabled;
Processor *cpu;
unsigned int last_trace_index;
unsigned int instruction_address;
unsigned int trace_pc_value;
ProfileKeeper(void);
~ProfileKeeper(void);
void catchup(void);
virtual void callback(void);
void enable_profiling(void);
void disable_profiling(void);
void switch_cpus(Processor *new_cpu);
};
extern ProfileKeeper profile_keeper;
/**********************************************************************
* boolean event logging
*
* The boolean event logger is a class for logging the time
* of boolean (i.e. 0/1) events.
*
* The class is designed to be efficient for both logging events and
* for accessing events that have already been logged. The events
* are stored in several small buffers that are linked together with
* binary trees. Each small buffer is linear, i.e. an array. Each
* element of the array stores the time when the event occurred.
* The state of the event is encoded in the position of the array.
* In other words, "high" events are at the odd indices of the array
* and "low" ones at the even ones.
*
* Each small buffer is associated with a contiguous time span. The
* start and end of this span is recorded so that one can quickly
* ascertain if a certain time instant resideds in the buffer.
*
* The binary tree is fairly standard. A single top node records three
* numbers: the start time for the left child, the end time for the
* left child (which by default is the start time for the right child)
* and the end time for the right child. The nodes of left and right
* children are similar to the parents. To find which small buffer
* contains an event for a certain time, one simply starts at the
* top of the tree and traverses the nodes until a leaf is reached.
* A leaf, of course, is where the data is stored.
*
* The time for the event comes from gpsim's global cycle counter.
* This counter is 64-bits wide. The buffers that store the time however,
* are only 32-bits wide. There are two simple tricks employed to get
* around this problem. First, full 64-bit time for the first event
* is recorded. All subsequent events are 32-bit offsets from this.
* Second, to ensure that the 32-bit offset does not wrap around, the
* boolean event logger will set a cycle counter break point that is
* less than 2^32 cycles in the future. If this break point is encountered
* before the buffer fills, then this buffer is closed and added to the
* binary and a new buffer is started.
*
* Repeated events are not logged. E.g.. if two 1's are logged, the
* second one is ignored.
*
*/
class BoolEventBuffer : public TriggerObject
{
public:
guint32 index; // Index into the buffer
guint64 *buffer; // Where the time is stored
guint32 max_events; // Size of the event buffer
guint64 start_time; // time of the first event
guint64 future_cycle; // time at which the buffer can store no more data.
bool bInitialState; // State when started.
bool bActive; // True if the buffer is enabled for storing.
bool bFull; // True if the buffer has been filled.
BoolEventBuffer(bool _initial_state, guint32 _max_events = 4096);
~BoolEventBuffer(void);
unsigned int get_index(guint64 event_time);
void activate(bool _initial_state);
void deactivate(void);
void callback(void);
void callback_print(void);
inline bool event(bool state);
inline bool isActive(void)
{
return bActive;
}
inline bool isFull(void)
{
return (index < max_events);
}
/*
get_index - return the current index
This is used by the callers to record where in the event
buffer a specific event is stored. (e.g. The start bit
of a usart bit stream.)
*/
inline unsigned int get_index(void) {
return index;
}
bool get_event(int index) {
return (index & 1)^bInitialState;
}
bool get_state(guint64 event_time) {
return get_event(get_index(event_time));
}
int get_edges(guint64 start_time, guint64 end_time) {
return ( get_index(end_time) - get_index(start_time) );
}
};
#endif
|