Lines Matching defs:SrcVal

1231 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy,
1233 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1234 Type *SrcTy = SrcVal->getType();
1251 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy,
1253 Type *SrcTy = SrcVal->getType();
1254 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1271 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy,
1273 Type *SrcTy = SrcVal->getType();
1274 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1292 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Type *DstTy,
1294 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1296 if (isa<VectorType>(SrcVal->getType())) {
1297 assert(SrcVal->getType()->getScalarType()->isDoubleTy() &&
1307 assert(SrcVal->getType()->isDoubleTy() && DstTy->isFloatTy() &&
1315 GenericValue Interpreter::executeFPExtInst(Value *SrcVal, Type *DstTy,
1317 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1319 if (isa<VectorType>(SrcVal->getType())) {
1320 assert(SrcVal->getType()->getScalarType()->isFloatTy() &&
1329 assert(SrcVal->getType()->isFloatTy() && DstTy->isDoubleTy() &&
1337 GenericValue Interpreter::executeFPToUIInst(Value *SrcVal, Type *DstTy,
1339 Type *SrcTy = SrcVal->getType();
1340 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1375 GenericValue Interpreter::executeFPToSIInst(Value *SrcVal, Type *DstTy,
1377 Type *SrcTy = SrcVal->getType();
1378 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1412 GenericValue Interpreter::executeUIToFPInst(Value *SrcVal, Type *DstTy,
1414 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1416 if (isa<VectorType>(SrcVal->getType())) {
1444 GenericValue Interpreter::executeSIToFPInst(Value *SrcVal, Type *DstTy,
1446 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1448 if (isa<VectorType>(SrcVal->getType())) {
1478 GenericValue Interpreter::executePtrToIntInst(Value *SrcVal, Type *DstTy,
1481 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1482 assert(SrcVal->getType()->isPointerTy() && "Invalid PtrToInt instruction");
1488 GenericValue Interpreter::executeIntToPtrInst(Value *SrcVal, Type *DstTy,
1490 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1501 GenericValue Interpreter::executeBitCastInst(Value *SrcVal, Type *DstTy,
1506 Type *SrcTy = SrcVal->getType();
1507 GenericValue Dest, Src = getOperandValue(SrcVal, SF);