Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9a110311
Commit
9a110311
authored
Sep 18, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Sep 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add ARM support.
parent
171c9a53
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
2 deletions
+84
-2
Makefile.in
dlls/dbghelp/Makefile.in
+1
-0
cpu_arm.c
dlls/dbghelp/cpu_arm.c
+79
-0
dbghelp.c
dlls/dbghelp/dbghelp.c
+4
-2
No files found.
dlls/dbghelp/Makefile.in
View file @
9a110311
...
...
@@ -6,6 +6,7 @@ DELAYIMPORTS = version
C_SRCS
=
\
coff.c
\
cpu_arm.c
\
cpu_i386.c
\
cpu_ppc.c
\
cpu_sparc.c
\
...
...
dlls/dbghelp/cpu_arm.c
0 → 100644
View file @
9a110311
/*
* File cpu_arm.c
*
* Copyright (C) 2009-2009, Eric Pouech
* Copyright (C) 2010, André Hentschel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <assert.h>
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "dbghelp_private.h"
#include "winternl.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dbghelp
);
static
unsigned
arm_get_addr
(
HANDLE
hThread
,
const
CONTEXT
*
ctx
,
enum
cpu_addr
ca
,
ADDRESS64
*
addr
)
{
switch
(
ca
)
{
case
cpu_addr_pc
:
case
cpu_addr_stack
:
case
cpu_addr_frame
:
default:
FIXME
(
"not done for ARM
\n
"
);
}
return
FALSE
;
}
static
BOOL
arm_stack_walk
(
struct
cpu_stack_walk
*
csw
,
LPSTACKFRAME64
frame
,
CONTEXT
*
context
)
{
FIXME
(
"not done for ARM
\n
"
);
return
FALSE
;
}
static
unsigned
arm_map_dwarf_register
(
unsigned
regno
)
{
FIXME
(
"not done for ARM
\n
"
);
return
0
;
}
static
void
*
arm_fetch_context_reg
(
CONTEXT
*
ctx
,
unsigned
regno
,
unsigned
*
size
)
{
FIXME
(
"not done for ARM
\n
"
);
return
NULL
;
}
static
const
char
*
arm_fetch_regname
(
unsigned
regno
)
{
FIXME
(
"Unknown register %x
\n
"
,
regno
);
return
NULL
;
}
struct
cpu
cpu_arm
=
{
IMAGE_FILE_MACHINE_ARM
,
4
,
arm_get_addr
,
arm_stack_walk
,
NULL
,
arm_map_dwarf_register
,
arm_fetch_context_reg
,
arm_fetch_regname
,
};
dlls/dbghelp/dbghelp.c
View file @
9a110311
...
...
@@ -151,9 +151,9 @@ const char* wine_dbgstr_addr(const ADDRESS64* addr)
}
}
extern
struct
cpu
cpu_i386
,
cpu_x86_64
,
cpu_ppc
,
cpu_sparc
;
extern
struct
cpu
cpu_i386
,
cpu_x86_64
,
cpu_ppc
,
cpu_sparc
,
cpu_arm
;
static
struct
cpu
*
dbghelp_cpus
[]
=
{
&
cpu_i386
,
&
cpu_x86_64
,
&
cpu_ppc
,
&
cpu_sparc
,
NULL
};
static
struct
cpu
*
dbghelp_cpus
[]
=
{
&
cpu_i386
,
&
cpu_x86_64
,
&
cpu_ppc
,
&
cpu_sparc
,
&
cpu_arm
,
NULL
};
struct
cpu
*
dbghelp_current_cpu
=
#if defined(__i386__)
&
cpu_i386
...
...
@@ -163,6 +163,8 @@ struct cpu* dbghelp_current_cpu =
&
cpu_ppc
#elif defined(__sparc__)
&
cpu_sparc
#elif defined(__arm__)
&
cpu_arm
#else
#error define support for your CPU
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment