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
/
unittests
/
ADT
/
APIntTest.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[APInt] Keep the original bit width in quotient and remainder
Krzysztof Parzyszek
2018-07-19
1
-0
/
+32
*
[APInt] Add helpers for rounding u/sdivs.
Tim Shen
2018-06-25
1
-0
/
+67
*
Bring back APInt self-move assignment check for MSVC only
Reid Kleckner
2018-04-24
1
-0
/
+32
*
[APInt] Fix extractBits to correctly handle Result.isSingleWord() case.
Tim Shen
2018-02-16
1
-0
/
+7
*
[APInt] Add support for dividing or remainder by a uint64_t or int64_t.
Craig Topper
2017-05-19
1
-0
/
+58
*
[APInt] Add support for multiplying by a uint64_t.
Craig Topper
2017-05-08
1
-0
/
+19
*
[APInt] Remove support for wrapping from APInt::setBits.
Craig Topper
2017-04-30
1
-15
/
+15
*
[APInt] Add ashrInPlace method and rewrite ashr to make a copy and then call ...
Craig Topper
2017-04-24
1
-0
/
+36
*
[APInt] Make behavior of ashr by BitWidth consistent between single and multi...
Craig Topper
2017-04-24
1
-1
/
+1
*
[APInt] In sext single word case, use SignExtend64 and let the APInt construc...
Craig Topper
2017-04-23
1
-0
/
+20
*
Revert "[APInt] Add ashrInPlace method and implement ashr using it. Also fix ...
Renato Golin
2017-04-23
1
-19
/
+1
*
[APInt] Add ashrInPlace method and implement ashr using it. Also fix a bug in...
Craig Topper
2017-04-22
1
-1
/
+19
*
[APInt] Add isSubsetOf method that can check if one APInt is a subset of anot...
Craig Topper
2017-04-20
1
-0
/
+29
*
Recommit "[APInt] Add back the asserts that check that the APInt shift method...
Craig Topper
2017-04-20
1
-2
/
+2
*
Revert r300811 "[APInt] Add back the asserts that check that the APInt shift ...
Craig Topper
2017-04-20
1
-2
/
+2
*
[APInt] Add back the asserts that check that the APInt shift methods aren't c...
Craig Topper
2017-04-20
1
-2
/
+2
*
[APInt] Make operator<<= shift in place. Improve the implementation of tcShif...
Craig Topper
2017-04-18
1
-0
/
+33
*
[APInt] Merge the multiword code from lshrInPlace and tcShiftRight into a sin...
Craig Topper
2017-04-17
1
-5
/
+33
*
[APInt] Remove self move check from move assignment operator
Craig Topper
2017-04-17
1
-30
/
+2
*
[APInt] Fix a bug in lshr by a value more than 64 bits above the bit width.
Craig Topper
2017-04-16
1
-0
/
+5
*
Remove all allocation and divisions from GreatestCommonDivisor
Richard Smith
2017-04-13
1
-0
/
+43
*
[APInt] Move isMask and isShiftedMask out of APIntOps and into the APInt clas...
Craig Topper
2017-04-03
1
-14
/
+15
*
[APInt] Add a public typedef for the internal type of APInt use it instead of...
Craig Topper
2017-04-02
1
-37
/
+37
*
[APInt] Fix bugs in isShiftedMask to match behavior of the similar function i...
Craig Topper
2017-03-31
1
-8
/
+8
*
[APInt] Rewrite getLoBits in a way that will do one less memory allocation in...
Craig Topper
2017-03-31
1
-0
/
+18
*
[APInt] Add unittests that demonstrate how very broken APIntOps::isShiftedMas...
Craig Topper
2017-03-31
1
-0
/
+25
*
[APInt] Use memset in setAllBits.
Craig Topper
2017-03-27
1
-0
/
+38
*
Fix signed/unsigned comparison warnings
Simon Pilgrim
2017-03-10
1
-11
/
+11
*
[APInt] Add APInt::insertBits() method to insert an APInt into a larger APInt
Simon Pilgrim
2017-03-10
1
-0
/
+53
*
Strip trailing whitespace.
Simon Pilgrim
2017-03-07
1
-4
/
+1
*
[APInt] Add rvalue reference support to and, or, xor operations to allow thei...
Craig Topper
2017-03-07
1
-0
/
+120
*
[APInt] Fix test names in unittest to match functions being tested. NFC
Craig Topper
2017-03-07
1
-2
/
+2
*
[APInt] Add getBitsSetFrom and setBitsFrom to set upper bits starting at a bit
Craig Topper
2017-03-07
1
-0
/
+21
*
[APInt] Implement getLowBitsSet/getHighBitsSet/getBitsSet using setLowBits/se...
Craig Topper
2017-03-07
1
-0
/
+18
*
[APInt] Add setLowBits/setHighBits methods to APInt.
Craig Topper
2017-03-07
1
-0
/
+121
*
[APInt] Move operator~ out of line to make it better able to reused memory al...
Craig Topper
2017-03-06
1
-0
/
+24
*
[APInt] Use UINT64_MAX instead of ~0ULL. NFC
Craig Topper
2017-02-26
1
-0
/
+10
*
[APInt] Remove unnecessary early out from getLowBitsSet. The same case is han...
Craig Topper
2017-02-26
1
-0
/
+10
*
[APInt] Add APInt::extractBits() method to extract APInt subrange (reapplied)
Simon Pilgrim
2017-02-25
1
-0
/
+16
*
Revert: r296141 [APInt] Add APInt::extractBits() method to extract APInt subr...
Simon Pilgrim
2017-02-24
1
-12
/
+0
*
[APInt] Add APInt::extractBits() method to extract APInt subrange
Simon Pilgrim
2017-02-24
1
-0
/
+12
*
Fix signed/unsigned comparison warnings
Simon Pilgrim
2017-02-24
1
-4
/
+4
*
[APInt] Add APInt::setBits() method to set all bits in range
Simon Pilgrim
2017-02-24
1
-0
/
+94
*
[APInt] Fix rotl/rotr when the shift amount is greater than the total bit width.
Joey Gouly
2017-02-07
1
-2
/
+52
*
[APInt] Add integer API bor bitwise operations.
Amaury Sechet
2017-02-03
1
-0
/
+52
*
[APInt] Remove calls to clearUnusedBits from XorSlowCase and operator^=
Craig Topper
2017-01-24
1
-0
/
+30
*
Fix UB in APInt::ashr
Jonathan Roelofs
2016-08-10
1
-0
/
+5
*
Remove obsolete XFAIL for a test that used to sometimes miscompile under
Dimitry Andric
2016-07-26
1
-5
/
+0
*
Use RValue refs in APInt add/sub methods.
Pete Cooper
2016-07-22
1
-0
/
+169
*
Don't allocate in APInt::slt. NFC.
Pete Cooper
2016-05-26
1
-0
/
+28
[next]