Symbol: staterecord
sys/arch/ia64/unwind/stackframe.c
1102
updateregs(struct unwind_frame *uwf, struct staterecord *srec,
sys/arch/ia64/unwind/stackframe.c
1110
int statecount = sizeof(struct staterecord)/sizeof(struct regstate);
sys/arch/ia64/unwind/stackframe.c
1252
struct staterecord *srec;
sys/arch/ia64/unwind/stackframe.c
629
struct staterecord recordstack[MAXSTATERECS];
sys/arch/ia64/unwind/stackframe.c
630
struct staterecord recordstackcopy[MAXSTATERECS];
sys/arch/ia64/unwind/stackframe.c
631
struct staterecord current_state;
sys/arch/ia64/unwind/stackframe.c
632
struct staterecord *unwind_rsp, *unwind_rscp;
sys/arch/ia64/unwind/stackframe.c
643
initrecord(struct staterecord *target)
sys/arch/ia64/unwind/stackframe.c
667
modifyrecord(struct staterecord *srec, struct recordchain *rchain,
sys/arch/ia64/unwind/stackframe.c
868
dump_staterecord(struct staterecord *srec)
sys/arch/ia64/unwind/stackframe.c
925
pushrecord(struct staterecord *srec)
sys/arch/ia64/unwind/stackframe.c
932
memcpy(unwind_rsp, srec, sizeof(struct staterecord));
sys/arch/ia64/unwind/stackframe.c
941
poprecord(struct staterecord *srec, int n)
sys/arch/ia64/unwind/stackframe.c
948
memcpy(srec, unwind_rsp, sizeof(struct staterecord));
sys/arch/ia64/unwind/stackframe.c
950
memset(unwind_rsp, 0, sizeof(struct staterecord) * n);
sys/arch/ia64/unwind/stackframe.c
962
(unwind_rsp - recordstack) * sizeof(struct staterecord));
sys/arch/ia64/unwind/stackframe.c
973
(unwind_rscp - recordstackcopy) * sizeof(struct staterecord));
sys/arch/ia64/unwind/stackframe.c
988
struct staterecord *
sys/arch/ia64/unwind/stackframe.h
103
void updateregs(struct unwind_frame *uwf, struct staterecord *, uint64_t);
sys/arch/ia64/unwind/stackframe.h
106
struct staterecord *buildrecordstack(struct recordchain *, uint64_t);
sys/arch/ia64/unwind/stackframe.h
93
void initrecord(struct staterecord *);
sys/arch/ia64/unwind/stackframe.h
94
void modifyrecord(struct staterecord *, struct recordchain *, uint64_t);
sys/arch/ia64/unwind/stackframe.h
95
void pushrecord(struct staterecord *);
sys/arch/ia64/unwind/stackframe.h
96
void poprecord(struct staterecord *, int);
sys/arch/ia64/unwind/stackframe.h
97
void dump_staterecord(struct staterecord *);