Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/trusted/service_runtime/arch/arm/sel_rt.c

Issue 10806080: ARM: Rename the "new_eip" field in NaClThreadContext to "new_prog_ctr" (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebase + copyright Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/arch/arm/sel_rt.h ('k') | src/trusted/service_runtime/arch/x86_32/nacl_switch_32.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698