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
/
Support
Commit message (
Expand
)
Author
Age
Files
Lines
*
Adding parsing ability for .res file.
Eric Beckmann
2017-05-30
1
-0
/
+20
*
Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC.
Galina Kistanova
2017-05-30
1
-0
/
+2
*
[ManagedStatic] Avoid putting function pointers in template args.
Benjamin Kramer
2017-05-29
1
-3
/
+5
*
Try to work around MSVC being buggy. Attempt #1.
Benjamin Kramer
2017-05-29
1
-1
/
+3
*
[Timer] Move DefaultTimerGroup into a ManagedStatic.
Benjamin Kramer
2017-05-29
1
-3
/
+4
*
[Nios2] Target registration
Nikolai Bozhenov
2017-05-29
1
-0
/
+11
*
Disabled implicit-fallthrough warnings for ConvertUTF.cpp.
Galina Kistanova
2017-05-29
1
-0
/
+31
*
Support: adjust the default obj format for wasm
Saleem Abdulrasool
2017-05-29
1
-2
/
+4
*
[X86] Fixing VPOPCNTDQ feature set lookup.
Oren Ben Simhon
2017-05-28
1
-1
/
+1
*
Make helper functions static. NFC.
Benjamin Kramer
2017-05-26
1
-0
/
+2
*
Fix the ManagedStatic list ordering when using DynamicLibrary::addPermanentLi...
Frederich Munch
2017-05-26
1
-3
/
+8
*
Make BinaryStreamReader::readCString a bit faster.
Zachary Turner
2017-05-25
1
-13
/
+14
*
[X86] Adding vpopcntd and vpopcntq instructions
Oren Ben Simhon
2017-05-25
1
-0
/
+1
*
[APInt] Use std::end to avoid mentioning the size of a local buffer repeatedly.
Craig Topper
2017-05-24
1
-2
/
+2
*
Added LLVM_FALLTHROUGH to address gcc warning: this statement may fall through.
Galina Kistanova
2017-05-23
1
-0
/
+4
*
Added LLVM_FALLTHROUGH to address gcc warning: this statement may fall through.
Galina Kistanova
2017-05-23
1
-0
/
+1
*
Added LLVM_FALLTHROUGH to address gcc warning: this statement may fall through.
Galina Kistanova
2017-05-22
1
-0
/
+1
*
Added LLVM_FALLTHROUGH to address gcc warning: this statement may fall through.
Galina Kistanova
2017-05-19
1
-0
/
+1
*
[APInt] Add support for dividing or remainder by a uint64_t or int64_t.
Craig Topper
2017-05-19
1
-56
/
+197
*
[ThinLTO] Do not assert when adding a module with a different but
Akira Hatanaka
2017-05-18
1
-0
/
+18
*
Add some helpers for manipulating BinaryStreamRefs.
Zachary Turner
2017-05-17
1
-0
/
+5
*
[BinaryStream] Reduce the amount of boiler plate needed to use.
Zachary Turner
2017-05-17
4
-4
/
+158
*
Revert r303015, because it has the unintended side effect of breaking
Dimitry Andric
2017-05-17
1
-24
/
+6
*
Re-land r303274: "[CrashRecovery] Use SEH __try instead of VEH when available"
Reid Kleckner
2017-05-17
1
-48
/
+71
*
Revert "[CrashRecovery] Use SEH __try instead of VEH when available"
Reid Kleckner
2017-05-17
1
-66
/
+48
*
[CrashRecovery] Use SEH __try instead of VEH when available
Reid Kleckner
2017-05-17
1
-48
/
+66
*
Workaround for incorrect Win32 header on GCC.
Zachary Turner
2017-05-17
1
-6
/
+4
*
Fix for compilers with older CRT header libraries.
Zachary Turner
2017-05-16
1
-1
/
+6
*
[Support] Ignore OutputDebugString exceptions in our crash recovery.
Zachary Turner
2017-05-16
1
-0
/
+8
*
[APInt] Simplify a for loop initialization based on the fact that 'n' is know...
Craig Topper
2017-05-15
1
-1
/
+1
*
Fix DynamicLibraryTest.cpp on FreeBSD and NetBSD
Dimitry Andric
2017-05-14
1
-6
/
+24
*
[APInt] Use Lo_32/Hi_32/Make_64 in a few more places in the divide code. NFCI
Craig Topper
2017-05-13
1
-6
/
+6
*
[APInt] Fix typo in comment. NFC
Craig Topper
2017-05-13
1
-1
/
+1
*
[APInt] Add early outs for a division by 1 to udiv/urem/udivrem
Craig Topper
2017-05-12
1
-4
/
+18
*
[APInt] In udivrem, remember the bit width in a local variable so we don't re...
Craig Topper
2017-05-12
1
-4
/
+5
*
[APInt] Add an assert to check for divide by zero in udivrem. NFC
Craig Topper
2017-05-12
1
-0
/
+1
*
[APInt] Remove unnecessary checks of rhsWords==1 with lhsWords==1 from udiv a...
Craig Topper
2017-05-12
1
-2
/
+2
*
[APInt] Fix a case where udivrem might delete and create a new allocation ins...
Craig Topper
2017-05-12
1
-2
/
+5
*
[APInt] Add a utility method to change the bit width and storage size of an A...
Craig Topper
2017-05-12
1
-42
/
+31
*
[APInt] Remove an APInt copy from the return of APInt::multiplicativeInverse.
Craig Topper
2017-05-11
1
-1
/
+4
*
[APInt] Fix typo in comment. NFC
Craig Topper
2017-05-11
1
-1
/
+1
*
Fix -DLLVM_ENABLE_THREADS=OFF build after r302748
Hans Wennborg
2017-05-11
1
-0
/
+2
*
Remove spurious cast of nullptr. NFC.
Serge Guelton
2017-05-11
1
-2
/
+2
*
[APInt] Remove an unneeded extra temporary APInt from toString.
Craig Topper
2017-05-11
1
-5
/
+1
*
[APInt] Use negate() instead of copying an APInt to negate it and then writin...
Craig Topper
2017-05-11
1
-3
/
+3
*
Final (hopefully) fix for the build bots.
Zachary Turner
2017-05-11
1
-1
/
+1
*
Try again to fix the buildbots.
Zachary Turner
2017-05-11
1
-1
/
+1
*
Fix build errors with Parallel.
Zachary Turner
2017-05-11
1
-1
/
+1
*
[Support] Move Parallel algorithms from LLD to LLVM.
Zachary Turner
2017-05-11
2
-0
/
+137
*
[APInt] Add negate helper method to implement twos complement. Use it to shor...
Craig Topper
2017-05-10
1
-6
/
+3
[next]