search for: __debugbreak

Displaying 3 results from an estimated 3 matches for "__debugbreak".

2011 Feb 28
1
[LLVMdev] [cfe-dev] [PATCH] Windows improvements
...ail-on-win32.patch: > > Fix Windows python issue where open temporary files cannot be opened again. > Needed for clang-c++tests. Looks good to me. Daniel, would it be enough? > clang-missing-builtins.patch: > llvm-interrupt-builtin.patch: > > Add builtins needed to implement __debugbreak and _byteswap_ushort from > intrin.h. Before implementing everything else needed for intrin.h I need to > know if this is the correct way? I have no idea, excuse me. :( > clang-msvc10-fix-mm_malloc-error.patch: > > mm_malloc is implemented in Visual Studio 2010, this fixes the com...
2010 May 02
0
[LLVMdev] Win32 COFF Support
...ttp://llvm.org/docs/ProgrammersManual.html and use the data structures already provided by LLVM. E.g. http://llvm.org/docs/ProgrammersManual.html#dss_stringmap should definitely be used here. > #ifdef _MSC_VER > #include "stdafx.h" > #endif > #define report_fatal_error_dbg(x) __debugbreak () Generally it's prohibited to use target/compiler-specific defines outside of libSystem. > struct MCWin32CoffObjectWriter : > MCObjectWriter, > coff::file Any reason for such inheritance? > MCSectionCOFF const & Section = dynamic_cast &l...
2010 May 01
4
[LLVMdev] Win32 COFF Support
Hi All, I have created a minimally functional Win32 COFF Exporter using the new MC framework. I made some minor changes to other libraries to allow me to plug it in without building it as part of the LLVM project. I wanted to share it but wasn't sure how to go about doing so, so I have attached the code to this message. Any feedback on would be appreciated. -------------- next part