/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | ConstantHoisting.cpp | 177 if (CastInst->isCast()) in findMatInsertPt() 460 if (!CastInst->isCast()) in collectConstantCandidates() 478 if (!ConstExpr->isCast()) in collectConstantCandidates() 495 if (Inst->isCast()) in collectConstantCandidates() 792 assert(CastInst->isCast() && "Expected an cast instruction!"); in emitBaseConstants() 821 assert(ConstExpr->isCast() && "ConstExpr should be a cast"); in emitBaseConstants()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | Instruction.h | 168 bool isCast() const { return isCast(getOpcode()); } 220 static inline bool isCast(unsigned OpCode) {
|
H A D | AbstractCallSite.h | 147 if (CE->hasOneUse() && CE->isCast()) in isCallee()
|
H A D | Constants.h | 1150 bool isCast() const;
|
H A D | InstrTypes.h | 699 return I->isCast();
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/ |
H A D | NodeIntrospection.h | 46 bool isCast() const { return m_flags & IsCast; } in isCast() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | AbstractCallSite.cpp | 67 if (CE->hasOneUse() && CE->isCast()) { in AbstractCallSite()
|
H A D | ConstantsContext.h | 61 return Instruction::isCast(CE->getOpcode()) || in classof() 611 if (Instruction::isCast(Opcode) ||
|
H A D | ConstantFold.cpp | 91 assert(Op && Op->isCast() && "Can't fold cast of cast without a cast!"); in foldConstantCastPair() 93 assert(CastInst::isCast(opc) && "Invalid cast opcode"); in foldConstantCastPair() 567 if (CE->isCast()) { in ConstantFoldCastInstruction() 2510 if (CE->isCast() && Idxs.size() > 1 && Idx0->isNullValue()) { in ConstantFoldGetElementPtr()
|
H A D | Constants.cpp | 1456 bool ConstantExpr::isCast() const { in isCast() function in ConstantExpr 1457 return Instruction::isCast(getOpcode()); in isCast() 1979 assert(Instruction::isCast(opc) && "opcode out of range"); in getCast()
|
H A D | Function.cpp | 1677 if (FI->isCast() && !FI->user_empty() && in hasAddressTaken()
|
H A D | AsmWriter.cpp | 1621 if (CE->isCast()) { in WriteConstantInternal()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
H A D | NVPTXGenericToNVVM.cpp | 305 if (Instruction::isCast(Opcode)) { in remapConstantExpr()
|
H A D | NVPTXISelLowering.cpp | 1382 if (!CE->isCast()) in getArgumentAlignment()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
H A D | ExecutionUtils.cpp | 63 if (CE->isCast()) in operator *()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
H A D | ExtractFunction.cpp | 272 if (CE->isCast()) in SplitStaticCtorDtor()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | Lint.cpp | 679 if (Instruction::isCast(CE->getOpcode())) { in findValueImpl()
|
H A D | ConstantFolding.cpp | 1061 if (Instruction::isCast(Opcode)) in ConstantFoldInstOperandsImpl() 1335 assert(Instruction::isCast(Opcode)); in ConstantFoldCastOperand()
|
H A D | ValueTracking.cpp | 4986 if (isa<CastInst>(Op) || (CE && CE->isCast())) in canCreateUndefOrPoison()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaExprObjC.cpp | 3915 unsigned convKindForDiag = Sema::isCast(CCK) ? 0 : 1; in diagnoseObjCARCConversion() 4459 isCast(CCK)) in CheckObjCConversion() 4484 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC) && isCast(CCK)) in CheckObjCConversion()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 393 if (CE->isCast()) in runStaticConstructorsDestructors()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 4100 (Instruction::isCast(E->getOpcode()) && in getEntryCost() 4101 Instruction::isCast(E->getAltOpcode()))) && in getEntryCost() 5341 (Instruction::isCast(E->getOpcode()) && in vectorizeTree() 5342 Instruction::isCast(E->getAltOpcode()))) && in vectorizeTree()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | Attributor.cpp | 809 if (CE->isCast() && CE->getType()->isPointerTy() && in checkForAllCallSites()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 2553 if (Instruction::isCast(CE->getOpcode())) { in writeConstants() 2735 if (Instruction::isCast(I.getOpcode())) { in writeInstruction()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 279 if (TI->getNumOperands() == 1 && TI->isCast()) { in foldSelectOpOp()
|