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

Side by Side Diff: src/trusted/service_runtime/arch/mips/nacl_syscall.S

Issue 10978045: [MIPS] Use break instruction as NACL_HALT for MIPS. (Closed)
Patch Set: Created 8 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The Native Client Authors. All rights reserved. 2 * Copyright 2012 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can 3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file. 4 * be found in the LICENSE file.
5 */ 5 */
6 6
7 #include "native_client/src/trusted/service_runtime/arch/mips/sel_rt.h" 7 #include "native_client/src/trusted/service_runtime/arch/mips/sel_rt.h"
8 #include "native_client/src/trusted/service_runtime/nacl_config.h" 8 #include "native_client/src/trusted/service_runtime/nacl_config.h"
9 9
10 .text 10 .text
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 jr $t9 118 jr $t9
119 nop 119 nop
120 120
121 /* NOTREACHED */ 121 /* NOTREACHED */
122 122
123 /* 123 /*
124 * If the thread returns, which must not happen, it will be halted 124 * If the thread returns, which must not happen, it will be halted
125 * by the following instruction 125 * by the following instruction
126 */ 126 */
127 127
128 jr $0 /*NACL_HALT*/ 128 NACL_HALT
129 129
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698