Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:SrcVal

915 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy,
917 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
924 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy,
926 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
933 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy,
935 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
942 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Type *DstTy,
944 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
945 assert(SrcVal->getType()->isDoubleTy() && DstTy->isFloatTy() &&
951 GenericValue Interpreter::executeFPExtInst(Value *SrcVal, Type *DstTy,
953 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
954 assert(SrcVal->getType()->isFloatTy() && DstTy->isDoubleTy() &&
960 GenericValue Interpreter::executeFPToUIInst(Value *SrcVal, Type *DstTy,
962 Type *SrcTy = SrcVal->getType();
964 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
974 GenericValue Interpreter::executeFPToSIInst(Value *SrcVal, Type *DstTy,
976 Type *SrcTy = SrcVal->getType();
978 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
988 GenericValue Interpreter::executeUIToFPInst(Value *SrcVal, Type *DstTy,
990 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1000 GenericValue Interpreter::executeSIToFPInst(Value *SrcVal, Type *DstTy,
1002 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1013 GenericValue Interpreter::executePtrToIntInst(Value *SrcVal, Type *DstTy,
1016 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1017 assert(SrcVal->getType()->isPointerTy() && "Invalid PtrToInt instruction");
1023 GenericValue Interpreter::executeIntToPtrInst(Value *SrcVal, Type *DstTy,
1025 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1036 GenericValue Interpreter::executeBitCastInst(Value *SrcVal, Type *DstTy,
1039 Type *SrcTy = SrcVal->getType();
1040 GenericValue Dest, Src = getOperandValue(SrcVal, SF);