HomeSort by relevance Sort by last modified time
    Searched refs:isa (Results 176 - 200 of 451) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/lib/Transforms/Utils/
Local.cpp 227 if (!I->use_empty() || isa<TerminatorInst>(I)) return false;
230 if (isa<LandingPadInst>(I))
258 return isa<UndefValue>(II->getArgOperand(1));
391 if (!isa<PHINode>(BB->begin()))
507 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
577 while (isa<PHINode>(*BBI)) {
593 if (isa<PHINode>(Succ->begin())) {
600 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
607 if (isa<PHINode>(OldVal) && cast<PHINode>(OldVal)->getParent() == BB) {
    [all...]
PromoteMemoryToRegister.cpp 160 return (isa<LoadInst>(I) && isa<AllocaInst>(I->getOperand(0))) ||
161 (isa<StoreInst>(I) && isa<AllocaInst>(I->getOperand(1)));
367 if (isa<LoadInst>(I) || isa<StoreInst>(I))
835 bool StoringGlobalVal = !isa<Instruction>(OnlyStore->getOperand(0));
844 if (!isa<LoadInst>(UserInst)) {
    [all...]
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 119 if (isa<AttributedType>(ty.getTypePtr()))
  /external/clang/lib/StaticAnalyzer/Checkers/
AttrNonNullChecker.cpp 65 if (!isa<Loc>(*DV)) {
MallocChecker.cpp 281 if (!isa<Loc>(location))
312 if (isa<BlockDataRegion>(R)) {
320 if (!(isa<UnknownSpaceRegion>(MS) || isa<HeapSpaceRegion>(MS))) {
472 if (isa<AllocaRegion>(MR))
696 if (!isa<Loc>(l))
  /external/llvm/lib/Analysis/
PathNumbering.cpp 389 if(isa<ReturnInst>(terminator) || isa<UnreachableInst>(terminator)
390 || isa<ResumeInst>(terminator) || isa<UnwindInst>(terminator))
ValueTracking.cpp 40 assert(isa<PointerType>(Ty) && "Expected a pointer type!");
83 if (isa<ConstantPointerNull>(V) ||
84 isa<ConstantAggregateZero>(V)) {
762 if (isa<ConstantInt>(C))
781 if (isa<SExtInst>(V) || isa<ZExtInst>(V))
    [all...]
ScalarEvolutionNormalization.cpp 202 if (isa<SCEVConstant>(S) || isa<SCEVUnknown>(S))
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 140 if (isa<Instruction>(V) &&
141 (!isa<AllocaInst>(V) ||
165 } else if (isa<AllocaInst>(V)) {
167 } else if (isa<ConstantPointerNull>(V)) {
202 if (!isa<Instruction>(Op) ||
206 } else if (isa<UndefValue>(V)) {
214 if (!Reg && isa<Constant>(V))
244 if (!isa<Instruction>(I)) {
345 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {
373 if (ISDOpcode == ISD::SDIV && isa<BinaryOperator>(I) &
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 41 if (isa<Instruction>(V)) {
48 if (isa<Argument>(V)) return 3;
49 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
  /external/llvm/lib/VMCore/
Metadata.cpp 183 return isa<Instruction>(V) || isa<Argument>(V) || isa<BasicBlock>(V) ||
184 (isa<MDNode>(V) && cast<MDNode>(V)->isFunctionLocal());
  /external/llvm/unittests/VMCore/
ConstantsTest.cpp 118 EXPECT_TRUE(isa<ConstantFP>(X));
  /external/clang/lib/Sema/
SemaExpr.cpp 93 << isa<FunctionDecl>(D) << false;
114 if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
206 } else if (isa<VarDecl>(D)) {
262 if (isa<GNUNullExpr>(sentinelExpr)) return;
    [all...]
  /external/apache-http/src/org/apache/http/conn/ssl/
SSLSocketFactory.java 302 InetSocketAddress isa = local
304 sslsock.bind(isa);
  /external/clang/include/clang/AST/
VTableBuilder.h 69 assert(!isa<CXXDestructorDecl>(MD) &&
87 assert(!isa<CXXDestructorDecl>(MD) &&
  /external/clang/lib/AST/
ExprCXX.cpp 254 isa<UnresolvedUsingValueDecl>(*I)) {
308 if (isa<UnresolvedLookupExpr>(this))
374 if (isa<CXXTemporaryObjectExpr>(this))
    [all...]
  /external/clang/lib/CodeGen/
CGVTT.cpp 136 if (isa<CXXConstructorDecl>(MD) && GD.getCtorType() == Ctor_Base)
140 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
CGVTables.cpp 175 (isa<PointerType>(typeL) && isa<PointerType>(typeR)) ||
176 (isa<ReferenceType>(typeL) && isa<ReferenceType>(typeR))));
275 if (isa<llvm::StoreInst>(I) && I->getOperand(0) == ThisPtr) {
293 if (isa<llvm::ReturnInst>(T)) {
493 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
732 isa<NamespaceDecl>(DC) &&
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 29 if (isa<SymbolData>(SE))
62 if (isa<NonLoc>(Cond))
  /external/clang/tools/libclang/
IndexDecl.cpp 190 if (!Handled && isa<DeclContext>(D))
207 if (isa<ObjCMethodDecl>(D))
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 231 if ((isa<GlobalAddressSDNode>(Callee)) ||
232 (isa<ExternalSymbolSDNode>(Callee)))
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 92 if (!isa<ConstantInt>(CVA->getOperand(i)) ||
99 if (isa<ConstantAggregateZero>(C))
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 48 while (isa<AllocaInst>(InsertPos)) ++InsertPos;
112 while (isa<AllocaInst>(InsertPos))
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 159 if (!isa<StoreInst>(TheStores[i]))
375 for (++BI; !isa<TerminatorInst>(BI); ++BI) {
376 if (!isa<StoreInst>(BI) && !isa<MemSetInst>(BI)) {
404 !isa<ConstantInt>(MSI->getLength()))
494 if (ldep.isClobber() && !isa<MemCpyInst>(ldep.getInst()))
547 if (isa<ConstantInt>(MSI->getLength()) && !MSI->isVolatile())
637 if (isa<BitCastInst>(UI)) {
    [all...]
Reassociate.cpp 119 if (!Op || !isa<BinaryOperator>(Op))
137 !isa<DbgInfoIntrinsic>(I)) ||
173 if (isa<Argument>(V)) return ValueRankMap[V]; // Function argument.
204 if ((V->hasOneUse() || V->use_empty()) && isa<Instruction>(V) &&
455 while (isa<PHINode>(InsertPt)) ++InsertPt;
    [all...]

Completed in 672 milliseconds

1 2 3 4 5 6 78 91011>>