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
87bfb306
Commit
87bfb306
authored
May 07, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
May 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr80: Add __AdjustPointer implementation.
parent
6c4b075d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
4 deletions
+43
-4
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcr90.c
dlls/msvcr90/tests/msvcr90.c
+34
-0
cpp.c
dlls/msvcrt/cpp.c
+5
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
87bfb306
...
...
@@ -538,7 +538,7 @@
@ stub -arch=win64 _SetThrowImageBase
@ cdecl _Strftime(str long str ptr ptr)
@ cdecl _XcptFilter(long ptr)
@
stub __AdjustPointer
@
cdecl __AdjustPointer(ptr ptr)
@ stub __BuildCatchObject
@ stub __BuildCatchObjectHelper
@ stdcall -arch=x86_64 __C_specific_handler(ptr long ptr ptr) ntdll.__C_specific_handler
...
...
dlls/msvcr110/msvcr110.spec
View file @
87bfb306
...
...
@@ -869,7 +869,7 @@
@ stub _W_Gettnames
@ stub _Wcsftime
@ cdecl _XcptFilter(long ptr)
@
stub __AdjustPointer
@
cdecl __AdjustPointer(ptr ptr)
@ stub __BuildCatchObject
@ stub __BuildCatchObjectHelper
@ stdcall -arch=x86_64 __C_specific_handler(ptr long ptr ptr) ntdll.__C_specific_handler
...
...
dlls/msvcr80/msvcr80.spec
View file @
87bfb306
...
...
@@ -172,7 +172,7 @@
@ stub -arch=win64 _SetThrowImageBase
@ cdecl _Strftime(str long str ptr ptr)
@ cdecl _XcptFilter(long ptr)
@
stub __AdjustPointer
@
cdecl __AdjustPointer(ptr ptr)
@ stub __BuildCatchObject
@ stub __BuildCatchObjectHelper
@ stdcall -arch=x86_64 __C_specific_handler(ptr long ptr ptr) ntdll.__C_specific_handler
...
...
dlls/msvcr90/msvcr90.spec
View file @
87bfb306
...
...
@@ -163,7 +163,7 @@
@ stub _NLG_Return2
@ cdecl _Strftime(str long str ptr ptr)
@ cdecl _XcptFilter(long ptr)
@
stub __AdjustPointer
@
cdecl __AdjustPointer(ptr ptr)
@ stub __BuildCatchObject
@ stub __BuildCatchObjectHelper
@ stdcall -arch=x86_64 __C_specific_handler(ptr long ptr ptr) ntdll.__C_specific_handler
...
...
dlls/msvcr90/tests/msvcr90.c
View file @
87bfb306
...
...
@@ -120,6 +120,7 @@ static int (__cdecl *p_ferror)(FILE*);
static
int
(
__cdecl
*
p_flsbuf
)(
int
,
FILE
*
);
static
unsigned
long
(
__cdecl
*
p_byteswap_ulong
)(
unsigned
long
);
static
void
**
(
__cdecl
*
p__pxcptinfoptrs
)(
void
);
static
void
*
(
__cdecl
*
p__AdjustPointer
)(
void
*
,
const
void
*
);
/* make sure we use the correct errno */
#undef errno
...
...
@@ -377,6 +378,7 @@ static BOOL init(void)
SET
(
p_flsbuf
,
"_flsbuf"
);
SET
(
p_byteswap_ulong
,
"_byteswap_ulong"
);
SET
(
p__pxcptinfoptrs
,
"__pxcptinfoptrs"
);
SET
(
p__AdjustPointer
,
"__AdjustPointer"
);
if
(
sizeof
(
void
*
)
==
8
)
{
SET
(
p_type_info_name_internal_method
,
"?_name_internal_method@type_info@@QEBAPEBDPEAU__type_info_node@@@Z"
);
...
...
@@ -1419,6 +1421,37 @@ static void test_is_exception_typeof(void)
ok
(
ret
==
0
,
"_is_exception_typeof returned %d
\n
"
,
ret
);
}
static
void
test__AdjustPointer
(
void
)
{
int
off
=
0xf0
;
void
*
obj1
=
&
off
;
void
*
obj2
=
(
char
*
)
&
off
-
2
;
struct
test_data
{
void
*
ptr
;
void
*
ret
;
struct
{
int
this_offset
;
int
vbase_descr
;
int
vbase_offset
;
}
this_ptr_offsets
;
}
data
[]
=
{
{
NULL
,
NULL
,
{
0
,
-
1
,
0
}},
{(
void
*
)
0xbeef
,
(
void
*
)
0xbef0
,
{
1
,
-
1
,
1
}},
{(
void
*
)
0xbeef
,
(
void
*
)
0xbeee
,
{
-
1
,
-
1
,
0
}},
{
&
obj1
,
(
char
*
)
&
obj1
+
off
,
{
0
,
0
,
0
}},
{(
char
*
)
&
obj1
-
5
,
(
char
*
)
&
obj1
+
off
,
{
0
,
5
,
0
}},
{(
char
*
)
&
obj1
-
3
,
(
char
*
)
&
obj1
+
off
+
24
,
{
24
,
3
,
0
}},
{(
char
*
)
&
obj2
-
17
,
(
char
*
)
&
obj2
+
off
+
4
,
{
4
,
17
,
2
}}
};
void
*
ret
;
int
i
;
for
(
i
=
0
;
i
<
sizeof
(
data
)
/
sizeof
(
data
[
0
]);
i
++
)
{
ret
=
p__AdjustPointer
(
data
[
i
].
ptr
,
&
data
[
i
].
this_ptr_offsets
);
ok
(
ret
==
data
[
i
].
ret
,
"%d) __AdjustPointer returned %p, expected %p
\n
"
,
i
,
ret
,
data
[
i
].
ret
);
}
}
START_TEST
(
msvcr90
)
{
if
(
!
init
())
...
...
@@ -1446,4 +1479,5 @@ START_TEST(msvcr90)
test_byteswap
();
test_access_s
();
test_is_exception_typeof
();
test__AdjustPointer
();
}
dlls/msvcrt/cpp.c
View file @
87bfb306
...
...
@@ -1431,3 +1431,8 @@ void __cdecl __ExceptionPtrCurrentException(exception_ptr *ep)
return
;
}
#endif
void
*
__cdecl
__AdjustPointer
(
void
*
obj
,
const
this_ptr_offsets
*
off
)
{
return
get_this_pointer
(
off
,
obj
);
}
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