Skip to content

Commit b65a0de

Browse files
committed
Add debug mode parser bindings
1 parent 177ee9a commit b65a0de

13 files changed

+86716
-9
lines changed

build/Helpers.lua

+6-2
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,13 @@ end
256256
function AddPlatformSpecificFiles(folder, filename)
257257

258258
if os.istarget("windows") then
259-
filter { "toolset:msc*", "architecture:x86_64" }
259+
filter { "toolset:msc*", "architecture:x86_64", "configurations:Debug" }
260+
files { path.join(folder, "x86_64-pc-win32-msvc-d", filename) }
261+
filter { "toolset:msc*", "architecture:x86", "configurations:Debug" }
262+
files { path.join(folder, "i686-pc-win32-msvc-d", filename) }
263+
filter { "toolset:msc*", "architecture:x86_64", "configurations:not Debug" }
260264
files { path.join(folder, "x86_64-pc-win32-msvc", filename) }
261-
filter { "toolset:msc*", "architecture:x86" }
265+
filter { "toolset:msc*", "architecture:x86", "configurations:not Debug" }
262266
files { path.join(folder, "i686-pc-win32-msvc", filename) }
263267
elseif os.istarget("macosx") then
264268
filter { "architecture:arm64" }

src/CppParser/Bindings/CSharp/CppSharp.Parser.CSharp.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
77
<IsPackable>true</IsPackable>
88
<NoWarn>0109</NoWarn>
9-
<PlatformParserFolder Condition="$(IsWindows) AND $(PlatformTarget) == x64">x86_64-pc-win32-msvc</PlatformParserFolder>
9+
<PlatformParserFolder Condition="$(IsWindows) AND $(PlatformTarget) == x64 AND $(Configuration) == 'Debug'">x86_64-pc-win32-msvc-d</PlatformParserFolder>
10+
<PlatformParserFolder Condition="$(IsWindows) AND $(PlatformTarget) == x64 AND $(Configuration) != 'Debug'">x86_64-pc-win32-msvc</PlatformParserFolder>
1011
<PlatformParserFolder Condition="$(IsLinux) AND $(PlatformTarget) == x64 AND $(UseCXX11ABI)">x86_64-linux-gnu-cxx11abi</PlatformParserFolder>
1112
<PlatformParserFolder Condition="$(IsLinux) AND $(PlatformTarget) == x64 AND !$(UseCXX11ABI)">x86_64-linux-gnu</PlatformParserFolder>
1213
<PlatformParserFolder Condition="$(IsMacOSX) AND $(PlatformTarget) == x64">x86_64-apple-darwin12.4.0</PlatformParserFolder>

src/CppParser/Bindings/CSharp/i686-pc-win32-msvc-d/CppSharp.CppParser-symbols.cpp

+378
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/i686-pc-win32-msvc-d/CppSharp.CppParser.cs

+42,436
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS
2+
#define _LIBCPP_HIDE_FROM_ABI
3+
4+
#include <string>
5+
#include <new>
6+
7+
template __declspec(dllexport) std::allocator<char>::allocator() noexcept;
8+
template __declspec(dllexport) std::basic_string<char, std::char_traits<char>, std::allocator<char>>::basic_string() noexcept(true);
9+
template __declspec(dllexport) std::basic_string<char, std::char_traits<char>, std::allocator<char>>::~basic_string() noexcept;
10+
template __declspec(dllexport) std::basic_string<char, std::char_traits<char>, std::allocator<char>>& std::basic_string<char, std::char_traits<char>, std::allocator<char>>::assign(const char* const);
11+
template __declspec(dllexport) const char* std::basic_string<char, std::char_traits<char>, std::allocator<char>>::data() const noexcept;

src/CppParser/Bindings/CSharp/i686-pc-win32-msvc-d/Std.cs

+493
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/x86_64-pc-win32-msvc-d/CppSharp.CppParser-symbols.cpp

+378
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/x86_64-pc-win32-msvc-d/CppSharp.CppParser.cs

+42,481
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS
2+
#define _LIBCPP_HIDE_FROM_ABI
3+
4+
#include <string>
5+
#include <new>
6+
7+
template __declspec(dllexport) std::allocator<char>::allocator() noexcept;
8+
template __declspec(dllexport) std::basic_string<char, std::char_traits<char>, std::allocator<char>>::basic_string() noexcept(true);
9+
template __declspec(dllexport) std::basic_string<char, std::char_traits<char>, std::allocator<char>>::~basic_string() noexcept;
10+
template __declspec(dllexport) std::basic_string<char, std::char_traits<char>, std::allocator<char>>& std::basic_string<char, std::char_traits<char>, std::allocator<char>>::assign(const char* const);
11+
template __declspec(dllexport) const char* std::basic_string<char, std::char_traits<char>, std::allocator<char>>::data() const noexcept;

src/CppParser/Bindings/CSharp/x86_64-pc-win32-msvc-d/Std.cs

+493
Large diffs are not rendered by default.

src/CppParser/CppParser.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ DEF_VECTOR_STRING(CppParserOptions, Undefines)
4141
DEF_VECTOR_STRING(CppParserOptions, SupportedStdTypes)
4242
DEF_VECTOR_STRING(CppParserOptions, SupportedFunctionTemplates)
4343

44-
ParserResult::ParserResult()
45-
: targetInfo(0)
46-
{
47-
}
44+
ParserResult::ParserResult() {}
4845

4946
ParserResult::ParserResult(const ParserResult& rhs)
5047
: kind(rhs.kind)

src/CppParser/CppParser.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ struct CS_API ParserResult
102102
ParserResult(const ParserResult&);
103103
~ParserResult();
104104

105-
ParserResultKind kind;
105+
ParserResultKind kind = ParserResultKind::Error;
106106
VECTOR(ParserDiagnostic, Diagnostics)
107107
VECTOR(NativeLibrary*, Libraries)
108-
ParserTargetInfo* targetInfo;
108+
ParserTargetInfo* targetInfo = nullptr;
109109
};
110110

111111
enum class SourceLocationKind

src/CppParser/ParserGen/ParserGen.cs

+24
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,19 @@ public void Setup(Driver driver)
6262
parserModule.OutputNamespace = string.Empty;
6363

6464
if (parserOptions.IsMicrosoftAbi)
65+
{
66+
if (Triple.Contains("msvc-d"))
67+
{
68+
var list = parserOptions.CompilationOptions;
69+
list.Remove("-O3");
70+
list.Add("-O0");
71+
parserOptions.CompilationOptions = list;
72+
73+
parserOptions.AddDefines("_DEBUG");
74+
}
75+
6576
parserOptions.MicrosoftMode = true;
77+
}
6678

6779
if (Triple.Contains("apple"))
6880
SetupMacOptions(parserOptions);
@@ -165,6 +177,18 @@ public static void Main(string[] args)
165177
Console.WriteLine("Generating the C# 64-bit parser bindings for Windows...");
166178
ConsoleDriver.Run(new ParserGen(GeneratorKind.CSharp, "x86_64-pc-win32-msvc"));
167179
Console.WriteLine();
180+
181+
Console.WriteLine("Generating the C# 64-bit parser debug bindings for Windows...");
182+
ConsoleDriver.Run(new ParserGen(GeneratorKind.CSharp, "x86_64-pc-win32-msvc-d"));
183+
Console.WriteLine();
184+
185+
Console.WriteLine("Generating the C++/CLI parser debug bindings for Windows...");
186+
ConsoleDriver.Run(new ParserGen(GeneratorKind.CLI, "i686-pc-win32-msvc-d"));
187+
Console.WriteLine();
188+
189+
Console.WriteLine("Generating the C# parser debug bindings for Windows...");
190+
ConsoleDriver.Run(new ParserGen(GeneratorKind.CSharp, "i686-pc-win32-msvc-d"));
191+
Console.WriteLine();
168192
}
169193

170194
var osxHeadersPath = Path.Combine(GetSourceDirectory("build"), @"headers\osx");

0 commit comments

Comments
 (0)