* tm-sparc.h, xm-sparc.h: externs and macros relating to deferred

stores are target dependent and were moved from xm to tm.
This commit is contained in:
John Gilmore
1992-09-19 10:56:01 +00:00
parent 8c0950668f
commit a4afec9ade
3 changed files with 20 additions and 14 deletions

View File

@@ -565,3 +565,18 @@ extern void single_step ();
print_floating (doublereg, builtin_type_double, stdout); \
} \
}
/* Optimization for storing registers to the inferior. The hook
DO_DEFERRED_STORES
actually executes any deferred stores. It is called any time
we are going to proceed the child, or read its registers.
The hook CLEAR_DEFERRED_STORES is called when we want to throw
away the inferior process, e.g. when it dies or we kill it.
FIXME, this does not handle remote debugging cleanly. */
extern int deferred_stores;
#define DO_DEFERRED_STORES \
if (deferred_stores) \
target_store_registers (-2);
#define CLEAR_DEFERRED_STORES \
deferred_stores = 0;