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

Side by Side Diff: src/trusted/service_runtime/arch/sel_ldr_arch.h

Issue 10919162: [MIPS] Implementation of sel_ldr for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Rebase (Saturday morning). Created 8 years, 3 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 2009 The Native Client Authors. All rights reserved. 2 * Copyright 2009 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 /* 7 /*
8 * This file switches to the architecture-specific header and 8 * This file switches to the architecture-specific header and
9 * otherwise has no content. There is no need for an inclusion guard, 9 * otherwise has no content. There is no need for an inclusion guard,
10 * but we include one to conform to the style rules. 10 * but we include one to conform to the style rules.
11 */ 11 */
12 12
13 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_ARCH_SEL_LDR_ARCH_H_ 13 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_ARCH_SEL_LDR_ARCH_H_
14 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_ARCH_SEL_LDR_ARCH_H_ 14 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_ARCH_SEL_LDR_ARCH_H_
15 15
16 #include "native_client/src/include/nacl_base.h" 16 #include "native_client/src/include/nacl_base.h"
17 17
18 #if NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86 18 #if NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86
19 #include "native_client/src/trusted/service_runtime/arch/x86/sel_ldr_x86.h" 19 #include "native_client/src/trusted/service_runtime/arch/x86/sel_ldr_x86.h"
20 #elif NACL_ARCH(NACL_BUILD_ARCH) == NACL_arm 20 #elif NACL_ARCH(NACL_BUILD_ARCH) == NACL_arm
21 #include "native_client/src/trusted/service_runtime/arch/arm/sel_ldr_arm.h" 21 #include "native_client/src/trusted/service_runtime/arch/arm/sel_ldr_arm.h"
22 #elif NACL_ARCH(NACL_BUILD_ARCH) == NACL_mips
23 #include "native_client/src/trusted/service_runtime/arch/mips/sel_ldr_mips.h"
22 #else 24 #else
23 #error Unknown platform! 25 #error Unknown platform!
24 #endif 26 #endif
25 27
26 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_ARCH_SEL_LDR_ARCH_H_ */ 28 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_ARCH_SEL_LDR_ARCH_H_ */
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/arch/mips/tramp_mips.S ('k') | src/trusted/service_runtime/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698