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
/
ExecutionEngine
/
RuntimeDyld
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move three methods only used by MCJIT to MCJIT.
Rafael Espindola
2014-12-10
1
-6
/
+34
*
[MCJIT] Remove the local symbol table from RuntimeDlyd - it's not needed.
Lang Hames
2014-11-27
10
-77
/
+59
*
[MCJIT] Replace JITEventListener::anchor (temporarily removed in r222861), and
Lang Hames
2014-11-27
2
-248
/
+0
*
[MCJIT] Move get-any-symbol-load-address logic out of RuntimeDyld and into
Lang Hames
2014-11-27
2
-9
/
+3
*
[MCJIT] Fix missing return statement.
Lang Hames
2014-11-26
1
-0
/
+1
*
[MCJIT] Reapply r222828 and r222810-r222812 with fix for MSVC move-op issues.
Lang Hames
2014-11-26
14
-558
/
+379
*
Reverting r222828 and r222810-r222812 as they broke the build on Windows.
Aaron Ballman
2014-11-26
14
-370
/
+558
*
Removing a spurious semicolon; NFC
Aaron Ballman
2014-11-26
1
-1
/
+1
*
Add missing "override".
Evgeniy Stepanov
2014-11-26
1
-1
/
+1
*
[MCJIT] Re-enable GDB registration (temporarily disabled in r222811), but check
Lang Hames
2014-11-26
1
-0
/
+5
*
[MCJIT] Clean up RuntimeDyld's quirky object-ownership/modification scheme.
Lang Hames
2014-11-26
14
-558
/
+365
*
Fix covered switch warning
Michael J. Spencer
2014-11-18
1
-0
/
+1
*
Changing a StringRef::begin() call into StringRef::data(); NFC.
Aaron Ballman
2014-11-12
1
-1
/
+1
*
Fixing a -Wcast-qual warning; NFC.
Aaron Ballman
2014-11-12
1
-2
/
+3
*
Remove the now unused StringRefMemoryObject.h.
Rafael Espindola
2014-11-12
1
-1
/
+0
*
Pass an ArrayRef to MCDisassembler::getInstruction.
Rafael Espindola
2014-11-12
1
-1
/
+2
*
[JIT] Fix more missing endian conversions (opcodes for AArch64, ARM, and Mips...
Daniel Sanders
2014-11-06
2
-31
/
+18
*
[JIT] Fix some more missing endian conversions in RuntimeDyld
Daniel Sanders
2014-11-01
1
-6
/
+7
*
[MCJIT] Defer application of AArch64 MachO GOT relocations until resolve time.
Lang Hames
2014-10-21
1
-5
/
+5
*
[MCJIT] Temporarily revert r220245 - it broke several bots.
Lang Hames
2014-10-21
1
-5
/
+1
*
[MCJIT] Make MCJIT honor symbol visibility settings when populating the global
Lang Hames
2014-10-20
1
-1
/
+5
*
[MCJIT] Replace memcpy with readBytesUnaligned in RuntimeDyldMachOI386.
Lang Hames
2014-10-10
1
-4
/
+2
*
Remove bogus std::error_code returns form SectionRef.
Rafael Espindola
2014-10-08
5
-62
/
+30
*
Fix indentation.
Rafael Espindola
2014-10-08
1
-4
/
+4
*
[MCJIT] Don't crash in debugging output for sections that aren't emitted.
Lang Hames
2014-10-01
1
-0
/
+5
*
[MCJIT] Fix some more RuntimeDyld debugging output format specifiers.
Lang Hames
2014-09-23
1
-3
/
+3
*
Converting the JITDebugLock mutex to a ManagedStatic to avoid the static cons...
Chris Bieneman
2014-09-19
1
-4
/
+4
*
[MCJIT] Fix a debugging-output formatting bug in RuntimeDyld.
Lang Hames
2014-09-18
1
-1
/
+1
*
[MCJIT] Improve the "stub not found" diagnostic in RuntimeDyldChecker.
Lang Hames
2014-09-11
1
-1
/
+4
*
[MCJIT] Add support for ARM HALF_DIFF relocations to MCJIT.
Lang Hames
2014-09-11
4
-58
/
+183
*
[MCJIT] Take the relocation addend into account when applying ARM MachO VANILLA
Lang Hames
2014-09-11
1
-1
/
+2
*
[MCJIT] Remove redundant architecture check from RuntimeDyldMachOI386.
Lang Hames
2014-09-10
1
-1
/
+1
*
[MCJIT] Revert partial RuntimeDyldELF cleanup that was prematurely committed in
Lang Hames
2014-09-07
1
-3
/
+3
*
[MCJIT] Rewrite RuntimeDyldMachO and its derived classes to use the 'Offset'
Lang Hames
2014-09-07
7
-18
/
+18
*
[MCJIT] Fix a bug RuntimeDyldImpl's read/writeBytesUnaligned methods.
Lang Hames
2014-09-07
1
-19
/
+17
*
[MCJIT] Const-ify the symbol lookup operations on RuntimeDyld.
Lang Hames
2014-09-05
2
-6
/
+6
*
unique_ptrify RuntimeDyld::Dyld
David Blaikie
2014-09-04
1
-7
/
+7
*
[MCJIT] Make sure eh-frame fixups use the target's pointer type, not the host's.
Lang Hames
2014-09-04
6
-39
/
+63
*
[MCJIT] Add command-line argument to llvm-rtdyld to specify target addresses for
Lang Hames
2014-09-04
3
-0
/
+19
*
unique_ptrify RuntimeDyldImpl::loadObject
David Blaikie
2014-09-03
2
-8
/
+7
*
unique_ptrify a bunch of stuff through RuntimeDyld::loadObject
David Blaikie
2014-09-03
5
-38
/
+45
*
Add override to overriden virtual methods, remove virtual keywords.
Benjamin Kramer
2014-09-03
5
-5
/
+6
*
[MCJIT] Make llvm-rtdyld process eh_frame sections in -verify mode (accidentally
Lang Hames
2014-09-03
1
-1
/
+0
*
[MCJIT] Add a 'section_addr' builtin function to RuntimeDyldChecker.
Lang Hames
2014-09-03
3
-25
/
+141
*
[MCJIT] Move endian-aware read/writes from RuntimeDyldMachO into
Lang Hames
2014-08-29
8
-57
/
+46
*
[MCJIT] Fix format specifiers for debug output in RuntimeDyld.
Lang Hames
2014-08-28
2
-3
/
+3
*
Fix unaligned reads/writes in X86JIT and RuntimeDyldELF.
Alexey Samsonov
2014-08-27
1
-26
/
+22
*
[MCJIT] Replace a C-style cast in RuntimeDyldImpl.h.
Lang Hames
2014-08-27
1
-1
/
+1
*
[MCJIT] More endianness fixes for RuntimeDyldMachO.
Lang Hames
2014-08-27
2
-12
/
+28
*
Silence unused function warning in Release builds.
Benjamin Kramer
2014-08-26
1
-0
/
+2
[next]