Searched refs:isCast (Results 1 - 25 of 28) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DAbstractCallSite.h147 if (CE->hasOneUse() && CE->isCast())
H A DInstruction.h168 bool isCast() const { return isCast(getOpcode()); } function in class:llvm::Instruction
220 static inline bool isCast(unsigned OpCode) { function in class:llvm::Instruction
H A DConstants.h1150 bool isCast() const;
H A DInstrTypes.h450 /// CastOps category (Instruction::isCast(opcode) returns true). This
699 return I->isCast();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DAbstractCallSite.cpp67 if (CE->hasOneUse() && CE->isCast()) {
H A DConstantsContext.h61 return Instruction::isCast(CE->getOpcode()) ||
611 if (Instruction::isCast(Opcode) ||
H A DConstantFold.cpp91 assert(Op && Op->isCast() && "Can't fold cast of cast without a cast!");
93 assert(CastInst::isCast(opc) && "Invalid cast opcode");
567 if (CE->isCast()) {
2510 if (CE->isCast() && Idxs.size() > 1 && Idx0->isNullValue()) {
H A DConstants.cpp1456 bool ConstantExpr::isCast() const {
1457 return Instruction::isCast(getOpcode());
1979 assert(Instruction::isCast(opc) && "opcode out of range");
H A DFunction.cpp1677 if (FI->isCast() && !FI->user_empty() &&
H A DAsmWriter.cpp1621 if (CE->isCast()) {
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DNodeIntrospection.h46 bool isCast() const { return m_flags & IsCast; } function in class:clang::tooling::LocationCall
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp177 if (CastInst->isCast())
460 if (!CastInst->isCast())
478 if (!ConstExpr->isCast())
495 if (Inst->isCast())
792 assert(CastInst->isCast() && "Expected an cast instruction!");
821 assert(ConstExpr->isCast() && "ConstExpr should be a cast");
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp305 if (Instruction::isCast(Opcode)) {
H A DNVPTXISelLowering.cpp1382 if (!CE->isCast())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp63 if (CE->isCast())
/netbsd-current/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DExtractFunction.cpp272 if (CE->isCast())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLint.cpp679 if (Instruction::isCast(CE->getOpcode())) {
H A DConstantFolding.cpp1061 if (Instruction::isCast(Opcode))
1335 assert(Instruction::isCast(Opcode));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp3915 unsigned convKindForDiag = Sema::isCast(CCK) ? 0 : 1;
4459 isCast(CCK))
4484 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC) && isCast(CCK))
H A DSemaExprCXX.cpp4595 if (!isCast(CCK))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp393 if (CE->isCast())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributor.cpp809 if (CE->isCast() && CE->getType()->isPointerTy() &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp4100 (Instruction::isCast(E->getOpcode()) &&
4101 Instruction::isCast(E->getAltOpcode()))) &&
5341 (Instruction::isCast(E->getOpcode()) &&
5342 Instruction::isCast(E->getAltOpcode()))) &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2553 if (Instruction::isCast(CE->getOpcode())) {
2735 if (Instruction::isCast(I.getOpcode())) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp279 if (TI->getNumOperands() == 1 && TI->isCast()) {

Completed in 417 milliseconds

12