home *** CD-ROM | disk | FTP | other *** search
- ;*
- ;***************************************************************************
- ;* *
- ;* OVSTACK.ASM: Access Routines for Overlay Manager Reload Stack *
- ;* Copyright (C) 1986 by Phoenix Software Associates Ltd. *
- ;* *
- ;***************************************************************************
- ;*
- ;*
- ;* The RELOAD & TRACK commands request PLINK86 to include an overlay
- ;* manager capable of vectoring returns from overlays, as well as the usual
- ;* calls to overlays. In order to trap returns, the subroutine's return
- ;* address is copied to an internal stack along with the current overlay
- ;* number. The return address is replaced with the address of an overlay
- ;* manager subroutine.
- ;*
- ;* Any stack manipulations should be done with care: in particular,
- ;* setjmp/longjmp in C bypass normal stack discipline. To keep the
- ;* internal overlay stack consistent with the application stack, call
- ;* $OVSAVE() just before calling setjmp(), and $OVRESTORE() just before
- ;* calling longjmp(). Make sure that your link file includes a command
- ;* to suppress vectors for $OVSAVE & setjmp, ie "never $OVSAVE, setjmp".
- ;* Also, note that $OVRESTORE loads overlays, possibly smashing the currently
- ;* executing overlay. Always call $OVRESTORE from your root. See the sample
- ;* C implementation in the read.me notes.
- ;* Some C implementations allow the application to mark several
- ;* stack locations to return to; others allow only one. These routines
- ;* support a single location: feel free to customize it if you need that
- ;* complexity.
- ;*
- ;*
-
- name OVSTACK
- PL148 equ 0
- CACHING equ 0
- include ovtb.h
-
- OVcode segment para public 'OVLOADER'
- extrn $LOAD$: far
- extrn $$getovnum: near ; procedures available in reloading versions
- extrn $$Normalize: near ; of the overlay loader: these will not
- ; appear on your map.
- public $OVSAVE
- public $OVRESTORE
- OVcode ends
-
-
- OVdata segment para public 'OVLOADER'
- assume ds: OVdata
-
- extrn $OVRSEG$: word
- extrn $OVROFF$: word
- extrn $OVRLEV$: word
-
- $$rssegsaved dw (?)
- $$rsoffsaved dw (?)
- $$rslevsaved dw (?)
- $$ovnumsaved dw (?) ; saved ov number for reloading
- OVdata ends
-
-
- OVcode segment para public 'OVLOADER'
- assume cs: OVcode, ds: OVdata
-
- ; ovsave needs to save the ov number of the calling routine.
- ; we'll use the return address on the stack for this. Don't vector!
- ;
- $OVSAVE proc far
- push bp
- mov bp, sp ; use bp to access ret addr
- push ES
- push DS
- push AX
- push BX
- mov AX, $OVTB$
- mov ES, AX
- mov AX, OVdata
- mov DS, AX
- mov AX, $OVRSEG$
- mov $$rssegsaved, AX
- mov AX, $OVROFF$
- mov $$rsoffsaved, AX
- mov AX, $OVRLEV$
- mov $$rslevsaved, AX
- mov BX, [bp+2] ; return offset
- mov AX, [bp+4] ; paragraph
- call $$Normalize ; convert to canonic segment
- call $$getovnum ; save current overlay number for
- ; later reload by ovrestore
- mov $$ovnumsaved, ax
- pop BX
- pop AX
- pop DS
- pop ES
- pop bp
- ret
- $OVSAVE endp
-
- $OVRESTORE proc far
- push DS
- push AX
- mov AX, OVdata
- mov DS, AX
- mov AX, $$rssegsaved
- mov $OVRSEG$, AX
- mov AX, $$rsoffsaved
- mov $OVROFF$, AX
- mov AX, $$rslevsaved
- mov $OVRLEV$, AX
- mov cx, $$ovnumsaved ; reload saved overlay context
- call $LOAD$
- pop AX
- pop DS
- ret
- $OVRESTORE endp
-
- OVcode ends
-
- end
-