Rev 2482 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2482 | Rev 2775 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | # |
27 | # |
| 28 | 28 | ||
| - | 29 | #include <arch/context_offset.h> |
|
| - | 30 | ||
| 29 | .text |
31 | .text |
| 30 | 32 | ||
| 31 | .global context_save_arch |
33 | .global context_save_arch |
| 32 | .global context_restore_arch |
34 | .global context_restore_arch |
| 33 | 35 | ||
| Line 36... | Line 38... | ||
| 36 | # |
38 | # |
| 37 | # Save CPU context to the context_t variable |
39 | # Save CPU context to the context_t variable |
| 38 | # pointed by the 1st argument. Returns 1 in EAX. |
40 | # pointed by the 1st argument. Returns 1 in EAX. |
| 39 | # |
41 | # |
| 40 | context_save_arch: |
42 | context_save_arch: |
| 41 | movl 0(%esp),%eax # the caller's return %eip |
43 | movl 0(%esp),%eax # save pc value into eax |
| 42 | movl 4(%esp),%edx # address of the context variable to save context to |
44 | movl 4(%esp),%edx # address of the context variable to save context to |
| 43 | 45 | ||
| 44 | movl %esp,0(%edx) # %esp -> ctx->sp |
- | |
| 45 | movl %eax,4(%edx) # %eip -> ctx->pc |
- | |
| 46 | movl %ebx,8(%edx) # %ebx -> ctx->ebx |
- | |
| 47 | movl %esi,12(%edx) # %esi -> ctx->esi |
46 | # save registers to given structure |
| 48 | movl %edi,16(%edx) # %edi -> ctx->edi |
47 | CONTEXT_SAVE_ARCH_CORE %edx %eax |
| 49 | movl %ebp,20(%edx) # %ebp -> ctx->ebp |
- | |
| 50 | 48 | ||
| 51 | xorl %eax,%eax # context_save returns 1 |
49 | xorl %eax,%eax # context_save returns 1 |
| 52 | incl %eax |
50 | incl %eax |
| 53 | ret |
51 | ret |
| 54 | 52 | ||
| Line 58... | Line 56... | ||
| 58 | # Restore CPU context from context_t variable |
56 | # Restore CPU context from context_t variable |
| 59 | # pointed by the 1st argument. Returns 0 in EAX. |
57 | # pointed by the 1st argument. Returns 0 in EAX. |
| 60 | # |
58 | # |
| 61 | context_restore_arch: |
59 | context_restore_arch: |
| 62 | movl 4(%esp),%eax # address of the context variable to restore context from |
60 | movl 4(%esp),%eax # address of the context variable to restore context from |
| 63 | movl 0(%eax),%esp # ctx->sp -> %esp |
- | |
| 64 | movl 4(%eax),%edx # ctx->pc -> %edx |
- | |
| 65 | movl 8(%eax),%ebx # ctx->ebx -> %ebx |
- | |
| 66 | movl 12(%eax),%esi # ctx->esi -> %esi |
- | |
| 67 | movl 16(%eax),%edi # ctx->edi -> %edi |
- | |
| 68 | movl 20(%eax),%ebp # ctx->ebp -> %ebp |
- | |
| 69 | 61 | ||
| - | 62 | # restore registers from given structure |
|
| - | 63 | CONTEXT_RESTORE_ARCH_CORE %eax %edx |
|
| - | 64 | ||
| 70 | movl %edx,0(%esp) # ctx->pc -> saver's return %eip |
65 | movl %edx,0(%esp) # put saved pc on stack |
| 71 | xorl %eax,%eax # context_restore returns 0 |
66 | xorl %eax,%eax # context_restore returns 0 |
| 72 | ret |
67 | ret |