Lines Matching refs:DBitWidth

1273     unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth();  in executeTruncInst()  local
1278 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.trunc(DBitWidth); in executeTruncInst()
1281 unsigned DBitWidth = DITy->getBitWidth(); in executeTruncInst() local
1282 Dest.IntVal = Src.IntVal.trunc(DBitWidth); in executeTruncInst()
1293 unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeSExtInst() local
1298 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.sext(DBitWidth); in executeSExtInst()
1301 unsigned DBitWidth = DITy->getBitWidth(); in executeSExtInst() local
1302 Dest.IntVal = Src.IntVal.sext(DBitWidth); in executeSExtInst()
1313 unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeZExtInst() local
1319 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.zext(DBitWidth); in executeZExtInst()
1322 unsigned DBitWidth = DITy->getBitWidth(); in executeZExtInst() local
1323 Dest.IntVal = Src.IntVal.zext(DBitWidth); in executeZExtInst()
1381 uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeFPToUIInst() local
1390 Src.AggregateVal[i].FloatVal, DBitWidth); in executeFPToUIInst()
1394 Src.AggregateVal[i].DoubleVal, DBitWidth); in executeFPToUIInst()
1398 uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executeFPToUIInst() local
1402 Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); in executeFPToUIInst()
1404 Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); in executeFPToUIInst()
1419 uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeFPToSIInst() local
1428 Src.AggregateVal[i].FloatVal, DBitWidth); in executeFPToSIInst()
1432 Src.AggregateVal[i].DoubleVal, DBitWidth); in executeFPToSIInst()
1436 unsigned DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executeFPToSIInst() local
1440 Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); in executeFPToSIInst()
1442 Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); in executeFPToSIInst()
1516 uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executePtrToIntInst() local
1520 Dest.IntVal = APInt(DBitWidth, (intptr_t) Src.PointerVal); in executePtrToIntInst()