HomeSort by relevance Sort by last modified time
    Searched refs:CSrc (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCasts.cpp 289 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
291 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), TD)) {
292 // The first cast (CSrc) is eliminable so we need to fix up or replace
293 // the second cast (CI). CSrc will then have a good chance of being dead.
294 return CastInst::Create(opc, CSrc->getOperand(0), CI.getType());
798 if (TruncInst *CSrc = dyn_cast<TruncInst>(Src)) { // A->B->C cast
803 Value *A = CSrc->getOperand(0);
805 unsigned MidSize = CSrc->getType()->getScalarSizeInBits();
    [all...]
InstCombineLoadStoreAlloca.cpp 110 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
115 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 265 if (auto *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
266 if (Instruction::CastOps NewOpc = isEliminableCastPair(CSrc, &CI)) {
267 // The first cast (CSrc) is eliminable so we need to fix up or replace
268 // the second cast (CI). CSrc will then have a good chance of being dead.
270 auto *Res = CastInst::Create(NewOpc, CSrc->getOperand(0), Ty);
272 if (CSrc->hasOneUse())
273 replaceAllDbgUsesWith(*CSrc, *Res, CI, DT);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 293 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
295 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), DL)) {
296 // The first cast (CSrc) is eliminable so we need to fix up or replace
297 // the second cast (CI). CSrc will then have a good chance of being dead.
298 return CastInst::Create(opc, CSrc->getOperand(0), CI.getType());
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]

Completed in 164 milliseconds