index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
AsmParser
/
Parser.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[llvm] Migrate llvm::make_unique to std::make_unique
Jonas Devlieghere
2019-08-15
1
-4
/
+4
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[ThinLTO] Parse module summary index from assembly
Teresa Johnson
2018-06-26
1
-5
/
+78
*
LLParser: add an argument for overriding data layout and do not check alloca ...
Yaxun Liu
2018-01-30
1
-16
/
+19
*
Move the stripping of invalid debug info from the Verifier to AutoUpgrade.
Adrian Prantl
2017-10-02
1
-11
/
+13
*
[AsmParser] Expose an API to parse a string starting with a type.
Quentin Colombet
2016-03-08
1
-1
/
+18
*
[AsmParser] Add a function to parse a standalone type.
Quentin Colombet
2016-03-07
1
-0
/
+12
*
AsmParser: Save and restore the parsing state for types using SlotMapping.
Alex Lorenz
2015-08-21
1
-2
/
+2
*
AsmParser: Add a function to parse a standalone constant value.
Alex Lorenz
2015-07-17
1
-0
/
+12
*
AsmParser: Extend the API to make the global value and metadata node slot map...
Alex Lorenz
2015-06-23
1
-8
/
+12
*
AsmParser: Require a terminating null character when creating memory buffer.
Alex Lorenz
2015-05-20
1
-1
/
+1
*
Add missing includes. make_unique proliferated everywhere.
Benjamin Kramer
2015-03-01
1
-0
/
+1
*
Remove std::move that was preventing return value optimization.
Richard Trieu
2015-01-17
1
-1
/
+1
*
Pass a MemoryBufferRef when we can avoid taking ownership.
Rafael Espindola
2014-08-26
1
-13
/
+10
*
Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...
David Blaikie
2014-08-21
1
-1
/
+1
*
Split parseAssembly into parseAssembly and parseAssemblyInto.
Rafael Espindola
2014-08-19
1
-6
/
+13
*
Modernize the .ll parsing interface.
Rafael Espindola
2014-08-19
1
-18
/
+17
*
These classes only need a StringRef, not a MemoryBuffer.
Rafael Espindola
2014-08-18
1
-2
/
+2
*
Pass a std::uinque_ptr to ParseAssembly to make the ownership explicit. NFC.
Rafael Espindola
2014-08-17
1
-10
/
+9
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-4
/
+5
*
ParseIR: don't take ownership of the MemoryBuffer
Alp Toker
2014-06-27
1
-2
/
+1
*
Remove 'using std::errro_code' from lib.
Rafael Espindola
2014-06-13
1
-2
/
+1
*
Don't use 'using std::error_code' in include/llvm.
Rafael Espindola
2014-06-12
1
-0
/
+1
*
Remove system_error.h.
Rafael Espindola
2014-06-12
1
-1
/
+1
*
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
2014-04-15
1
-4
/
+4
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-3
/
+2
*
[C++11] Replace OwningPtr::take() with OwningPtr::release().
Ahmed Charles
2014-03-05
1
-2
/
+2
*
Move the LLVM IR asm writer header files into the IR directory, as they
Chandler Carruth
2014-01-07
1
-2
/
+2
*
keep only the StringRef version of getFileOrSTDIN.
Rafael Espindola
2013-06-25
1
-1
/
+1
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-1
/
+1
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-2
/
+2
*
Make SMDiagnostic a little more sane. Instead of passing around note/warning...
Chris Lattner
2011-10-16
1
-1
/
+1
*
MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...
Michael J. Spencer
2010-12-16
1
-4
/
+3
*
Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...
Michael J. Spencer
2010-12-09
1
-3
/
+4
*
Don't print the filename twice in file-not-found errors.
Dan Gohman
2010-08-04
1
-2
/
+1
*
enhance SMDiagnostic to also maintain a pointer to the SourceMgr.
Chris Lattner
2010-04-06
1
-2
/
+2
*
Give llvm::SourceMgr the ability to have a client-specified
Chris Lattner
2010-04-06
1
-1
/
+1
*
stringref-ize the MemoryBuffer::get apis. This requires
Chris Lattner
2010-04-05
1
-1
/
+1
*
Make the parser include the lower level error message in its own error
Dan Gohman
2010-01-21
1
-1
/
+2
*
Use MemoryBuffer::getBufferIdentifier() in the AsmPrinter instead
Dan Gohman
2009-09-08
1
-4
/
+3
*
Refactor common code from ParseAssemblyString and ParseAssemblyFile,
Dan Gohman
2009-09-02
1
-19
/
+21
*
switch the .ll parser to use SourceMgr.
Chris Lattner
2009-07-02
1
-8
/
+13
*
switch the .ll parser into SMDiagnostic.
Chris Lattner
2009-07-02
1
-38
/
+6
*
Make the use of const with respect to LLVMContext sane. Hopefully this is th...
Owen Anderson
2009-07-01
1
-2
/
+2
*
Hold the LLVMContext by reference rather than by pointer.
Owen Anderson
2009-07-01
1
-2
/
+2
*
Add a pointer to the owning LLVMContext to Module. This requires threading L...
Owen Anderson
2009-07-01
1
-4
/
+5
*
Fix the path to llvm/Assembly/Parser.h in a comment.
Dan Gohman
2009-01-08
1
-1
/
+1
*
Refactor some parser interfaces to fix PR3278 and a FIXME:
Chris Lattner
2009-01-04
1
-11
/
+20
*
Down with trailing whitespace!
Misha Brukman
2009-01-02
1
-9
/
+8
*
Reimplement the old and horrible bison parser for .ll files with a nice
Chris Lattner
2009-01-02
1
-46
/
+35
[next]