Lines Matching refs:DBitWidth

1224     unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth();  in executeTruncInst()  local
1229 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.trunc(DBitWidth); in executeTruncInst()
1232 unsigned DBitWidth = DITy->getBitWidth(); in executeTruncInst() local
1233 Dest.IntVal = Src.IntVal.trunc(DBitWidth); in executeTruncInst()
1244 unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeSExtInst() local
1249 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.sext(DBitWidth); in executeSExtInst()
1252 unsigned DBitWidth = DITy->getBitWidth(); in executeSExtInst() local
1253 Dest.IntVal = Src.IntVal.sext(DBitWidth); in executeSExtInst()
1264 unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeZExtInst() local
1270 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.zext(DBitWidth); in executeZExtInst()
1273 unsigned DBitWidth = DITy->getBitWidth(); in executeZExtInst() local
1274 Dest.IntVal = Src.IntVal.zext(DBitWidth); in executeZExtInst()
1332 uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeFPToUIInst() local
1341 Src.AggregateVal[i].FloatVal, DBitWidth); in executeFPToUIInst()
1345 Src.AggregateVal[i].DoubleVal, DBitWidth); in executeFPToUIInst()
1349 uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executeFPToUIInst() local
1353 Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); in executeFPToUIInst()
1355 Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); in executeFPToUIInst()
1370 uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeFPToSIInst() local
1379 Src.AggregateVal[i].FloatVal, DBitWidth); in executeFPToSIInst()
1383 Src.AggregateVal[i].DoubleVal, DBitWidth); in executeFPToSIInst()
1387 unsigned DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executeFPToSIInst() local
1391 Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); in executeFPToSIInst()
1393 Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); in executeFPToSIInst()
1467 uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executePtrToIntInst() local
1471 Dest.IntVal = APInt(DBitWidth, (intptr_t) Src.PointerVal); in executePtrToIntInst()