HomeSort by: relevance | last modified time | path
    Searched defs:CastOp (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 143 Optional<Instruction::CastOps> CastOp;
156 SimplifyAction(Instruction::CastOps CastOp) : CastOp(CastOp) {}
345 if (Action.CastOp)
346 return CastInst::Create(*Action.CastOp, II->getArgOperand(0), II->getType(),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Float2Int.cpp 208 auto CastOp = (Instruction::CastOps)I->getOpcode();
209 seen(I, validateRange(Input.castOp(CastOp, MaxIntegerBW+1)));
283 auto CastOp = (Instruction::CastOps)I->getOpcode();
284 return Ops[0].castOp(CastOp, MaxIntegerBW+1);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
AtomicExpandPass.cpp 988 Instruction::CastOps CastOp = Instruction::ZExt;
991 CastOp = Instruction::SExt;
994 Builder.CreateCast(CastOp, AI->getValOperand(), PMV.WordType),
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUCodeGenPrepare.cpp 576 CastInst *CastOp;
580 SelectInst *Sel = findSelectThroughCast(BO.getOperand(0), CastOp);
583 Sel = findSelectThroughCast(BO.getOperand(1), CastOp);
595 if (CastOp) {
596 if (!CastOp->hasOneUse())
598 CT = ConstantFoldCastOperand(CastOp->getOpcode(), CT, BO.getType(), *DL);
599 CF = ConstantFoldCastOperand(CastOp->getOpcode(), CF, BO.getType(), *DL);
626 if (CastOp)
627 CastOp->eraseFromParent();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 2922 Instruction::CastOps CastOp;
2923 SelectPatternResult SPR = matchSelectPattern(&SI, LHS, RHS, &CastOp);
2968 Value *NewCast = Builder.CreateCast(CastOp, NewSI, SelType);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4138 auto CastOp = (Instruction::CastOps)Opc;
4139 if (!CastInst::castIsValid(CastOp, Op, ResTy))
4141 I = CastInst::Create(CastOp, Op, ResTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
AttributorAttributes.cpp 7311 OpAA.getAssumed().castOp(CastI->getOpcode(), getState().getBitWidth()));
7621 Instruction::CastOps CastOp = CI->getOpcode();
7622 switch (CastOp) {

Completed in 134 milliseconds