ReactOS 0.4.16-dev-942-g91fadeb
cpp.c File Reference
#include <errno.h>
#include <stdarg.h>
#include <stdlib.h>
#include <wchar.h>
#include <stdio.h>
#include <windef.h>
#include <winbase.h>
#include <verrsrc.h>
#include <dbghelp.h>
#include "wine/test.h"
Include dependency graph for cpp.c:

Go to the source code of this file.

Classes

struct  __std_exception_data
 
struct  type_info140
 
struct  _type_info_list
 

Typedefs

typedef unsigned char MSVCRT_bool
 
typedef struct _type_info_list type_info_list
 

Functions

static void *CDECLp_malloc (size_t)
 
static void (CDECL *p___std_exception_copy)(const __std_exception_data *
 
static int (CDECL *p___std_type_info_compare)(const type_info140 *
 
static const type_info140 *static const char *CDECLp___std_type_info_name (type_info140 *, SLIST_HEADER *)
 
static size_t (CDECL *p___std_type_info_hash)(type_info140 *)
 
static char *__cdeclp___unDName (char *, const char *, int, void *, void *, unsigned short int)
 
static BOOL init (void)
 
static void test___std_exception (void)
 
static void test___std_type_info (void)
 
static void test___unDName (void)
 
 START_TEST (cpp)
 

Typedef Documentation

◆ MSVCRT_bool

Definition at line 31 of file cpp.c.

◆ type_info_list

Function Documentation

◆ init()

static BOOL init ( void  )
static

Definition at line 59 of file cpp.c.

60{
62
63 module = LoadLibraryA("ucrtbase.dll");
64 if (!module)
65 {
66 win_skip("ucrtbase.dll not installed\n");
67 return FALSE;
68 }
69
70 p_malloc = (void*)GetProcAddress(module, "malloc");
71 p___std_exception_copy = (void*)GetProcAddress(module, "__std_exception_copy");
72 p___std_exception_destroy = (void*)GetProcAddress(module, "__std_exception_destroy");
73 p___std_type_info_compare = (void*)GetProcAddress(module, "__std_type_info_compare");
74 p___std_type_info_name = (void*)GetProcAddress(module, "__std_type_info_name");
75 p___std_type_info_destroy_list = (void*)GetProcAddress(module, "__std_type_info_destroy_list");
76 p___std_type_info_hash = (void*)GetProcAddress(module, "__std_type_info_hash");
77 p___unDName = (void*)GetProcAddress(module, "__unDName");
78 return TRUE;
79}
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define GetProcAddress(x, y)
Definition: compat.h:753
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
static char *__cdecl * p___unDName(char *, const char *, int, void *, void *, unsigned short int)
static void *CDECL * p_malloc(size_t)
static const type_info140 *static const char *CDECL * p___std_type_info_name(type_info140 *, SLIST_HEADER *)
#define win_skip
Definition: test.h:164

Referenced by START_TEST().

◆ int()

static int ( CDECL p___std_type_info_compare) const
static

◆ p___std_type_info_name()

static const type_info140 *static const char *CDECL * p___std_type_info_name ( type_info140 ,
SLIST_HEADER  
)
static

Referenced by init(), and test___std_type_info().

◆ p___unDName()

static char *__cdecl * p___unDName ( char ,
const char ,
int  ,
void ,
void ,
unsigned short int   
)
static

Referenced by init(), and test___unDName().

◆ p_malloc()

static void *CDECL * p_malloc ( size_t  )
static

◆ size_t()

static size_t ( CDECL p___std_type_info_hash)
static

◆ START_TEST()

START_TEST ( cpp  )

Definition at line 238 of file cpp.c.

239{
240 if (!init()) return;
244}
static BOOL init(void)
Definition: cpp.c:59
static void test___std_type_info(void)
Definition: cpp.c:125
static void test___unDName(void)
Definition: cpp.c:195
static void test___std_exception(void)
Definition: cpp.c:81

◆ test___std_exception()

static void test___std_exception ( void  )
static

Definition at line 81 of file cpp.c.

82{
85
86 if (0) /* crash on Windows */
87 {
88 p___std_exception_copy(NULL, &src);
89 p___std_exception_copy(&dst, NULL);
90
91 src.what = "invalid free";
92 src.dofree = 1;
93 p___std_exception_destroy(&src);
94 p___std_exception_destroy(NULL);
95 }
96
97 src.what = "what";
98 src.dofree = 0;
99 p___std_exception_copy(&src, &dst);
100 ok(dst.what == src.what, "expected what to be same, got src %p dst %p\n", src.what, dst.what);
101 ok(!dst.dofree, "expected 0, got %d\n", dst.dofree);
102
103 src.dofree = 0x42;
104 p___std_exception_copy(&src, &dst);
105 ok(dst.what != src.what, "expected what to be different, got src %p dst %p\n", src.what, dst.what);
106 ok(dst.dofree == 1, "expected 1, got %d\n", dst.dofree);
107
108 p___std_exception_destroy(&dst);
109 ok(!dst.what, "expected NULL, got %p\n", dst.what);
110 ok(!dst.dofree, "expected 0, got %d\n", dst.dofree);
111
112 src.what = NULL;
113 src.dofree = 0;
114 p___std_exception_copy(&src, &dst);
115 ok(!dst.what, "dst.what != NULL\n");
116 ok(!dst.dofree, "dst.dofree != FALSE\n");
117
118 src.what = NULL;
119 src.dofree = 1;
120 p___std_exception_copy(&src, &dst);
121 ok(!dst.what, "dst.what != NULL\n");
122 ok(!dst.dofree, "dst.dofree != FALSE\n");
123}
#define ok(value,...)
Definition: atltest.h:57
#define NULL
Definition: types.h:112
GLenum src
Definition: glext.h:6340
GLenum GLenum dst
Definition: glext.h:6340

Referenced by START_TEST().

◆ test___std_type_info()

static void test___std_type_info ( void  )
static

Definition at line 125 of file cpp.c.

126{
127 type_info140 ti1 = { NULL, ".?AVa@@" };
128 type_info140 ti2 = { NULL, ".?AVb@@" };
129 type_info140 ti3 = ti1;
132 const char *ret;
133 size_t hash1, hash2;
134 int eq;
135
136
138 p___std_type_info_destroy_list(&header);
139
140 elem = p_malloc(sizeof(*elem));
141 memset(elem, 0, sizeof(*elem));
143 p___std_type_info_destroy_list(&header);
144 ok(!InterlockedPopEntrySList(&header), "list is not empty\n");
145
147 ok(!strcmp(ret, "class a"), "__std_type_info_name(&ti1) = %s\n", ret);
148 ok(ti1.name == ret, "ti1.name = %p, ret = %p\n", ti1.name, ret);
149
150 p___std_type_info_destroy_list(&header);
151 ok(!InterlockedPopEntrySList(&header), "list is not empty\n");
152 ok(ti1.name == ret, "ti1.name = %p, ret = %p\n", ti1.name, ret);
153 ti1.name = NULL;
154
155 eq = p___std_type_info_compare(&ti1, &ti1);
156 ok(eq == 0, "__std_type_info_compare(&ti1, &ti1) = %d\n", eq);
157
158 eq = p___std_type_info_compare(&ti1, &ti2);
159 ok(eq == -1, "__std_type_info_compare(&ti1, &ti2) = %d\n", eq);
160
161 eq = p___std_type_info_compare(&ti1, &ti3);
162 ok(eq == 0, "__std_type_info_compare(&ti1, &ti3) = %d\n", eq);
163
164 ti1.mangled[0] = 0;
165 ti1.mangled[1] = 0;
166 ti1.mangled[2] = 0;
167 hash1 = p___std_type_info_hash(&ti1);
168#ifdef _WIN64
169 ok(hash1 == 0xcbf29ce44fd0bfc1, "hash = %p\n", (void*)hash1);
170#else
171 ok(hash1 == 0x811c9dc5, "hash = %p\n", (void*)hash1);
172#endif
173
174 ti1.mangled[0] = 1;
175 hash2 = p___std_type_info_hash(&ti1);
176 ok(hash1 == hash2, "hash1 != hash2 (first char not ignored)\n");
177
178 ti1.mangled[1] = 1;
179 hash1 = p___std_type_info_hash(&ti1);
180#ifdef _WIN64
181 ok(hash1 == 0xaf63bc4c29620a60, "hash = %p\n", (void*)hash1);
182#else
183 ok(hash1 == 0x40c5b8c, "hash = %p\n", (void*)hash1);
184#endif
185 ok(hash1 != hash2, "hash1 == hash2 for different strings\n");
186
187 ti1.mangled[1] = 2;
188 hash2 = p___std_type_info_hash(&ti1);
189 ok(hash1 != hash2, "hash1 == hash2 for different strings\n");
190
191 hash1 = p___std_type_info_hash(&ti2);
192 ok(hash1 != hash2, "hash1 == hash2 for different strings\n");
193}
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
#define eq(received, expected, label, type)
Definition: locale.c:144
static size_t elem
Definition: string.c:69
#define memset(x, y, z)
Definition: compat.h:39
char mangled[32]
Definition: cpp.c:41
char * name
Definition: cpp.c:40
int ret
#define InterlockedPushEntrySList(SListHead, SListEntry)
Definition: rtlfuncs.h:3406
#define InterlockedPopEntrySList(SListHead)
Definition: rtlfuncs.h:3409
FORCEINLINE VOID InitializeSListHead(_Out_ PSLIST_HEADER SListHead)
Definition: rtlfuncs.h:3368

Referenced by START_TEST().

◆ test___unDName()

static void test___unDName ( void  )
static

Definition at line 195 of file cpp.c.

196{
197 static struct {const char *in; const char *out; const char *broken; unsigned int flags;} und_tests[] =
198 {
199/* 0 */ {"??4QDnsDomainNameRecord@@QAEAAV0@$$QAV0@@Z",
200 "public: class QDnsDomainNameRecord & __thiscall QDnsDomainNameRecord::operator=(class QDnsDomainNameRecord &&)"},
201/* 1 */ {"??4QDnsDomainNameRecord@@QAEAAV0@$$QEAV0@@Z",
202 "public: class QDnsDomainNameRecord & __thiscall QDnsDomainNameRecord::operator=(class QDnsDomainNameRecord && __ptr64)"},
203/* 2 */ {"??__K_l@@YA?AUCC@@I@Z", "struct CC __cdecl operator \"\" _l(unsigned int)",
204 "??__K_l@@YA?AUCC@@I@Z" /* W10 1507 fails on this :-( */},
205/* 3 */ {"?meth@Q@@QEGBA?AV1@XZ",
206 "public: class Q __cdecl Q::meth(void)const __ptr64& ",
207 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */},
208/* 4 */ {"?meth@Q@@QEHAA?AV1@XZ",
209 "public: class Q __cdecl Q::meth(void) __ptr64&& ",
210 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */},
211/* 5 */ {"?meth@Q@@QEGBA?AV1@XZ",
212 "public: class Q Q::meth(void)const & ",
213 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */,
215/* 6 */ {"?meth@Q@@QEHAA?AV1@XZ",
216 "public: class Q Q::meth(void)&& ",
217 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */,
219/* 7 */ {"?AU?$my_iter@H$0A@$$V@@",
220 "struct my_iter<int,0>",
221 NULL,
223/* 8 */ {"??$foo@J_W$$T@bar@@YAJQB_W$$THQAUgod@@@Z",
224 "long __cdecl bar::foo<long,wchar_t,std::nullptr_t>(wchar_t const * const,std::nullptr_t,int,struct god * const)"},
225
226 };
227 unsigned i;
228 for (i = 0; i < ARRAY_SIZE(und_tests); i++)
229 {
230 char *name = p___unDName(0, und_tests[i].in, 0, malloc, free, und_tests[i].flags);
231 ok(!strcmp(name, und_tests[i].out) ||
232 broken(und_tests[i].broken && !strcmp(und_tests[i].broken, name)),
233 "unDName returned %s for #%u\n", wine_dbgstr_a(name), i);
234 free(name);
235 }
236}
#define broken(x)
Definition: atltest.h:178
#define ARRAY_SIZE(A)
Definition: main.h:20
#define UNDNAME_NO_MS_KEYWORDS
Definition: dbghelp.h:1253
#define UNDNAME_NO_ARGUMENTS
Definition: dbghelp.h:1266
#define free
Definition: debug_ros.c:5
#define malloc
Definition: debug_ros.c:4
GLuint in
Definition: glext.h:9616
GLbitfield flags
Definition: glext.h:7161
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
const char int int int static __inline const char * wine_dbgstr_a(const char *s)
Definition: debug.h:187
Definition: name.c:39
wchar_t tm const _CrtWcstime_Writes_and_advances_ptr_ count wchar_t ** out
Definition: wcsftime.cpp:383

Referenced by START_TEST().

◆ void()

static void ( CDECL p___std_exception_copy) const
static