/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ConstantHoisting.cpp | 180 if (CastInst->isCast()) in findMatInsertPt() 471 if (!CastInst->isCast()) in collectConstantCandidates() 489 if (!ConstExpr->isCast()) in collectConstantCandidates() 506 if (Inst->isCast()) in collectConstantCandidates() 796 assert(CastInst->isCast() && "Expected an cast instruction!"); in emitBaseConstants() 825 assert(ConstExpr->isCast() && "ConstExpr should be a cast"); in emitBaseConstants()
|
H A D | TLSVariableHoist.cpp | 111 if (Inst->isCast()) in collectTLSCandidate()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instruction.h | 282 bool isCast() const { return isCast(getOpcode()); } 333 static inline bool isCast(unsigned Opcode) {
|
H A D | AbstractCallSite.h | 147 if (CE->hasOneUse() && CE->isCast()) in isCallee()
|
H A D | Constants.h | 1225 bool isCast() const;
|
H A D | InstrTypes.h | 714 return I->isCast();
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AbstractCallSite.cpp | 66 if (CE->hasOneUse() && CE->isCast()) { in AbstractCallSite()
|
H A D | ConstantsContext.h | 60 return Instruction::isCast(CE->getOpcode()); in classof() 479 if (Instruction::isCast(Opcode))
|
H A D | ConstantFold.cpp | 50 assert(Op && Op->isCast() && "Can't fold cast of cast without a cast!"); in foldConstantCastPair() 52 assert(CastInst::isCast(opc) && "Invalid cast opcode"); in foldConstantCastPair() 152 if (CE->isCast()) { in ConstantFoldCastInstruction()
|
H A D | Constants.cpp | 1515 bool ConstantExpr::isCast() const { return Instruction::isCast(getOpcode()); } in isCast() function in ConstantExpr 2187 assert(Instruction::isCast(opc) && "opcode out of range"); in getCast()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXGenericToNVVM.cpp | 266 if (Instruction::isCast(Opcode)) { in remapConstantExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | FunctionPropertiesAnalysis.cpp | 132 if (I.isCast()) in updateForBB()
|
H A D | Lint.cpp | 673 if (Instruction::isCast(CE->getOpcode())) { in findValueImpl()
|
H A D | ConstantFolding.cpp | 1005 if (Instruction::isCast(Opcode)) in ConstantFoldInstOperandsImpl() 1388 assert(Instruction::isCast(Opcode)); in ConstantFoldCastOperand()
|
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | ExtractFunction.cpp | 271 if (CE->isCast()) in SplitStaticCtorDtor()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ExecutionUtils.cpp | 66 if (CE->isCast()) in operator *()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopPeel.cpp | 244 if (I->isCast()) in calculate()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprObjC.cpp | 3923 unsigned convKindForDiag = Sema::isCast(CCK) ? 0 : 1; in diagnoseObjCARCConversion() 4464 (castACTC == ACTC_coreFoundation && SemaRef.isCast(CCK)))) in CheckObjCConversion() 4468 SemaRef.isCast(CCK)) in CheckObjCConversion() 4494 SemaRef.isCast(CCK)) in CheckObjCConversion()
|
H A D | Sema.cpp | 723 if (Context.hasAnyFunctionEffects() && !isCast(CCK) && in ImpCastExprToType()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 393 if (CE->isCast()) in runStaticConstructorsDestructors()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILBitcodeWriter.cpp | 2097 if (Instruction::isCast(CE->getOpcode())) { in writeConstants() 2238 if (Instruction::isCast(I.getOpcode())) { in writeInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1500 if (Instruction::isCast(Opcode)) in isConstExprSupported() 1571 if (Instruction::isCast(BC->Opcode)) { in materializeValue() 1686 if (Instruction::isCast(BC->Opcode)) { in materializeValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 2784 if (Instruction::isCast(CE->getOpcode())) { in writeConstants() 2962 if (Instruction::isCast(I.getOpcode())) { in writeInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 9354 if (!UnaryInstruction::isCast(E->getOpcode()) && E->Idx != 0) { in getEntryCost() 9881 (Instruction::isCast(E->getOpcode()) && in getEntryCost() 9882 Instruction::isCast(E->getAltOpcode())) || in getEntryCost() 13544 (Instruction::isCast(E->getOpcode()) && in vectorizeTree() 13545 Instruction::isCast(E->getAltOpcode())) || in vectorizeTree()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | Attributor.cpp | 1932 if (CE->isCast() && CE->getType()->isPointerTy()) { in checkForAllCallSites()
|