Lines Matching refs:DBitWidth

1237     unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth();  in executeTruncInst()  local
1242 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.trunc(DBitWidth); in executeTruncInst()
1245 unsigned DBitWidth = DITy->getBitWidth(); in executeTruncInst() local
1246 Dest.IntVal = Src.IntVal.trunc(DBitWidth); in executeTruncInst()
1257 unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeSExtInst() local
1262 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.sext(DBitWidth); in executeSExtInst()
1265 unsigned DBitWidth = DITy->getBitWidth(); in executeSExtInst() local
1266 Dest.IntVal = Src.IntVal.sext(DBitWidth); in executeSExtInst()
1277 unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeZExtInst() local
1283 Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.zext(DBitWidth); in executeZExtInst()
1286 unsigned DBitWidth = DITy->getBitWidth(); in executeZExtInst() local
1287 Dest.IntVal = Src.IntVal.zext(DBitWidth); in executeZExtInst()
1345 uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeFPToUIInst() local
1354 Src.AggregateVal[i].FloatVal, DBitWidth); in executeFPToUIInst()
1358 Src.AggregateVal[i].DoubleVal, DBitWidth); in executeFPToUIInst()
1362 uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executeFPToUIInst() local
1366 Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); in executeFPToUIInst()
1368 Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); in executeFPToUIInst()
1383 uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); in executeFPToSIInst() local
1392 Src.AggregateVal[i].FloatVal, DBitWidth); in executeFPToSIInst()
1396 Src.AggregateVal[i].DoubleVal, DBitWidth); in executeFPToSIInst()
1400 unsigned DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executeFPToSIInst() local
1404 Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); in executeFPToSIInst()
1406 Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); in executeFPToSIInst()
1480 uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); in executePtrToIntInst() local
1484 Dest.IntVal = APInt(DBitWidth, (intptr_t) Src.PointerVal); in executePtrToIntInst()