HomeSort by: relevance | last modified time | path
    Searched refs:isCast (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
NodeIntrospection.h 38 enum LocationCallFlags { NoFlags, ReturnsPointer, IsCast };
46 bool isCast() const { return m_flags & IsCast; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
AbstractCallSite.h 147 if (CE->hasOneUse() && CE->isCast())
Instruction.h 168 bool isCast() const { return isCast(getOpcode()); }
220 static inline bool isCast(unsigned OpCode) {
Constants.h 1150 bool isCast() const;
InstrTypes.h 450 /// CastOps category (Instruction::isCast(opcode) returns true). This
699 return I->isCast();
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AbstractCallSite.cpp 67 if (CE->hasOneUse() && CE->isCast()) {
ConstantsContext.h 61 return Instruction::isCast(CE->getOpcode()) ||
611 if (Instruction::isCast(Opcode) ||
ConstantFold.cpp 91 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()) {
Constants.cpp 1456 bool ConstantExpr::isCast() const {
1457 return Instruction::isCast(getOpcode());
1979 assert(Instruction::isCast(opc) && "opcode out of range");
Function.cpp 1677 if (FI->isCast() && !FI->user_empty() &&
AsmWriter.cpp 1621 if (CE->isCast()) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 177 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");
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 305 if (Instruction::isCast(Opcode)) {
NVPTXISelLowering.cpp 1382 if (!CE->isCast())
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
ExecutionUtils.cpp 63 if (CE->isCast())
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ExtractFunction.cpp 272 if (CE->isCast())
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
Lint.cpp 679 if (Instruction::isCast(CE->getOpcode())) {
ConstantFolding.cpp 1061 if (Instruction::isCast(Opcode))
1335 assert(Instruction::isCast(Opcode));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 3915 unsigned convKindForDiag = Sema::isCast(CCK) ? 0 : 1;
4459 isCast(CCK))
4484 if (exprACTC == ACTC_retainable && isAnyRetainable(castACTC) && isCast(CCK))
SemaExprCXX.cpp 4595 if (!isCast(CCK))
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 393 if (CE->isCast())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
Attributor.cpp 809 if (CE->isCast() && CE->getType()->isPointerTy() &&
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 4100 (Instruction::isCast(E->getOpcode()) &&
4101 Instruction::isCast(E->getAltOpcode()))) &&
5341 (Instruction::isCast(E->getOpcode()) &&
5342 Instruction::isCast(E->getAltOpcode()))) &&
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 2553 if (Instruction::isCast(CE->getOpcode())) {
2735 if (Instruction::isCast(I.getOpcode())) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 279 if (TI->getNumOperands() == 1 && TI->isCast()) {

Completed in 96 milliseconds

1 2