| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* | 7 /* |
| 8 * NaCl Secure Runtime | 8 * NaCl Secure Runtime |
| 9 */ | 9 */ |
| 10 #include "native_client/src/include/portability_string.h" | 10 #include "native_client/src/include/portability_string.h" |
| 11 #include "native_client/src/trusted/service_runtime/nacl_signal.h" | 11 #include "native_client/src/trusted/service_runtime/nacl_signal.h" |
| 12 #include "native_client/src/trusted/service_runtime/sel_ldr.h" | 12 #include "native_client/src/trusted/service_runtime/sel_ldr.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 sig_ctx->r5 = th_ctx->r5; | 65 sig_ctx->r5 = th_ctx->r5; |
| 66 sig_ctx->r6 = th_ctx->r6; | 66 sig_ctx->r6 = th_ctx->r6; |
| 67 sig_ctx->r7 = th_ctx->r7; | 67 sig_ctx->r7 = th_ctx->r7; |
| 68 sig_ctx->r8 = th_ctx->r8; | 68 sig_ctx->r8 = th_ctx->r8; |
| 69 sig_ctx->r9 = th_ctx->r9; | 69 sig_ctx->r9 = th_ctx->r9; |
| 70 sig_ctx->r10 = th_ctx->r10; | 70 sig_ctx->r10 = th_ctx->r10; |
| 71 sig_ctx->r11 = th_ctx->fp; | 71 sig_ctx->r11 = th_ctx->fp; |
| 72 sig_ctx->r12 = 0; | 72 sig_ctx->r12 = 0; |
| 73 sig_ctx->stack_ptr = th_ctx->stack_ptr; | 73 sig_ctx->stack_ptr = th_ctx->stack_ptr; |
| 74 sig_ctx->lr = 0; | 74 sig_ctx->lr = 0; |
| 75 sig_ctx->prog_ctr = th_ctx->new_eip; | 75 sig_ctx->prog_ctr = th_ctx->new_prog_ctr; |
| 76 } | 76 } |
| OLD | NEW |