2017-03-23 11:40:58 +01:00
|
|
|
/*
|
|
|
|
* msvcrt.dll C++ objects
|
|
|
|
*
|
|
|
|
* Copyright 2017 Piotr Caban
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2017-03-23 11:41:05 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2017-03-23 11:40:58 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winternl.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "msvcrt.h"
|
|
|
|
#include "cppexcept.h"
|
|
|
|
#include "cxx.h"
|
|
|
|
|
|
|
|
#if _MSVCR_VER >= 100
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
|
|
|
|
|
2017-03-23 11:41:11 +01:00
|
|
|
static int context_id = -1;
|
|
|
|
|
2017-03-23 11:41:05 +01:00
|
|
|
#ifdef __i386__
|
|
|
|
|
|
|
|
#define DEFINE_VTBL_WRAPPER(off) \
|
|
|
|
__ASM_GLOBAL_FUNC(vtbl_wrapper_ ## off, \
|
|
|
|
"popl %eax\n\t" \
|
|
|
|
"popl %ecx\n\t" \
|
|
|
|
"pushl %eax\n\t" \
|
|
|
|
"movl 0(%ecx), %eax\n\t" \
|
|
|
|
"jmp *" #off "(%eax)\n\t")
|
|
|
|
|
|
|
|
DEFINE_VTBL_WRAPPER(0);
|
|
|
|
DEFINE_VTBL_WRAPPER(4);
|
|
|
|
DEFINE_VTBL_WRAPPER(8);
|
|
|
|
DEFINE_VTBL_WRAPPER(20);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2017-03-23 11:40:58 +01:00
|
|
|
typedef struct {
|
|
|
|
const vtable_ptr *vtable;
|
|
|
|
} Context;
|
2017-03-23 11:41:05 +01:00
|
|
|
#define call_Context_GetId(this) CALL_VTBL_FUNC(this, 0, \
|
|
|
|
unsigned int, (const Context*), (this))
|
|
|
|
#define call_Context_GetVirtualProcessorId(this) CALL_VTBL_FUNC(this, 4, \
|
|
|
|
unsigned int, (const Context*), (this))
|
|
|
|
#define call_Context_GetScheduleGroupId(this) CALL_VTBL_FUNC(this, 8, \
|
|
|
|
unsigned int, (const Context*), (this))
|
|
|
|
#define call_Context_dtor(this, flags) CALL_VTBL_FUNC(this, 20, \
|
|
|
|
Context*, (Context*, unsigned int), (this, flags))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Context context;
|
2017-03-23 11:41:11 +01:00
|
|
|
unsigned int id;
|
2017-03-23 11:41:05 +01:00
|
|
|
} ExternalContextBase;
|
|
|
|
extern const vtable_ptr MSVCRT_ExternalContextBase_vtable;
|
|
|
|
static void ExternalContextBase_ctor(ExternalContextBase*);
|
|
|
|
|
|
|
|
static int context_tls_index = TLS_OUT_OF_INDEXES;
|
|
|
|
|
|
|
|
static Context* try_get_current_context(void)
|
|
|
|
{
|
|
|
|
if (context_tls_index == TLS_OUT_OF_INDEXES)
|
|
|
|
return NULL;
|
|
|
|
return TlsGetValue(context_tls_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Context* get_current_context(void)
|
|
|
|
{
|
|
|
|
Context *ret;
|
|
|
|
|
|
|
|
if (context_tls_index == TLS_OUT_OF_INDEXES) {
|
|
|
|
int tls_index = TlsAlloc();
|
|
|
|
if (tls_index == TLS_OUT_OF_INDEXES) {
|
2017-03-23 11:41:36 +01:00
|
|
|
throw_scheduler_resource_allocation_error(NULL,
|
|
|
|
HRESULT_FROM_WIN32(GetLastError()));
|
2017-03-23 11:41:05 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(InterlockedCompareExchange(&context_tls_index, tls_index, TLS_OUT_OF_INDEXES) != TLS_OUT_OF_INDEXES)
|
|
|
|
TlsFree(tls_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TlsGetValue(context_tls_index);
|
|
|
|
if (!ret) {
|
|
|
|
ExternalContextBase *context = MSVCRT_operator_new(sizeof(ExternalContextBase));
|
|
|
|
ExternalContextBase_ctor(context);
|
|
|
|
TlsSetValue(context_tls_index, context);
|
|
|
|
ret = &context->context;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2017-03-23 11:40:58 +01:00
|
|
|
|
|
|
|
/* ?CurrentContext@Context@Concurrency@@SAPAV12@XZ */
|
|
|
|
/* ?CurrentContext@Context@Concurrency@@SAPEAV12@XZ */
|
|
|
|
Context* __cdecl Context_CurrentContext(void)
|
|
|
|
{
|
2017-03-23 11:41:05 +01:00
|
|
|
TRACE("()\n");
|
|
|
|
return get_current_context();
|
2017-03-23 11:40:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ?Id@Context@Concurrency@@SAIXZ */
|
|
|
|
unsigned int __cdecl Context_Id(void)
|
|
|
|
{
|
2017-03-23 11:41:05 +01:00
|
|
|
Context *ctx = try_get_current_context();
|
|
|
|
TRACE("()\n");
|
|
|
|
return ctx ? call_Context_GetId(ctx) : -1;
|
2017-03-23 11:40:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ?Block@Context@Concurrency@@SAXXZ */
|
|
|
|
void __cdecl Context_Block(void)
|
|
|
|
{
|
|
|
|
FIXME("()\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?Yield@Context@Concurrency@@SAXXZ */
|
|
|
|
void __cdecl Context_Yield(void)
|
|
|
|
{
|
|
|
|
FIXME("()\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_SpinYield@Context@Concurrency@@SAXXZ */
|
|
|
|
void __cdecl Context__SpinYield(void)
|
|
|
|
{
|
|
|
|
FIXME("()\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ */
|
|
|
|
MSVCRT_bool __cdecl Context_IsCurrentTaskCollectionCanceling(void)
|
|
|
|
{
|
|
|
|
FIXME("()\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?Oversubscribe@Context@Concurrency@@SAX_N@Z */
|
|
|
|
void __cdecl Context_Oversubscribe(MSVCRT_bool begin)
|
|
|
|
{
|
|
|
|
FIXME("(%x)\n", begin);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?ScheduleGroupId@Context@Concurrency@@SAIXZ */
|
|
|
|
unsigned int __cdecl Context_ScheduleGroupId(void)
|
|
|
|
{
|
2017-03-23 11:41:05 +01:00
|
|
|
Context *ctx = try_get_current_context();
|
|
|
|
TRACE("()\n");
|
|
|
|
return ctx ? call_Context_GetScheduleGroupId(ctx) : -1;
|
2017-03-23 11:40:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ?VirtualProcessorId@Context@Concurrency@@SAIXZ */
|
|
|
|
unsigned int __cdecl Context_VirtualProcessorId(void)
|
|
|
|
{
|
2017-03-23 11:41:05 +01:00
|
|
|
Context *ctx = try_get_current_context();
|
2017-03-23 11:40:58 +01:00
|
|
|
FIXME("()\n");
|
2017-03-23 11:41:05 +01:00
|
|
|
return ctx ? call_Context_GetVirtualProcessorId(ctx) : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(ExternalContextBase_GetId, 4)
|
|
|
|
unsigned int __thiscall ExternalContextBase_GetId(const ExternalContextBase *this)
|
|
|
|
{
|
2017-03-23 11:41:11 +01:00
|
|
|
TRACE("(%p)->()\n", this);
|
|
|
|
return this->id;
|
2017-03-23 11:41:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(ExternalContextBase_GetVirtualProcessorId, 4)
|
|
|
|
unsigned int __thiscall ExternalContextBase_GetVirtualProcessorId(const ExternalContextBase *this)
|
|
|
|
{
|
|
|
|
FIXME("(%p)->() stub\n", this);
|
2017-03-23 11:40:58 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-03-23 11:41:05 +01:00
|
|
|
DEFINE_THISCALL_WRAPPER(ExternalContextBase_GetScheduleGroupId, 4)
|
|
|
|
unsigned int __thiscall ExternalContextBase_GetScheduleGroupId(const ExternalContextBase *this)
|
|
|
|
{
|
|
|
|
FIXME("(%p)->() stub\n", this);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(ExternalContextBase_Unblock, 4)
|
|
|
|
void __thiscall ExternalContextBase_Unblock(ExternalContextBase *this)
|
|
|
|
{
|
|
|
|
FIXME("(%p)->() stub\n", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(ExternalContextBase_IsSynchronouslyBlocked, 4)
|
|
|
|
MSVCRT_bool __thiscall ExternalContextBase_IsSynchronouslyBlocked(const ExternalContextBase *this)
|
|
|
|
{
|
|
|
|
FIXME("(%p)->() stub\n", this);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ExternalContextBase_dtor(ExternalContextBase *this)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(ExternalContextBase_vector_dtor, 8)
|
|
|
|
Context* __thiscall ExternalContextBase_vector_dtor(ExternalContextBase *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
INT_PTR i, *ptr = (INT_PTR *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
ExternalContextBase_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
ExternalContextBase_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return &this->context;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ExternalContextBase_ctor(ExternalContextBase *this)
|
|
|
|
{
|
2017-03-23 11:41:11 +01:00
|
|
|
TRACE("(%p)->()\n", this);
|
2017-03-23 11:41:05 +01:00
|
|
|
this->context.vtable = &MSVCRT_ExternalContextBase_vtable;
|
2017-03-23 11:41:11 +01:00
|
|
|
this->id = InterlockedIncrement(&context_id);
|
2017-03-23 11:41:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern const vtable_ptr MSVCRT_type_info_vtable;
|
|
|
|
DEFINE_RTTI_DATA0(Context, 0, ".?AVContext@Concurrency@@")
|
|
|
|
DEFINE_RTTI_DATA1(ContextBase, 0, &Context_rtti_base_descriptor, ".?AVContextBase@details@Concurrency@@")
|
|
|
|
DEFINE_RTTI_DATA2(ExternalContextBase, 0, &ContextBase_rtti_base_descriptor,
|
|
|
|
&Context_rtti_base_descriptor, ".?AVExternalContextBase@details@Concurrency@@")
|
|
|
|
|
|
|
|
#ifndef __GNUC__
|
|
|
|
void __asm_dummy_vtables(void) {
|
|
|
|
#endif
|
|
|
|
__ASM_VTABLE(ExternalContextBase,
|
|
|
|
VTABLE_ADD_FUNC(ExternalContextBase_GetId)
|
|
|
|
VTABLE_ADD_FUNC(ExternalContextBase_GetVirtualProcessorId)
|
|
|
|
VTABLE_ADD_FUNC(ExternalContextBase_GetScheduleGroupId)
|
|
|
|
VTABLE_ADD_FUNC(ExternalContextBase_Unblock)
|
|
|
|
VTABLE_ADD_FUNC(ExternalContextBase_IsSynchronouslyBlocked)
|
|
|
|
VTABLE_ADD_FUNC(ExternalContextBase_vector_dtor));
|
|
|
|
#ifndef __GNUC__
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void msvcrt_init_scheduler(void *base)
|
|
|
|
{
|
|
|
|
#ifdef __x86_64__
|
|
|
|
init_Context_rtti(base);
|
|
|
|
init_ContextBase_rtti(base);
|
|
|
|
init_ExternalContextBase_rtti(base);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void msvcrt_free_scheduler(void)
|
|
|
|
{
|
|
|
|
if (context_tls_index != TLS_OUT_OF_INDEXES)
|
|
|
|
TlsFree(context_tls_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void msvcrt_free_scheduler_thread(void)
|
|
|
|
{
|
|
|
|
Context *context = try_get_current_context();
|
|
|
|
if (!context) return;
|
|
|
|
call_Context_dtor(context, 1);
|
|
|
|
}
|
|
|
|
|
2017-03-23 11:40:58 +01:00
|
|
|
#endif /* _MSVCR_VER >= 100 */
|