当MATLAB在DLL中调用函数时,堆栈限制是多少

时间:2017-02-07 22:14:44

标签: c matlab dll stack-overflow

我想弄清楚,当MATLAB在DLL中调用函数时,堆栈大小限制是什么 有没有办法配置限制?

我正在使用loadlibrarycalllib函数调用C中实现的函数(在动态链接库中)。

我创建了一个测试来计算堆栈限制。

我正在使用MATLAB 2016a(64位)和Visual Studio 2010来构建DLL。

这是我的MATLAB源代码:

loadlibrary('MyDll','MyDll.h')

size_in_bytes = 1000000;

res = calllib('MyDll', 'Test', size_in_bytes);

if (res == -1)
    disp(['Stack Overflow... (size = ', num2str(size_in_bytes), ')']);
else
    disp(['Successful stack allocation... (size = ', num2str(size_in_bytes), ')']);
end

unloadlibrary MyDll

这是我的C源代码:

MyDll.h

// MyDll.h : DLL interface.

#ifndef MY_DLL_H
#define MY_DLL_H

#ifdef MY_DLL_EXPORTS
    #define MY_DLL_API   __declspec(dllexport)
#else
    #define MY_DLL_API   __declspec(dllimport)
#endif

extern MY_DLL_API int Test(int size);

#endif

MyDll.c

// MyDll.c

#include "MyDll.h"

#include <windows.h>
#include <stdio.h>
#include <string.h>
#include <malloc.h>


//Allocate <size> bytes in stack using _alloca(size).
//Return 0 if OK.
//Return (-1) in case of stack overflow.
int Test(int size)
{
    //Not allocated on the stack...
    static wchar_t errorMsg[100];
    static wchar_t okMsg[100];

    int errcode = 0;
    void *pData = NULL;

    //Prepare messages from advance.
    swprintf_s(errorMsg, 100, L"Stack Overflow (size = %d)", size);
    swprintf_s(okMsg, 100, L"Successful stack allocation (size = %d)", size);

    __try 
    {
        pData = _alloca(size);
    }
    // If an exception occurred with the _alloca function
    __except (GetExceptionCode() == STATUS_STACK_OVERFLOW)
    {
        MessageBox(NULL, errorMsg, TEXT("Error"), MB_OK | MB_ICONERROR);

        // If the stack overflows, use this function to restore.
        errcode = _resetstkoflw();
        if (errcode)
        {
            MessageBox(NULL, TEXT("Could not reset the stack!"), TEXT("Error"), MB_OK | MB_ICONERROR);
            _exit(1);
        }

        pData = NULL;
    };

    if (pData != NULL)
    {
        //Fill allocated buffer with zeros
        memset(pData, 0, size);

        MessageBox(NULL, okMsg, TEXT("OK"), MB_OK);

        return 0;
    }

    return -1;
}

__try__except块取自Microsoft示例:
https://msdn.microsoft.com/en-us/library/wb1s57t5.aspx

DLL编译器标志:
/Zi /nologo /W4 /WX- /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_USRDLL" /D "MY_DLL_EXPORTS" /D "_WINDLL" /D "_UNICODE" /D "UNICODE" /Gm /EHsc /RTC1 /MTd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fp"x64\Debug\MyDll.pch" /Fa"x64\Debug\" /Fo"x64\Debug\" /Fd"x64\Debug\vc100.pdb" /Gd /errorReport:queue

DLL链接器标志:
/OUT:"x64\Debug\MyDll.dll" /INCREMENTAL:NO /NOLOGO /DLL "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /MANIFEST /ManifestFile:"x64\Debug\MyDll.dll.intermediate.manifest" /ALLOWISOLATION /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"c:\Tmp\MyDll\x64\Debug\MyDll.pdb" /SUBSYSTEM:CONSOLE /PGD:"c:\Tmp\MyDll\x64\Debug\MyDll.pgd" /TLBID:1 /DYNAMICBASE /NXCOMPAT /MACHINE:X64 /ERRORREPORT:QUEUE

我使用size_in_bytes的不同值执行了MATLAB代码:
size_in_bytes = 1000000:通过!
size_in_bytes = 10000000:通过!
size_in_bytes = 50000000:通过!
size_in_bytes = 60000000:通过!
size_in_bytes = 70000000:堆栈溢出!

看起来我的系统中的限制大约是64MByte(但我不知道这个数字是否适用于所有系统)。

我尝试使用editbin工具修改Matlab.exe的堆栈大小 我尝试了以下命令(例如):
editbin /STACK:250000000 "c:\Program Files\MATLAB\R2016a\bin\matlab.exe"

  

此选项以字节为单位设置堆栈的大小,并以十进制或C语言表示法获取参数。 / STACK选项仅适用于可执行文件。

似乎没有任何影响......

1 个答案:

答案 0 :(得分:0)

似乎在Windows上,堆栈的大小是在编译时设置的。因此,您可以使用选项/F或二进制EDITBIN