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

Unified Diff: src/trusted/service_runtime/arch/mips/nacl_signal_mips.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 side-by-side diff with in-line comments
Download patch
Index: src/trusted/service_runtime/arch/mips/nacl_signal_mips.h
diff --git a/src/trusted/service_runtime/arch/mips/nacl_signal_mips.h b/src/trusted/service_runtime/arch/mips/nacl_signal_mips.h
new file mode 100644
index 0000000000000000000000000000000000000000..50784cf246093a7b49edff7a51685634e06b03e4
--- /dev/null
+++ b/src/trusted/service_runtime/arch/mips/nacl_signal_mips.h
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2012 The Native Client Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can
+ * be found in the LICENSE file.
+ */
+
+/*
+ * NaCl Signal Context
+ */
+
+#ifndef __NATIVE_CLIENT_SERVICE_RUNTIME_ARCH_MIPS_NACL_SIGNAL_MIPS_H__
+#define __NATIVE_CLIENT_SERVICE_RUNTIME_ARCH_MIPS_NACL_SIGNAL_MIPS_H__ 1
+
+#include "native_client/src/include/portability.h"
+
+/*
+ * Architecture specific context object. Register order matches that
+ * found in src/trusted/gdb_rsp/abi.cc, which allows us to use an
+ * abi context (GDB ordered context), and a signal context interchangably.
+ * In addition, we use a common names for the stack and program counter to
+ * allow functions which use them to avoid conditional compilation.
+ */
+struct NaClSignalContext {
+ uint32_t zero;
+ uint32_t at;
+ uint32_t v0;
+ uint32_t v1;
+ uint32_t a0;
+ uint32_t a1;
+ uint32_t a2;
+ uint32_t a3;
+ uint32_t t0;
+ uint32_t t1;
+ uint32_t t2;
+ uint32_t t3;
+ uint32_t t4;
+ uint32_t t5;
+ uint32_t t6;
+ uint32_t t7;
+ uint32_t s0;
+ uint32_t s1;
+ uint32_t s2;
+ uint32_t s3;
+ uint32_t s4;
+ uint32_t s5;
+ uint32_t s6;
+ uint32_t s7;
+ uint32_t t8;
+ uint32_t t9;
+ uint32_t k0;
+ uint32_t k1;
+ uint32_t global_ptr;
+ uint32_t stack_ptr;
+ uint32_t frame_ptr;
+ uint32_t return_addr;
+ uint32_t prog_ctr;
+};
+
+
+#endif /* __NATIVE_CLIENT_SERVICE_RUNTIME_ARCH_MIPS_NACL_SIGNAL_MIPS_H__ */
« no previous file with comments | « src/trusted/service_runtime/arch/mips/nacl_app.c ('k') | src/trusted/service_runtime/arch/mips/nacl_switch.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698