summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser/Parser.cpp
Commit message (Expand)AuthorAgeFilesLines
* [llvm] Migrate llvm::make_unique to std::make_uniqueJonas Devlieghere2019-08-151-4/+4
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [ThinLTO] Parse module summary index from assemblyTeresa Johnson2018-06-261-5/+78
* LLParser: add an argument for overriding data layout and do not check alloca ...Yaxun Liu2018-01-301-16/+19
* Move the stripping of invalid debug info from the Verifier to AutoUpgrade.Adrian Prantl2017-10-021-11/+13
* [AsmParser] Expose an API to parse a string starting with a type.Quentin Colombet2016-03-081-1/+18
* [AsmParser] Add a function to parse a standalone type.Quentin Colombet2016-03-071-0/+12
* AsmParser: Save and restore the parsing state for types using SlotMapping.Alex Lorenz2015-08-211-2/+2
* AsmParser: Add a function to parse a standalone constant value.Alex Lorenz2015-07-171-0/+12
* AsmParser: Extend the API to make the global value and metadata node slot map...Alex Lorenz2015-06-231-8/+12
* AsmParser: Require a terminating null character when creating memory buffer.Alex Lorenz2015-05-201-1/+1
* Add missing includes. make_unique proliferated everywhere.Benjamin Kramer2015-03-011-0/+1
* Remove std::move that was preventing return value optimization.Richard Trieu2015-01-171-1/+1
* Pass a MemoryBufferRef when we can avoid taking ownership.Rafael Espindola2014-08-261-13/+10
* Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...David Blaikie2014-08-211-1/+1
* Split parseAssembly into parseAssembly and parseAssemblyInto.Rafael Espindola2014-08-191-6/+13
* Modernize the .ll parsing interface.Rafael Espindola2014-08-191-18/+17
* These classes only need a StringRef, not a MemoryBuffer.Rafael Espindola2014-08-181-2/+2
* Pass a std::uinque_ptr to ParseAssembly to make the ownership explicit. NFC.Rafael Espindola2014-08-171-10/+9
* Update the MemoryBuffer API to use ErrorOr.Rafael Espindola2014-07-061-4/+5
* ParseIR: don't take ownership of the MemoryBufferAlp Toker2014-06-271-2/+1
* Remove 'using std::errro_code' from lib.Rafael Espindola2014-06-131-2/+1
* Don't use 'using std::error_code' in include/llvm.Rafael Espindola2014-06-121-0/+1
* Remove system_error.h.Rafael Espindola2014-06-121-1/+1
* [C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper2014-04-151-4/+4
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-061-3/+2
* [C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles2014-03-051-2/+2
* Move the LLVM IR asm writer header files into the IR directory, as theyChandler Carruth2014-01-071-2/+2
* keep only the StringRef version of getFileOrSTDIN.Rafael Espindola2013-06-251-1/+1
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-1/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-2/+2
* Make SMDiagnostic a little more sane. Instead of passing around note/warning...Chris Lattner2011-10-161-1/+1
* MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer2010-12-161-4/+3
* Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer2010-12-091-3/+4
* Don't print the filename twice in file-not-found errors.Dan Gohman2010-08-041-2/+1
* enhance SMDiagnostic to also maintain a pointer to the SourceMgr.Chris Lattner2010-04-061-2/+2
* Give llvm::SourceMgr the ability to have a client-specifiedChris Lattner2010-04-061-1/+1
* stringref-ize the MemoryBuffer::get apis. This requiresChris Lattner2010-04-051-1/+1
* Make the parser include the lower level error message in its own errorDan Gohman2010-01-211-1/+2
* Use MemoryBuffer::getBufferIdentifier() in the AsmPrinter insteadDan Gohman2009-09-081-4/+3
* Refactor common code from ParseAssemblyString and ParseAssemblyFile,Dan Gohman2009-09-021-19/+21
* switch the .ll parser to use SourceMgr.Chris Lattner2009-07-021-8/+13
* switch the .ll parser into SMDiagnostic.Chris Lattner2009-07-021-38/+6
* Make the use of const with respect to LLVMContext sane. Hopefully this is th...Owen Anderson2009-07-011-2/+2
* Hold the LLVMContext by reference rather than by pointer.Owen Anderson2009-07-011-2/+2
* Add a pointer to the owning LLVMContext to Module. This requires threading L...Owen Anderson2009-07-011-4/+5
* Fix the path to llvm/Assembly/Parser.h in a comment.Dan Gohman2009-01-081-1/+1
* Refactor some parser interfaces to fix PR3278 and a FIXME:Chris Lattner2009-01-041-11/+20
* Down with trailing whitespace!Misha Brukman2009-01-021-9/+8
* Reimplement the old and horrible bison parser for .ll files with a niceChris Lattner2009-01-021-46/+35
OpenPOWER on IntegriCloud