mirror of
https://github.com/open-simh/simh.git
synced 2026-05-03 06:39:03 +00:00
VAX: Properly inline memory reference functions for performance. Fix #169
This commit is contained in:
committed by
Leo Broukhis
parent
bd50637b18
commit
8d11de76c1
@@ -397,7 +397,7 @@ t_stat cpu_set_idle (UNIT *uptr, int32 val, char *cptr, void *desc);
|
||||
t_stat cpu_show_idle (FILE *st, UNIT *uptr, int32 val, void *desc);
|
||||
char *cpu_description (DEVICE *dptr);
|
||||
int32 cpu_get_vsw (int32 sw);
|
||||
SIM_INLINE int32 get_istr (int32 lnt, int32 acc);
|
||||
static SIM_INLINE int32 get_istr (int32 lnt, int32 acc);
|
||||
int32 ReadOcta (int32 va, int32 *opnd, int32 j, int32 acc);
|
||||
t_bool cpu_show_opnd (FILE *st, InstHistory *h, int32 line);
|
||||
t_stat cpu_idle_svc (UNIT *uptr);
|
||||
@@ -3133,7 +3133,7 @@ for ( ;; ) {
|
||||
so any translation errors are real.
|
||||
*/
|
||||
|
||||
SIM_INLINE int32 get_istr (int32 lnt, int32 acc)
|
||||
static SIM_INLINE int32 get_istr (int32 lnt, int32 acc)
|
||||
{
|
||||
int32 bo = PC & 3;
|
||||
int32 sc, val, t;
|
||||
|
||||
Reference in New Issue
Block a user