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