aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bytecode/Reader/Reader.cpp')
-rw-r--r--lib/Bytecode/Reader/Reader.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp
index d294e9e025..9286279216 100644
--- a/lib/Bytecode/Reader/Reader.cpp
+++ b/lib/Bytecode/Reader/Reader.cpp
@@ -701,6 +701,8 @@ void BytecodeReader::ParseInstruction(std::vector<unsigned> &Oprnds,
}
case Instruction::ICmp:
case Instruction::FCmp:
+ if (Oprnds.size() != 3)
+ error("Cmp instructions requires 3 operands");
// These instructions encode the comparison predicate as the 3rd operand.
Result = CmpInst::create(Instruction::OtherOps(Opcode),
static_cast<unsigned short>(Oprnds[2]),
@@ -1351,6 +1353,16 @@ Value *BytecodeReader::ParseConstantPoolValue(unsigned TypeID) {
ConstantExpr::getShuffleVector(ArgVec[0], ArgVec[1], ArgVec[2]);
if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
return Result;
+ } else if (Opcode == Instruction::ICmp) {
+ if (ArgVec.size() != 2)
+ error("Invalid ICmp constant expr arguments");
+ unsigned short pred = read_vbr_uint();
+ return ConstantExpr::getICmp(pred, ArgVec[0], ArgVec[1]);
+ } else if (Opcode == Instruction::FCmp) {
+ if (ArgVec.size() != 2)
+ error("Invalid FCmp constant expr arguments");
+ unsigned short pred = read_vbr_uint();
+ return ConstantExpr::getFCmp(pred, ArgVec[0], ArgVec[1]);
} else { // All other 2-operand expressions
Constant* Result = ConstantExpr::get(Opcode, ArgVec[0], ArgVec[1]);
if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);