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
/
tools
/
lli
/
lli.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Simplify a few uses of remove_filename by using parent_path instead.
Rafael Espindola
2015-07-15
1
-2
/
+1
*
[lli] Make the OptLevel (-O=<char>) option accessible to the lazy JIT.
Lang Hames
2015-06-09
1
-12
/
+14
*
Migrate existing backends that care about software floating point
Eric Christopher
2015-05-12
1
-3
/
+0
*
Remove the JITEmitDebugInfo TargetOptions as they're only set and
Eric Christopher
2015-04-19
1
-23
/
+0
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
1
-1
/
+1
*
[Orc][lli] Add a very simple Orc-based lazy JIT to lli.
Lang Hames
2015-03-25
1
-7
/
+21
*
Purge unused includes throughout libSupport.
Benjamin Kramer
2015-03-23
1
-0
/
+1
*
Replace a few instances of NULL with nullptr.
David Majnemer
2015-02-26
1
-1
/
+1
*
[Orc] New JIT APIs.
Lang Hames
2015-01-23
1
-0
/
+9
*
Assigning and copying command line option objects shouldn't be allowed.
Chris Bieneman
2015-01-22
1
-1
/
+1
*
[MCJIT] Unique-ptrify the RTDyldMemoryManager member of MCJIT. NFC.
Lang Hames
2014-12-03
1
-1
/
+5
*
DebugIR: Delete -debug-ir
Duncan P. N. Exon Smith
2014-11-29
1
-9
/
+0
*
[MCJIT] Remove a few more references to JITMemoryManager that survived r218316.
Lang Hames
2014-09-23
1
-1
/
+0
*
[MCJIT] Delete the JTIMemoryManager and associated APIs.
Lang Hames
2014-09-23
1
-7
/
+4
*
Reinstate "Nuke the old JIT."
Eric Christopher
2014-09-02
1
-34
/
+8
*
Return a std::unique_ptr when creating a new MemoryBuffer.
Rafael Espindola
2014-08-27
1
-2
/
+1
*
Give ExecutionEngine of top level buffers.
Rafael Espindola
2014-08-26
1
-3
/
+1
*
Return a std::unique_ptr from the IRReader.h functions. NFC.
Rafael Espindola
2014-08-26
1
-2
/
+2
*
Modernize raw_fd_ostream's constructor a bit.
Rafael Espindola
2014-08-25
1
-2
/
+2
*
Quick fix for an use after free.
Rafael Espindola
2014-08-20
1
-1
/
+4
*
Don't own the buffer in object::Binary.
Rafael Espindola
2014-08-19
1
-8
/
+13
*
Make it explicit that ExecutionEngine takes ownership of the modules.
Rafael Espindola
2014-08-19
1
-8
/
+9
*
Simplify ownership with std::unique_ptr. NFC.
Rafael Espindola
2014-08-13
1
-2
/
+3
*
Temporarily Revert "Nuke the old JIT." as it's not quite ready to
Eric Christopher
2014-08-07
1
-8
/
+34
*
Nuke the old JIT.
Rafael Espindola
2014-08-07
1
-34
/
+8
*
Use object::Archive::create instead of new object::Archive.
Rafael Espindola
2014-08-01
1
-7
/
+6
*
Replace comment about ownership with std::unique_ptr.
Rafael Espindola
2014-08-01
1
-3
/
+5
*
Use std::unique_ptr to make the ownership explicit.
Rafael Espindola
2014-07-31
1
-2
/
+2
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-9
/
+9
*
Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.
Rafael Espindola
2014-06-24
1
-1
/
+1
*
Remove 'using std::error_code' from tools.
Rafael Espindola
2014-06-13
1
-3
/
+2
*
Don't use 'using std::error_code' in include/llvm.
Rafael Espindola
2014-06-12
1
-0
/
+1
*
PR19553: Memory leak in RuntimeDyldELF::createObjectImageFromFile
David Blaikie
2014-04-29
1
-1
/
+1
*
[C++] Use 'nullptr'. Tools edition.
Craig Topper
2014-04-25
1
-6
/
+6
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-08
1
-2
/
+2
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-3
/
+3
*
[C++11] Replace OwningPtr::take() with OwningPtr::release().
Ahmed Charles
2014-03-05
1
-1
/
+1
*
Replace the F_Binary flag with a F_Text one.
Rafael Espindola
2014-02-24
1
-1
/
+1
*
Replace the interim lli build fix with something cleaner
Alp Toker
2014-01-23
1
-12
/
+15
*
Tweak r199835 to use can_execute() instead of exists()
Alp Toker
2014-01-22
1
-2
/
+3
*
Eliminate inappropriate use of FindProgramByName() from lli
Alp Toker
2014-01-22
1
-11
/
+9
*
Change createObjectFile to return an ErrorOr.
Rafael Espindola
2014-01-22
1
-3
/
+3
*
Return an error_code from materializeAllPermanently.
Rafael Espindola
2014-01-14
1
-3
/
+3
*
Sanitize MCJIT remote execution
Renato Golin
2014-01-14
1
-2
/
+5
*
lli: Tweak CacheName not to contain DOS driveletter.
NAKAMURA Takumi
2014-01-10
1
-1
/
+9
*
lli: LLIObjectCache: Use llvm::sys::path to get dirname.
NAKAMURA Takumi
2014-01-10
1
-2
/
+5
*
Whitespace.
NAKAMURA Takumi
2014-01-10
1
-2
/
+2
*
Fix accidental use of the exotic "std::string::back()" method. Turns out it's
Lang Hames
2014-01-09
1
-1
/
+2
*
Add an "-object-cache-dir=<string>" option to LLI. This option specifies the
Lang Hames
2014-01-09
1
-7
/
+23
[next]