X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=trace_model.hpp;h=5c51bba7d06c345a541b8dca59cebe1291d546f6;hb=75e8c9b7c7f2f10d9b7f479d45f58d81ea729d30;hp=05d809ee69eabdd846544a92074517f5cde7d4f8;hpb=1b23ed28505a34cda19b5cc1b7578e63c0c63237;p=apitrace diff --git a/trace_model.hpp b/trace_model.hpp index 05d809e..5c51bba 100644 --- a/trace_model.hpp +++ b/trace_model.hpp @@ -34,16 +34,52 @@ #include #include -#include #include #include -#include "trace_writer.hpp" - namespace Trace { +typedef unsigned Id; + + +struct FunctionSig { + Id id; + const char *name; + unsigned num_args; + const char **arg_names; +}; + + +struct StructSig { + Id id; + const char *name; + unsigned num_members; + const char **member_names; +}; + + +struct EnumSig { + Id id; + const char *name; + signed long long value; +}; + + +struct BitmaskFlag { + const char *name; + unsigned long long value; +}; + + +struct BitmaskSig { + Id id; + unsigned num_flags; + const BitmaskFlag *flags; +}; + + class Visitor; @@ -64,6 +100,8 @@ public: virtual const char *toString(void) const; const Value & operator[](size_t index) const; + + void dump(std::ostream &os, bool color=true); }; @@ -269,23 +307,23 @@ protected: }; -std::ostream & operator <<(std::ostream &os, Value *value); +inline std::ostream & operator <<(std::ostream &os, Value *value) { + if (value) { + value->dump(os); + } + return os; +} class Call { public: - struct Signature { - const char * name; - std::vector arg_names; - }; - unsigned no; - const Signature *sig; + const FunctionSig *sig; std::vector args; Value *ret; - Call(Signature *_sig) : sig(_sig), args(_sig->arg_names.size()), ret(0) { } + Call(FunctionSig *_sig) : sig(_sig), args(_sig->num_args), ret(0) { } ~Call(); inline const char * name(void) const { @@ -296,10 +334,15 @@ public: assert(index < args.size()); return *(args[index]); } + + void dump(std::ostream &os, bool color=true); }; -std::ostream & operator <<(std::ostream &os, Call &call); +inline std::ostream & operator <<(std::ostream &os, Call &call) { + call.dump(os); + return os; +} } /* namespace Trace */