Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:SrcVal

935 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy,
937 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
944 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy,
946 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
953 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy,
955 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
962 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Type *DstTy,
964 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
965 assert(SrcVal->getType()->isDoubleTy() && DstTy->isFloatTy() &&
971 GenericValue Interpreter::executeFPExtInst(Value *SrcVal, Type *DstTy,
973 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
974 assert(SrcVal->getType()->isFloatTy() && DstTy->isDoubleTy() &&
980 GenericValue Interpreter::executeFPToUIInst(Value *SrcVal, Type *DstTy,
982 Type *SrcTy = SrcVal->getType();
984 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
994 GenericValue Interpreter::executeFPToSIInst(Value *SrcVal, Type *DstTy,
996 Type *SrcTy = SrcVal->getType();
998 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1008 GenericValue Interpreter::executeUIToFPInst(Value *SrcVal, Type *DstTy,
1010 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1020 GenericValue Interpreter::executeSIToFPInst(Value *SrcVal, Type *DstTy,
1022 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1033 GenericValue Interpreter::executePtrToIntInst(Value *SrcVal, Type *DstTy,
1036 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1037 assert(SrcVal->getType()->isPointerTy() && "Invalid PtrToInt instruction");
1043 GenericValue Interpreter::executeIntToPtrInst(Value *SrcVal, Type *DstTy,
1045 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1056 GenericValue Interpreter::executeBitCastInst(Value *SrcVal, Type *DstTy,
1059 Type *SrcTy = SrcVal->getType();
1060 GenericValue Dest, Src = getOperandValue(SrcVal, SF);