summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/SourceMgr.cpp
Commit message (Expand)AuthorAgeFilesLines
* Simplify std::lower_bound with llvm::{bsearch,lower_bound}. NFCFangrui Song2019-06-211-8/+3
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [SourceMgr][FileCheck] Obey -color by extending WithColorJoel E. Denny2018-10-241-63/+45
* Revert r344930 as it broke some of the bots on Windows.Aaron Ballman2018-10-221-45/+63
* [SourceMgr][FileCheck] Obey -color by extending WithColorJoel E. Denny2018-10-221-63/+45
* llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)Fangrui Song2018-09-271-1/+1
* [Windows] Convert from UTF-8 to UTF-16 when writing to a Windows consoleReid Kleckner2018-09-051-4/+10
* Remove trailing spaceFangrui Song2018-07-301-12/+12
* Don't assert that a size_t fits into 64bit.Joerg Sonnenberger2018-07-171-1/+0
* [Support] Change std::sort to llvm::sort in response to r327219Mandeep Singh Grang2018-04-081-1/+1
* [Support] Make line-number cache robust against access patterns.Graydon Hoare2018-04-071-51/+74
* Add DK_Remark to SMDiagnosticAdam Nemet2017-10-121-0/+5
* Sort the remaining #include lines in include/... and lib/....Chandler Carruth2017-06-061-3/+3
* Remove unnecessary conditions as suggested by clang-tidy. NFCGabor Horvath2017-05-011-3/+1
* [Support] Fix some Clang-tidy modernize and Include What You Use warnings; ot...Eugene Zelenko2017-02-151-8/+19
* Use StringRef for MemoryBuffer identifier API (NFC)Mehdi Amini2016-10-011-1/+1
* Remove excessive padding from LineNoCacheTyBenjamin Kramer2016-08-161-1/+1
* Use the range variant of find_if instead of unpacking begin/endDavid Majnemer2016-08-121-2/+2
* MIR Serialization: Connect the machine function analysis pass to the MIR parser.Alex Lorenz2015-06-151-22/+24
* Purge unused includes throughout libSupport.Benjamin Kramer2015-03-231-2/+0
* Remove unnecessary .c_str() when implicitly converting to TwineMatt Arsenault2014-11-061-2/+2
* Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...David Blaikie2014-08-211-6/+1
* SourceMgr: consistently use 'unsigned' for the memory buffer ID typeDmitri Gribenko2014-07-091-3/+3
* Update the MemoryBuffer API to use ErrorOr.Rafael Espindola2014-07-061-7/+9
* SourceMgr: make valid buffer IDs start from oneAlp Toker2014-07-061-15/+16
* Use SourceMgr::getMemoryBuffer() in a couple of placesAlp Toker2014-06-251-2/+2
* Add an overload for SourceMgr::PrintMessage that takes an existing diagnostic.Jordan Rose2014-06-171-8/+11
* Modernize doc comments for SourceMgr.Jordan Rose2014-06-171-12/+0
* Remove system_error.h.Rafael Espindola2014-06-121-1/+1
* Fix hardcoded slash to native path seperator which was exposed from llvm::sys...Yaron Keren2014-05-161-1/+2
* [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper2014-04-091-1/+1
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-071-2/+2
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-061-2/+1
* [C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles2014-03-051-1/+1
* SourceMgr diagnotics printing: fix a bug where printing a fixit for a sourceDmitri Gribenko2013-09-271-1/+1
* Make SourceMgr::PrintMessage() testable and add unit testsDmitri Gribenko2013-09-271-3/+8
* Fix size_t -> uint warnings with MSVC 64-bit buildMatt Arsenault2013-07-201-3/+3
* Use only explicit bool conversion operatorsDavid Blaikie2013-05-151-1/+1
* Make helpers static. Add missing include so LLVMInitializeObjCARCOpts gets C ...Benjamin Kramer2013-02-151-2/+2
* SMDiagnostic: don't emit ranges if there are /any/ multibyte characters.Jordan Rose2013-01-111-9/+12
* Add basic fix-its to SMDiagnostic.Jordan Rose2013-01-101-32/+158
* Change SMRange to be half-open (exclusive end) instead of closed (inclusive)Jordan Rose2013-01-071-1/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-2/+2
* SourceMgr: Use has_colors() instead of just is_displayed() before trying to useDaniel Dunbar2012-07-201-2/+2
* Don't assume size_t is unsigned long long.Matt Beaumont-Gay2012-05-071-3/+1
* make SourceMgr tolerate empty SMLoc()'s better.Chris Lattner2012-05-061-45/+54
* reapply my patch, with a fix for an off-by-one error. Turned out to be a lotChris Lattner2012-05-051-12/+18
* revert my patches, which are causing problems.Chris Lattner2012-05-051-18/+12
* refactor some code to expose column numbers more and make diagnostic printing...Chris Lattner2012-05-051-12/+18
* SourceMgr: Colorize diagnostics.Benjamin Kramer2012-04-181-7/+41
OpenPOWER on IntegriCloud