Skip to content

Commit

Permalink
[BitcodeReader] Ensure we can read constant vector selects with an i1…
Browse files Browse the repository at this point in the history
… condition

Summary:
Constant vectors weren't allowed to have an i1 condition in the
BitcodeReader. Make sure we have the same restrictions that are
documented, not more.

Reviewers: nlewycky, rafael, kschimpf

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D12440

llvm-svn: 246459
  • Loading branch information
filcab committed Aug 31, 2015
1 parent b9c2c71 commit 984fefd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 5 additions & 4 deletions llvm/lib/Bitcode/Reader/BitcodeReader.cpp
Expand Up @@ -2475,11 +2475,12 @@ std::error_code BitcodeReader::parseConstants() {

Type *SelectorTy = Type::getInt1Ty(Context);

// If CurTy is a vector of length n, then Record[0] must be a <n x i1>
// vector. Otherwise, it must be a single bit.
// The selector might be an i1 or an <n x i1>
// Get the type from the ValueList before getting a forward ref.
if (VectorType *VTy = dyn_cast<VectorType>(CurTy))
SelectorTy = VectorType::get(Type::getInt1Ty(Context),
VTy->getNumElements());
if (Value *V = ValueList[Record[0]])
if (SelectorTy != V->getType())
SelectorTy = VectorType::get(SelectorTy, VTy->getNumElements());

V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
SelectorTy),
Expand Down
8 changes: 8 additions & 0 deletions llvm/test/Bitcode/select.ll
Expand Up @@ -8,3 +8,11 @@ define <2 x i32> @main() {
; CHECK: define <2 x i32> @main() {
; CHECK: ret <2 x i32> <i32 0, i32 undef>
; CHECK: }

define <2 x float> @f() {
ret <2 x float> select (i1 ptrtoint (<2 x float> ()* @f to i1), <2 x float> <float 1.000000e+00, float 0.000000e+00>, <2 x float> zeroinitializer)
}

; CHECK: define <2 x float> @f() {
; CHECK: ret <2 x float> select (i1 ptrtoint (<2 x float> ()* @f to i1), <2 x float> <float 1.000000e+00, float 0.000000e+00>, <2 x float> zeroinitializer)
; CHECK: }

0 comments on commit 984fefd

Please sign in to comment.