diff options
| author | Dan Gohman <gohman@apple.com> | 2009-01-27 20:39:34 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-01-27 20:39:34 +0000 |
| commit | fb58faf29e10a4f798f661a317ed5f0992284842 (patch) | |
| tree | 215efc63ed808aaaf10c541aa2a08d0b517e22b7 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
| parent | 570c357ded427b55c35ddfe4b5ff73e221ea1305 (diff) | |
| download | bcm5719-llvm-fb58faf29e10a4f798f661a317ed5f0992284842.tar.gz bcm5719-llvm-fb58faf29e10a4f798f661a317ed5f0992284842.zip | |
Add an assertion to the form of SelectionDAG::getConstant that takes
a uint64_t to verify that the value is in range for the given type,
to help catch accidental overflow. Fix a few places that relied on
getConstant implicitly truncating the value.
llvm-svn: 63128
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 7fd50aca401..63fc97c20a8 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -848,6 +848,9 @@ SDValue SelectionDAG::getNOT(SDValue Val, MVT VT) { SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) { MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; + assert((EltVT.getSizeInBits() >= 64 || + (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) && + "getConstant with a uint64_t value that doesn't fit in the type!"); return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT); } |

