Update fstapi files to latest ones from GTKWave
This commit is contained in:
parent
1e18d43107
commit
2bc9cb90dd
7037
vpi/fstapi.c
7037
vpi/fstapi.c
File diff suppressed because it is too large
Load Diff
270
vpi/fstapi.h
270
vpi/fstapi.h
|
|
@ -57,9 +57,9 @@ enum fstFileType {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum fstBlockType {
|
enum fstBlockType {
|
||||||
FST_BL_HDR = 0,
|
FST_BL_HDR = 0,
|
||||||
FST_BL_VCDATA = 1,
|
FST_BL_VCDATA = 1,
|
||||||
FST_BL_BLACKOUT = 2,
|
FST_BL_BLACKOUT = 2,
|
||||||
FST_BL_GEOM = 3,
|
FST_BL_GEOM = 3,
|
||||||
FST_BL_HIER = 4,
|
FST_BL_HIER = 4,
|
||||||
FST_BL_VCDATA_DYN_ALIAS = 5,
|
FST_BL_VCDATA_DYN_ALIAS = 5,
|
||||||
|
|
@ -67,8 +67,8 @@ enum fstBlockType {
|
||||||
FST_BL_HIER_LZ4DUO = 7,
|
FST_BL_HIER_LZ4DUO = 7,
|
||||||
FST_BL_VCDATA_DYN_ALIAS2 = 8,
|
FST_BL_VCDATA_DYN_ALIAS2 = 8,
|
||||||
|
|
||||||
FST_BL_ZWRAPPER = 254, /* indicates that whole trace is gz wrapped */
|
FST_BL_ZWRAPPER = 254, /* indicates that whole trace is gz wrapped */
|
||||||
FST_BL_SKIP = 255 /* used while block is being written */
|
FST_BL_SKIP = 255 /* used while block is being written */
|
||||||
};
|
};
|
||||||
|
|
||||||
enum fstScopeType {
|
enum fstScopeType {
|
||||||
|
|
@ -108,7 +108,7 @@ enum fstScopeType {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum fstVarType {
|
enum fstVarType {
|
||||||
FST_VT_MIN = 0, /* start of vartypes */
|
FST_VT_MIN = 0, /* start of vartypes */
|
||||||
|
|
||||||
FST_VT_VCD_EVENT = 0,
|
FST_VT_VCD_EVENT = 0,
|
||||||
FST_VT_VCD_INTEGER = 1,
|
FST_VT_VCD_INTEGER = 1,
|
||||||
|
|
@ -129,21 +129,21 @@ enum fstVarType {
|
||||||
FST_VT_VCD_WIRE = 16,
|
FST_VT_VCD_WIRE = 16,
|
||||||
FST_VT_VCD_WOR = 17,
|
FST_VT_VCD_WOR = 17,
|
||||||
FST_VT_VCD_PORT = 18,
|
FST_VT_VCD_PORT = 18,
|
||||||
FST_VT_VCD_SPARRAY = 19, /* used to define the rownum (index) port for a sparse array */
|
FST_VT_VCD_SPARRAY = 19, /* used to define the rownum (index) port for a sparse array */
|
||||||
FST_VT_VCD_REALTIME = 20,
|
FST_VT_VCD_REALTIME = 20,
|
||||||
|
|
||||||
FST_VT_GEN_STRING = 21, /* generic string type (max len is defined dynamically via fstWriterEmitVariableLengthValueChange) */
|
FST_VT_GEN_STRING = 21, /* generic string type (max len is defined dynamically via fstWriterEmitVariableLengthValueChange) */
|
||||||
|
|
||||||
FST_VT_SV_BIT = 22,
|
FST_VT_SV_BIT = 22,
|
||||||
FST_VT_SV_LOGIC = 23,
|
FST_VT_SV_LOGIC = 23,
|
||||||
FST_VT_SV_INT = 24, /* declare as size = 32 */
|
FST_VT_SV_INT = 24, /* declare as size = 32 */
|
||||||
FST_VT_SV_SHORTINT = 25, /* declare as size = 16 */
|
FST_VT_SV_SHORTINT = 25, /* declare as size = 16 */
|
||||||
FST_VT_SV_LONGINT = 26, /* declare as size = 64 */
|
FST_VT_SV_LONGINT = 26, /* declare as size = 64 */
|
||||||
FST_VT_SV_BYTE = 27, /* declare as size = 8 */
|
FST_VT_SV_BYTE = 27, /* declare as size = 8 */
|
||||||
FST_VT_SV_ENUM = 28, /* declare as appropriate type range */
|
FST_VT_SV_ENUM = 28, /* declare as appropriate type range */
|
||||||
FST_VT_SV_SHORTREAL = 29, /* declare and emit same as FST_VT_VCD_REAL (needs to be emitted as double, not a float) */
|
FST_VT_SV_SHORTREAL = 29, /* declare and emit same as FST_VT_VCD_REAL (needs to be emitted as double, not a float) */
|
||||||
|
|
||||||
FST_VT_MAX = 29 /* end of vartypes */
|
FST_VT_MAX = 29 /* end of vartypes */
|
||||||
};
|
};
|
||||||
|
|
||||||
enum fstVarDir {
|
enum fstVarDir {
|
||||||
|
|
@ -174,7 +174,7 @@ enum fstHierType {
|
||||||
enum fstAttrType {
|
enum fstAttrType {
|
||||||
FST_AT_MIN = 0,
|
FST_AT_MIN = 0,
|
||||||
|
|
||||||
FST_AT_MISC = 0, /* self-contained: does not need matching FST_HT_ATTREND */
|
FST_AT_MISC = 0, /* self-contained: does not need matching FST_HT_ATTREND */
|
||||||
FST_AT_ARRAY = 1,
|
FST_AT_ARRAY = 1,
|
||||||
FST_AT_ENUM = 2,
|
FST_AT_ENUM = 2,
|
||||||
FST_AT_PACK = 3,
|
FST_AT_PACK = 3,
|
||||||
|
|
@ -185,9 +185,9 @@ enum fstAttrType {
|
||||||
enum fstMiscType {
|
enum fstMiscType {
|
||||||
FST_MT_MIN = 0,
|
FST_MT_MIN = 0,
|
||||||
|
|
||||||
FST_MT_COMMENT = 0, /* use fstWriterSetComment() to emit */
|
FST_MT_COMMENT = 0, /* use fstWriterSetComment() to emit */
|
||||||
FST_MT_ENVVAR = 1, /* use fstWriterSetEnvVar() to emit */
|
FST_MT_ENVVAR = 1, /* use fstWriterSetEnvVar() to emit */
|
||||||
FST_MT_SUPVAR = 2, /* use fstWriterCreateVar2() to emit */
|
FST_MT_SUPVAR = 2, /* use fstWriterCreateVar2() to emit */
|
||||||
FST_MT_PATHNAME = 3, /* reserved for fstWriterSetSourceStem() string -> number management */
|
FST_MT_PATHNAME = 3, /* reserved for fstWriterSetSourceStem() string -> number management */
|
||||||
FST_MT_SOURCESTEM = 4, /* use fstWriterSetSourceStem() to emit */
|
FST_MT_SOURCESTEM = 4, /* use fstWriterSetSourceStem() to emit */
|
||||||
FST_MT_SOURCEISTEM = 5, /* use fstWriterSetSourceInstantiationStem() to emit */
|
FST_MT_SOURCEISTEM = 5, /* use fstWriterSetSourceInstantiationStem() to emit */
|
||||||
|
|
@ -274,7 +274,7 @@ enum fstSupplementalDataType {
|
||||||
FST_SDT_MAX = 16,
|
FST_SDT_MAX = 16,
|
||||||
|
|
||||||
FST_SDT_SVT_SHIFT_COUNT = 10, /* FST_SVT_* is ORed in by fstWriterCreateVar2() to the left after shifting FST_SDT_SVT_SHIFT_COUNT */
|
FST_SDT_SVT_SHIFT_COUNT = 10, /* FST_SVT_* is ORed in by fstWriterCreateVar2() to the left after shifting FST_SDT_SVT_SHIFT_COUNT */
|
||||||
FST_SDT_ABS_MAX = ((1<<(FST_SDT_SVT_SHIFT_COUNT))-1)
|
FST_SDT_ABS_MAX = ((1<<(FST_SDT_SVT_SHIFT_COUNT))-1)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -283,141 +283,141 @@ struct fstHier
|
||||||
unsigned char htyp;
|
unsigned char htyp;
|
||||||
|
|
||||||
union {
|
union {
|
||||||
/* if htyp == FST_HT_SCOPE */
|
/* if htyp == FST_HT_SCOPE */
|
||||||
struct fstHierScope {
|
struct fstHierScope {
|
||||||
unsigned char typ; /* FST_ST_MIN ... FST_ST_MAX */
|
unsigned char typ; /* FST_ST_MIN ... FST_ST_MAX */
|
||||||
const char *name;
|
const char *name;
|
||||||
const char *component;
|
const char *component;
|
||||||
uint32_t name_length; /* strlen(u.scope.name) */
|
uint32_t name_length; /* strlen(u.scope.name) */
|
||||||
uint32_t component_length; /* strlen(u.scope.component) */
|
uint32_t component_length; /* strlen(u.scope.component) */
|
||||||
} scope;
|
} scope;
|
||||||
|
|
||||||
/* if htyp == FST_HT_VAR */
|
/* if htyp == FST_HT_VAR */
|
||||||
struct fstHierVar {
|
struct fstHierVar {
|
||||||
unsigned char typ; /* FST_VT_MIN ... FST_VT_MAX */
|
unsigned char typ; /* FST_VT_MIN ... FST_VT_MAX */
|
||||||
unsigned char direction; /* FST_VD_MIN ... FST_VD_MAX */
|
unsigned char direction; /* FST_VD_MIN ... FST_VD_MAX */
|
||||||
unsigned char svt_workspace; /* zeroed out by FST reader, for client code use */
|
unsigned char svt_workspace; /* zeroed out by FST reader, for client code use */
|
||||||
unsigned char sdt_workspace; /* zeroed out by FST reader, for client code use */
|
unsigned char sdt_workspace; /* zeroed out by FST reader, for client code use */
|
||||||
unsigned int sxt_workspace; /* zeroed out by FST reader, for client code use */
|
unsigned int sxt_workspace; /* zeroed out by FST reader, for client code use */
|
||||||
const char *name;
|
const char *name;
|
||||||
uint32_t length;
|
uint32_t length;
|
||||||
fstHandle handle;
|
fstHandle handle;
|
||||||
uint32_t name_length; /* strlen(u.var.name) */
|
uint32_t name_length; /* strlen(u.var.name) */
|
||||||
unsigned is_alias : 1;
|
unsigned is_alias : 1;
|
||||||
} var;
|
} var;
|
||||||
|
|
||||||
/* if htyp == FST_HT_ATTRBEGIN */
|
/* if htyp == FST_HT_ATTRBEGIN */
|
||||||
struct fstHierAttr {
|
struct fstHierAttr {
|
||||||
unsigned char typ; /* FST_AT_MIN ... FST_AT_MAX */
|
unsigned char typ; /* FST_AT_MIN ... FST_AT_MAX */
|
||||||
unsigned char subtype; /* from fstMiscType, fstArrayType, fstEnumValueType, fstPackType */
|
unsigned char subtype; /* from fstMiscType, fstArrayType, fstEnumValueType, fstPackType */
|
||||||
const char *name;
|
const char *name;
|
||||||
uint64_t arg; /* number of array elements, struct members, or some other payload (possibly ignored) */
|
uint64_t arg; /* number of array elements, struct members, or some other payload (possibly ignored) */
|
||||||
uint64_t arg_from_name; /* for when name is overloaded as a variable-length integer (FST_AT_MISC + FST_MT_SOURCESTEM) */
|
uint64_t arg_from_name; /* for when name is overloaded as a variable-length integer (FST_AT_MISC + FST_MT_SOURCESTEM) */
|
||||||
uint32_t name_length; /* strlen(u.attr.name) */
|
uint32_t name_length; /* strlen(u.attr.name) */
|
||||||
} attr;
|
} attr;
|
||||||
} u;
|
} u;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* writer functions
|
* writer functions
|
||||||
*/
|
*/
|
||||||
void fstWriterClose(void *ctx);
|
void fstWriterClose(void *ctx);
|
||||||
void * fstWriterCreate(const char *nam, int use_compressed_hier);
|
void * fstWriterCreate(const char *nam, int use_compressed_hier);
|
||||||
/* used for Verilog/SV */
|
/* used for Verilog/SV */
|
||||||
fstHandle fstWriterCreateVar(void *ctx, enum fstVarType vt, enum fstVarDir vd,
|
fstHandle fstWriterCreateVar(void *ctx, enum fstVarType vt, enum fstVarDir vd,
|
||||||
uint32_t len, const char *nam, fstHandle aliasHandle);
|
uint32_t len, const char *nam, fstHandle aliasHandle);
|
||||||
/* future expansion for VHDL and other languages. The variable type, data type, etc map onto
|
/* future expansion for VHDL and other languages. The variable type, data type, etc map onto
|
||||||
the current Verilog/SV one. The "type" string is optional for a more verbose or custom description */
|
the current Verilog/SV one. The "type" string is optional for a more verbose or custom description */
|
||||||
fstHandle fstWriterCreateVar2(void *ctx, enum fstVarType vt, enum fstVarDir vd,
|
fstHandle fstWriterCreateVar2(void *ctx, enum fstVarType vt, enum fstVarDir vd,
|
||||||
uint32_t len, const char *nam, fstHandle aliasHandle,
|
uint32_t len, const char *nam, fstHandle aliasHandle,
|
||||||
const char *type, enum fstSupplementalVarType svt, enum fstSupplementalDataType sdt);
|
const char *type, enum fstSupplementalVarType svt, enum fstSupplementalDataType sdt);
|
||||||
void fstWriterEmitValueChange(void *ctx, fstHandle handle, const void *val);
|
void fstWriterEmitValueChange(void *ctx, fstHandle handle, const void *val);
|
||||||
void fstWriterEmitVariableLengthValueChange(void *ctx, fstHandle handle, const void *val, uint32_t len);
|
void fstWriterEmitVariableLengthValueChange(void *ctx, fstHandle handle, const void *val, uint32_t len);
|
||||||
void fstWriterEmitDumpActive(void *ctx, int enable);
|
void fstWriterEmitDumpActive(void *ctx, int enable);
|
||||||
void fstWriterEmitTimeChange(void *ctx, uint64_t tim);
|
void fstWriterEmitTimeChange(void *ctx, uint64_t tim);
|
||||||
void fstWriterFlushContext(void *ctx);
|
void fstWriterFlushContext(void *ctx);
|
||||||
int fstWriterGetDumpSizeLimitReached(void *ctx);
|
int fstWriterGetDumpSizeLimitReached(void *ctx);
|
||||||
int fstWriterGetFseekFailed(void *ctx);
|
int fstWriterGetFseekFailed(void *ctx);
|
||||||
void fstWriterSetAttrBegin(void *ctx, enum fstAttrType attrtype, int subtype,
|
void fstWriterSetAttrBegin(void *ctx, enum fstAttrType attrtype, int subtype,
|
||||||
const char *attrname, uint64_t arg);
|
const char *attrname, uint64_t arg);
|
||||||
void fstWriterSetAttrEnd(void *ctx);
|
void fstWriterSetAttrEnd(void *ctx);
|
||||||
void fstWriterSetComment(void *ctx, const char *comm);
|
void fstWriterSetComment(void *ctx, const char *comm);
|
||||||
void fstWriterSetDate(void *ctx, const char *dat);
|
void fstWriterSetDate(void *ctx, const char *dat);
|
||||||
void fstWriterSetDumpSizeLimit(void *ctx, uint64_t numbytes);
|
void fstWriterSetDumpSizeLimit(void *ctx, uint64_t numbytes);
|
||||||
void fstWriterSetEnvVar(void *ctx, const char *envvar);
|
void fstWriterSetEnvVar(void *ctx, const char *envvar);
|
||||||
void fstWriterSetFileType(void *ctx, enum fstFileType filetype);
|
void fstWriterSetFileType(void *ctx, enum fstFileType filetype);
|
||||||
void fstWriterSetPackType(void *ctx, enum fstWriterPackType typ);
|
void fstWriterSetPackType(void *ctx, enum fstWriterPackType typ);
|
||||||
void fstWriterSetParallelMode(void *ctx, int enable);
|
void fstWriterSetParallelMode(void *ctx, int enable);
|
||||||
void fstWriterSetRepackOnClose(void *ctx, int enable); /* type = 0 (none), 1 (libz) */
|
void fstWriterSetRepackOnClose(void *ctx, int enable); /* type = 0 (none), 1 (libz) */
|
||||||
void fstWriterSetScope(void *ctx, enum fstScopeType scopetype,
|
void fstWriterSetScope(void *ctx, enum fstScopeType scopetype,
|
||||||
const char *scopename, const char *scopecomp);
|
const char *scopename, const char *scopecomp);
|
||||||
void fstWriterSetSourceInstantiationStem(void *ctx, const char *path, unsigned int line, unsigned int use_realpath);
|
void fstWriterSetSourceInstantiationStem(void *ctx, const char *path, unsigned int line, unsigned int use_realpath);
|
||||||
void fstWriterSetSourceStem(void *ctx, const char *path, unsigned int line, unsigned int use_realpath);
|
void fstWriterSetSourceStem(void *ctx, const char *path, unsigned int line, unsigned int use_realpath);
|
||||||
void fstWriterSetTimescale(void *ctx, int ts);
|
void fstWriterSetTimescale(void *ctx, int ts);
|
||||||
void fstWriterSetTimescaleFromString(void *ctx, const char *s);
|
void fstWriterSetTimescaleFromString(void *ctx, const char *s);
|
||||||
void fstWriterSetTimezero(void *ctx, int64_t tim);
|
void fstWriterSetTimezero(void *ctx, int64_t tim);
|
||||||
void fstWriterSetUpscope(void *ctx);
|
void fstWriterSetUpscope(void *ctx);
|
||||||
void fstWriterSetVersion(void *ctx, const char *vers);
|
void fstWriterSetVersion(void *ctx, const char *vers);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* reader functions
|
* reader functions
|
||||||
*/
|
*/
|
||||||
void fstReaderClose(void *ctx);
|
void fstReaderClose(void *ctx);
|
||||||
void fstReaderClrFacProcessMask(void *ctx, fstHandle facidx);
|
void fstReaderClrFacProcessMask(void *ctx, fstHandle facidx);
|
||||||
void fstReaderClrFacProcessMaskAll(void *ctx);
|
void fstReaderClrFacProcessMaskAll(void *ctx);
|
||||||
uint64_t fstReaderGetAliasCount(void *ctx);
|
uint64_t fstReaderGetAliasCount(void *ctx);
|
||||||
const char * fstReaderGetCurrentFlatScope(void *ctx);
|
const char * fstReaderGetCurrentFlatScope(void *ctx);
|
||||||
void * fstReaderGetCurrentScopeUserInfo(void *ctx);
|
void * fstReaderGetCurrentScopeUserInfo(void *ctx);
|
||||||
int fstReaderGetCurrentScopeLen(void *ctx);
|
int fstReaderGetCurrentScopeLen(void *ctx);
|
||||||
const char * fstReaderGetDateString(void *ctx);
|
const char * fstReaderGetDateString(void *ctx);
|
||||||
int fstReaderGetDoubleEndianMatchState(void *ctx);
|
int fstReaderGetDoubleEndianMatchState(void *ctx);
|
||||||
uint64_t fstReaderGetDumpActivityChangeTime(void *ctx, uint32_t idx);
|
uint64_t fstReaderGetDumpActivityChangeTime(void *ctx, uint32_t idx);
|
||||||
unsigned char fstReaderGetDumpActivityChangeValue(void *ctx, uint32_t idx);
|
unsigned char fstReaderGetDumpActivityChangeValue(void *ctx, uint32_t idx);
|
||||||
uint64_t fstReaderGetEndTime(void *ctx);
|
uint64_t fstReaderGetEndTime(void *ctx);
|
||||||
int fstReaderGetFacProcessMask(void *ctx, fstHandle facidx);
|
int fstReaderGetFacProcessMask(void *ctx, fstHandle facidx);
|
||||||
int fstReaderGetFileType(void *ctx);
|
int fstReaderGetFileType(void *ctx);
|
||||||
int fstReaderGetFseekFailed(void *ctx);
|
int fstReaderGetFseekFailed(void *ctx);
|
||||||
fstHandle fstReaderGetMaxHandle(void *ctx);
|
fstHandle fstReaderGetMaxHandle(void *ctx);
|
||||||
uint64_t fstReaderGetMemoryUsedByWriter(void *ctx);
|
uint64_t fstReaderGetMemoryUsedByWriter(void *ctx);
|
||||||
uint32_t fstReaderGetNumberDumpActivityChanges(void *ctx);
|
uint32_t fstReaderGetNumberDumpActivityChanges(void *ctx);
|
||||||
uint64_t fstReaderGetScopeCount(void *ctx);
|
uint64_t fstReaderGetScopeCount(void *ctx);
|
||||||
uint64_t fstReaderGetStartTime(void *ctx);
|
uint64_t fstReaderGetStartTime(void *ctx);
|
||||||
signed char fstReaderGetTimescale(void *ctx);
|
signed char fstReaderGetTimescale(void *ctx);
|
||||||
int64_t fstReaderGetTimezero(void *ctx);
|
int64_t fstReaderGetTimezero(void *ctx);
|
||||||
uint64_t fstReaderGetValueChangeSectionCount(void *ctx);
|
uint64_t fstReaderGetValueChangeSectionCount(void *ctx);
|
||||||
char * fstReaderGetValueFromHandleAtTime(void *ctx, uint64_t tim, fstHandle facidx, char *buf);
|
char * fstReaderGetValueFromHandleAtTime(void *ctx, uint64_t tim, fstHandle facidx, char *buf);
|
||||||
uint64_t fstReaderGetVarCount(void *ctx);
|
uint64_t fstReaderGetVarCount(void *ctx);
|
||||||
const char * fstReaderGetVersionString(void *ctx);
|
const char * fstReaderGetVersionString(void *ctx);
|
||||||
struct fstHier *fstReaderIterateHier(void *ctx);
|
struct fstHier *fstReaderIterateHier(void *ctx);
|
||||||
int fstReaderIterateHierRewind(void *ctx);
|
int fstReaderIterateHierRewind(void *ctx);
|
||||||
int fstReaderIterBlocks(void *ctx,
|
int fstReaderIterBlocks(void *ctx,
|
||||||
void (*value_change_callback)(void *user_callback_data_pointer, uint64_t time, fstHandle facidx, const unsigned char *value),
|
void (*value_change_callback)(void *user_callback_data_pointer, uint64_t time, fstHandle facidx, const unsigned char *value),
|
||||||
void *user_callback_data_pointer, FILE *vcdhandle);
|
void *user_callback_data_pointer, FILE *vcdhandle);
|
||||||
int fstReaderIterBlocks2(void *ctx,
|
int fstReaderIterBlocks2(void *ctx,
|
||||||
void (*value_change_callback)(void *user_callback_data_pointer, uint64_t time, fstHandle facidx, const unsigned char *value),
|
void (*value_change_callback)(void *user_callback_data_pointer, uint64_t time, fstHandle facidx, const unsigned char *value),
|
||||||
void (*value_change_callback_varlen)(void *user_callback_data_pointer, uint64_t time, fstHandle facidx, const unsigned char *value, uint32_t len),
|
void (*value_change_callback_varlen)(void *user_callback_data_pointer, uint64_t time, fstHandle facidx, const unsigned char *value, uint32_t len),
|
||||||
void *user_callback_data_pointer, FILE *vcdhandle);
|
void *user_callback_data_pointer, FILE *vcdhandle);
|
||||||
void fstReaderIterBlocksSetNativeDoublesOnCallback(void *ctx, int enable);
|
void fstReaderIterBlocksSetNativeDoublesOnCallback(void *ctx, int enable);
|
||||||
void * fstReaderOpen(const char *nam);
|
void * fstReaderOpen(const char *nam);
|
||||||
void * fstReaderOpenForUtilitiesOnly(void);
|
void * fstReaderOpenForUtilitiesOnly(void);
|
||||||
const char * fstReaderPopScope(void *ctx);
|
const char * fstReaderPopScope(void *ctx);
|
||||||
int fstReaderProcessHier(void *ctx, FILE *vcdhandle);
|
int fstReaderProcessHier(void *ctx, FILE *vcdhandle);
|
||||||
const char * fstReaderPushScope(void *ctx, const char *nam, void *user_info);
|
const char * fstReaderPushScope(void *ctx, const char *nam, void *user_info);
|
||||||
void fstReaderResetScope(void *ctx);
|
void fstReaderResetScope(void *ctx);
|
||||||
void fstReaderSetFacProcessMask(void *ctx, fstHandle facidx);
|
void fstReaderSetFacProcessMask(void *ctx, fstHandle facidx);
|
||||||
void fstReaderSetFacProcessMaskAll(void *ctx);
|
void fstReaderSetFacProcessMaskAll(void *ctx);
|
||||||
void fstReaderSetLimitTimeRange(void *ctx, uint64_t start_time, uint64_t end_time);
|
void fstReaderSetLimitTimeRange(void *ctx, uint64_t start_time, uint64_t end_time);
|
||||||
void fstReaderSetUnlimitedTimeRange(void *ctx);
|
void fstReaderSetUnlimitedTimeRange(void *ctx);
|
||||||
void fstReaderSetVcdExtensions(void *ctx, int enable);
|
void fstReaderSetVcdExtensions(void *ctx, int enable);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* utility functions
|
* utility functions
|
||||||
*/
|
*/
|
||||||
int fstUtilityBinToEsc(unsigned char *d, unsigned char *s, int len);
|
int fstUtilityBinToEsc(unsigned char *d, unsigned char *s, int len);
|
||||||
int fstUtilityEscToBin(unsigned char *d, unsigned char *s, int len);
|
int fstUtilityEscToBin(unsigned char *d, unsigned char *s, int len);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue