Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
libcxx
/
src
/
debug.cpp
ab768a8
Fix debug mode build w/o exceptions
by Eric Fiselier
· 9 years ago
687d321
Implement a throwing version of _LIBCPP_ASSERT.
by Eric Fiselier
· 9 years ago
d437fa5
Add an _LIBCPP_NORETURN inline function named __throw_XXX for each exception type we define. They either construct and throw the exception, or abort() (if exceptions are disabled). Use these functions everywhere instead of assert()ing when exceptions are disabled. WARNING: This is a behavior change - but only with exceptions disabled. Reviewed as: https://reviews.llvm.org/D23855.
by Marshall Clow
· 9 years ago
61bff61
Fix use after free and calls to operator comma in debug mode
by Eric Fiselier
· 11 years ago
b3fcc67
Allow libc++ to be built on systems without POSIX threads
by Jonathan Roelofs
· 11 years ago
145afa1
Rename _LIBCPP_DEBUG2 to _LIBCPP_DEBUG.
by Howard Hinnant
· 12 years ago
fc88dbd
Debug mode for string. This commit also marks the first time libc++ debug-mode has found a bug (found one in regex). Had to play with extern templates a bit to get this to work since string is heavily used within libc++.dylib.
by Howard Hinnant
· 12 years ago
42a3046
Ok, 3 major changes for debug mode in one commit:
by Howard Hinnant
· 12 years ago
85ad6c9
Use static_cast.
by Joerg Sonnenberger
· 12 years ago
f750923
Fix bug in __libcpp_db::__iterator_copy. Add debug test for swaping lists.
by Howard Hinnant
· 12 years ago
6e41256
No functionality change at this time. I've split _LIBCPP_VISIBLE up into two flags: _LIBCPP_TYPE_VIS and _LIBCPP_FUNC_VIS. This is in preparation for taking advantage of clang's new __type_visibility__ attribute.
by Howard Hinnant
· 13 years ago
267e3e1
Saleem Abdulrasool: This just rounds up a few compile warnings emitted by GCC (4.7.2).
by Howard Hinnant
· 13 years ago
7b838f5
Wrap throw in _LIBCPP_NO_EXCEPTIONS in debug.cpp. Calls abort if can't throw an exception. Fixes http://llvm.org/bugs/show_bug.cgi?id=13082.
by Howard Hinnant
· 13 years ago
c206366
Quash a whole bunch of warnings
by Howard Hinnant
· 14 years ago
920b56c
Another installment on debug mode. This addresses list. However this should be considered a temporary state. The API of the debug database and how vector and list use it, is unsatisfactory at the moment. It is both inefficient and overly verbose. I wanted to get this functionality checked in though. In the next day or so I'll refactor what is there in an attempt to streamline things.
by Howard Hinnant
· 14 years ago
c36bfc4
Doug Gregor pointed out some problems with debug mode enabled in one TU and not another. This patch helps detect those situations and offers improved error messages to help get debug mode enabled in more TU's when it is absolutely necessary to do so. Thanks Doug.
by Howard Hinnant
· 14 years ago
cec9af9
Create multilevel debug mode
by Howard Hinnant
· 14 years ago
f554add
Initial checkin for debug mode (version 2)
by Howard Hinnant
· 14 years ago