diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-28 17:34:32 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-28 17:34:32 +0000 |
commit | 94900774ad65d69274d564bac027d56a5801c7e2 (patch) | |
tree | 734373df83d371f3c02de89a822b881d2f241c12 /lib/Support/APInt.cpp | |
parent | f2253449e24712e96f7bdb7b54c20ddca8d6bb51 (diff) | |
download | external_llvm-94900774ad65d69274d564bac027d56a5801c7e2.zip external_llvm-94900774ad65d69274d564bac027d56a5801c7e2.tar.gz external_llvm-94900774ad65d69274d564bac027d56a5801c7e2.tar.bz2 |
Make the trunc/sext/zext methods return APInt& so that these operations
can be chained together with other operations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r-- | lib/Support/APInt.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index f965625..b56c561 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -896,7 +896,7 @@ double APInt::roundToDouble(bool isSigned) const { } // Truncate to new width. -void APInt::trunc(uint32_t width) { +APInt &APInt::trunc(uint32_t width) { assert(width < BitWidth && "Invalid APInt Truncate request"); assert(width >= IntegerType::MIN_INT_BITS && "Can't truncate to 0 bits"); uint32_t wordsBefore = getNumWords(); @@ -915,17 +915,17 @@ void APInt::trunc(uint32_t width) { pVal = newVal; } } - clearUnusedBits(); + return clearUnusedBits(); } // Sign extend to a new width. -void APInt::sext(uint32_t width) { +APInt &APInt::sext(uint32_t width) { assert(width > BitWidth && "Invalid APInt SignExtend request"); assert(width <= IntegerType::MAX_INT_BITS && "Too many bits"); // If the sign bit isn't set, this is the same as zext. if (!isNegative()) { zext(width); - return; + return *this; } // The sign bit is set. First, get some facts @@ -944,7 +944,7 @@ void APInt::sext(uint32_t width) { else pVal[wordsBefore-1] |= mask; clearUnusedBits(); - return; + return *this; } uint64_t mask = wordBits == 0 ? 0 : ~0ULL << wordBits; @@ -961,11 +961,11 @@ void APInt::sext(uint32_t width) { if (wordsBefore != 1) delete [] pVal; pVal = newVal; - clearUnusedBits(); + return clearUnusedBits(); } // Zero extend to a new width. -void APInt::zext(uint32_t width) { +APInt &APInt::zext(uint32_t width) { assert(width > BitWidth && "Invalid APInt ZeroExtend request"); assert(width <= IntegerType::MAX_INT_BITS && "Too many bits"); uint32_t wordsBefore = getNumWords(); @@ -982,6 +982,7 @@ void APInt::zext(uint32_t width) { delete [] pVal; pVal = newVal; } + return *this; } /// Arithmetic right-shift this APInt by shiftAmt. |