HomeSort by relevance Sort by last modified time
    Searched full:dyn_cast (Results 151 - 175 of 502) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/include/llvm/ADT/
PointerUnion.h 133 /// dyn_cast<T>() - If the current value is of the specified pointer type,
136 T dyn_cast() const {
278 /// dyn_cast<T>() - If the current value is of the specified pointer type,
281 T dyn_cast() const {
387 /// dyn_cast<T>() - If the current value is of the specified pointer type,
390 T dyn_cast() const {
  /external/llvm/lib/Analysis/
LoopDependenceAnalysis.cpp 64 const Instruction *I = dyn_cast<const Instruction>(V);
83 if (LoadInst *i = dyn_cast<LoadInst>(I))
85 if (StoreInst *i = dyn_cast<StoreInst>(I))
148 const SCEVAddRecExpr *rec = dyn_cast<SCEVAddRecExpr>(S);
240 const GEPOperator *aGEP = dyn_cast<GEPOperator>(aPtr);
241 const GEPOperator *bGEP = dyn_cast<GEPOperator>(bPtr);
ScalarEvolutionAliasAnalysis.cpp 91 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
95 } else if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
100 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
AliasSetTracker.cpp 347 if (LoadInst *LI = dyn_cast<LoadInst>(I))
349 if (StoreInst *SI = dyn_cast<StoreInst>(I))
351 if (CallInst *CI = dyn_cast<CallInst>(I))
353 if (InvokeInst *II = dyn_cast<InvokeInst>(I))
355 if (VAArgInst *VAAI = dyn_cast<VAArgInst>(I))
468 if (LoadInst *LI = dyn_cast<LoadInst>(I))
470 if (StoreInst *SI = dyn_cast<StoreInst>(I))
472 if (CallInst *CI = dyn_cast<CallInst>(I))
474 if (VAArgInst *VAAI = dyn_cast<VAArgInst>(I))
IVUsers.cpp 51 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
66 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
241 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
247 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
InlineCost.cpp 95 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
103 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
113 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
201 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
205 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
307 Function *F = dyn_cast<Function>(C);
320 if (CallInst *CI = dyn_cast<CallInst>(U)) {
324 } else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
436 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 165 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
172 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
179 } else if (VAArgInst *VI = dyn_cast<VAArgInst>(I)) {
264 if (ReturnInst *Ret = dyn_cast<ReturnInst>(I->getTerminator()))
270 if (Constant *C = dyn_cast<Constant>(RetVal)) {
280 if (Instruction *RVI = dyn_cast<Instruction>(RetVal))
StripSymbols.cpp 148 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
198 ConstantArray *Inits = dyn_cast<ConstantArray>(LLVMUsed->getInitializer());
203 dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
310 if (Constant *C = dyn_cast<Constant>(Arg1))
316 if (Constant *C = dyn_cast<Constant>(Arg2))
325 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
  /external/llvm/utils/TableGen/
DAGISelMatcher.cpp 357 if (const CheckOpcodeMatcher *COM = dyn_cast<CheckOpcodeMatcher>(M)) {
367 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) {
381 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M))
387 if (const CheckChildTypeMatcher *CC = dyn_cast<CheckChildTypeMatcher>(M)) {
399 if (const CheckIntegerMatcher *CIM = dyn_cast<CheckIntegerMatcher>(M))
405 if (const CheckValueTypeMatcher *CVT = dyn_cast<CheckValueTypeMatcher>(M))
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 248 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
256 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
268 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
436 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
449 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
460 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
477 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
493 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
521 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
526 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S))
    [all...]
LoopUnswitch.cpp 193 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Cond))
241 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
255 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
277 if (SelectInst *SI = dyn_cast<SelectInst>(BBI)) {
357 if (BranchInst *BI = dyn_cast<BranchInst>(HeaderTerm)) {
374 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(HeaderTerm)) {
717 if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i)))
768 if (BranchInst *BI = dyn_cast<BranchInst>(Pred->getTerminator()))
    [all...]
  /external/llvm/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 100 if ((FIN = dyn_cast<FrameIndexSDNode>(Addr))) {
107 if ((FIN = dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) &&
108 (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) &&
  /external/clang/include/clang/Sema/
SemaConsumer.h 40 // isa/cast/dyn_cast support
  /external/clang/lib/ARCMigrate/
TransARCAssign.cpp 46 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 133 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
161 if (const RecordType *RT = dyn_cast<RecordType>(T))
165 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
204 const RecordType *RT = dyn_cast<RecordType>(TT);
227 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
241 if (const EnumDecl *ED = dyn_cast<EnumDecl>(TD)) {
287 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
461 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
584 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
CGExpr.cpp 210 = dyn_cast<MaterializeTemporaryExpr>(E)) {
224 if (const CXXDefaultArgExpr *DAE = dyn_cast<CXXDefaultArgExpr>(E))
227 if (const ExprWithCleanups *TE = dyn_cast<ExprWithCleanups>(E)) {
238 dyn_cast<ObjCPropertyRefExpr>(E->IgnoreParenImpCasts()))
317 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
332 } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
335 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
343 if (const OpaqueValueExpr *opaque = dyn_cast<OpaqueValueExpr>(E))
746 if (const EnumType *ET = dyn_cast<EnumType>(Ty))
    [all...]
  /external/clang/lib/Index/
Program.cpp 42 if (DeclContext *SubDC = dyn_cast<DeclContext>(*I))
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 135 ValueDecl *VD = dyn_cast<ValueDecl>(D);
139 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
166 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
215 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
SemaCodeComplete.cpp 85 if (NamedDecl *PrevND = DeclOrVector.dyn_cast<NamedDecl *>()) {
100 = DeclOrVector.dyn_cast<DeclIndexPairVector *>()) {
380 if (NamedDecl *ND = DeclOrIterator.dyn_cast<NamedDecl *>())
406 if (NamedDecl *ND = DeclOrVector.dyn_cast<NamedDecl *>())
454 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Parent)) {
460 else if (TagDecl *TD = dyn_cast<TagDecl>(Parent))
650 if (TypeDecl *Type = dyn_cast<TypeDecl>(ND))
652 if (ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
656 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(ND))
658 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 24 using llvm::dyn_cast;
32 if (PathDiagnosticMacroPiece *MP = dyn_cast<PathDiagnosticMacroPiece>(*I))
187 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
189 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 75 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
85 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
88 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
121 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
52 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
82 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
183 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
  /external/llvm/lib/VMCore/
DebugInfoProbe.cpp 79 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(BI)) {
82 } else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) {
130 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(BI)) {
133 } else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) {
  /external/llvm/tools/lto/
LTOModule.cpp 194 if (ConstantExpr *ce = dyn_cast<ConstantExpr>(c)) {
196 if (GlobalVariable *gvn = dyn_cast<GlobalVariable>(op)) {
198 if (ConstantArray *ca = dyn_cast<ConstantArray>(cn)) {
211 if (ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer())) {
245 if (ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer())) {
311 if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
318 if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
325 if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
351 GlobalVariable *gv = dyn_cast<GlobalVariable>(def);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 382 if (StructType *STy = dyn_cast<StructType>(Ty))
406 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(val)) {
411 } else if (const Constant* C = dyn_cast<Constant>(val)) {
413 } else if (const Argument* Arg = dyn_cast<Argument>(val)) {
679 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
691 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
695 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
728 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
740 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
755 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV))
    [all...]

Completed in 230 milliseconds

1 2 3 4 5 67 8 91011>>