summaryrefslogtreecommitdiffstats
path: root/debuggerd/x86/x86_utility.h
diff options
context:
space:
mode:
authorBruce Beare <bruce.j.beare@intel.com>2010-10-13 16:11:15 -0700
committerBruce Beare <bruce.j.beare@intel.com>2010-11-29 11:28:11 -0800
commit6cc492308712613cd23bee9240b1757428841a2f (patch)
treef56f88008f920abb91942a1045625a9e346227b5 /debuggerd/x86/x86_utility.h
parent849249064cae9c1bb23b0204b5d35b832567801e (diff)
downloadsystem_core-6cc492308712613cd23bee9240b1757428841a2f.zip
system_core-6cc492308712613cd23bee9240b1757428841a2f.tar.gz
system_core-6cc492308712613cd23bee9240b1757428841a2f.tar.bz2
debuggerd: IA version
Change-Id: I0c0d9c2d7e476b8d117aaf505a9480a47c0b5c05 Signed-off-by: Lei Li <lei.l.li@intel.com> Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
Diffstat (limited to 'debuggerd/x86/x86_utility.h')
-rw-r--r--debuggerd/x86/x86_utility.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/debuggerd/x86/x86_utility.h b/debuggerd/x86/x86_utility.h
new file mode 100644
index 0000000..ac6a885
--- /dev/null
+++ b/debuggerd/x86/x86_utility.h
@@ -0,0 +1,40 @@
+/*
+**
+** Copyright 2006, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+#define STACK_DEPTH 8
+#define STACK_FRAME_DEPTH 64
+
+typedef struct pt_regs_x86 {
+ long ebx;
+ long ecx;
+ long edx;
+ long esi;
+ long edi;
+ long ebp;
+ long eax;
+ int xds;
+ int xes;
+ int xfs;
+ int xgs;
+ long orig_eax;
+ long eip;
+ int xcs;
+ long eflags;
+ long esp;
+ int xss;
+}pt_regs_x86;
+