HomeSort by relevance Sort by last modified time
    Searched refs:dyn_cast (Results 226 - 250 of 1820) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Analysis/
CodeMetrics.cpp 55 if (const User *U = dyn_cast<User>(V))
143 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
154 if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
161 if (const InvokeInst *InvI = dyn_cast<InvokeInst>(&I))
  /external/llvm/lib/Target/AMDGPU/
AMDGPUAnnotateKernelFeatures.cpp 95 if (const auto *CE = dyn_cast<ConstantExpr>(C)) {
102 const auto *OpC = dyn_cast<Constant>(U);
122 if (const AddrSpaceCastInst *ASC = dyn_cast<AddrSpaceCastInst>(&I)) {
128 const auto *OpC = dyn_cast<Constant>(U);
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 50 AllocaInst *allocaInst = dyn_cast<AllocaInst>(BI++);
  /external/llvm/lib/Target/PowerPC/
PPCTargetObjectFile.cpp 43 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
  /external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyELFObjectWriter.cpp 45 dyn_cast<MCSymbolRefExpr>(Fixup.getValue()))
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 40 Instruction *I = dyn_cast<Instruction>(PN.getIncomingValue(i));
49 if (CmpInst *CI = dyn_cast<CmpInst>(I))
101 if (CmpInst *CIOp = dyn_cast<CmpInst>(FirstInst)) {
139 GetElementPtrInst *GEP= dyn_cast<GetElementPtrInst>(PN.getIncomingValue(i));
247 if (AllocaInst *AI = dyn_cast<AllocaInst>(L->getOperand(0))) {
251 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
268 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(L->getOperand(0)))
269 if (AllocaInst *AI = dyn_cast<AllocaInst>(GEP->getOperand(0)))
308 LoadInst *LI = dyn_cast<LoadInst>(PN.getIncomingValue(i));
410 if (auto *Zext = dyn_cast<ZExtInst>(V))
    [all...]
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 41 Instruction *UI = dyn_cast<Instruction>(U);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
DwarfEHPrepare.cpp 138 GlobalVariable *GV = dyn_cast<GlobalVariable>(II->getArgOperand(ArgIdx));
167 if (InvokeInst *II = dyn_cast<InvokeInst>(*I))
191 GlobalVariable *GV = dyn_cast<GlobalVariable>(Sel->getArgOperand(OpIdx));
212 Instruction *II = dyn_cast<Instruction>(*I);
215 if (IntrinsicInst *Sel = dyn_cast<IntrinsicInst>(II)) {
218 } else if (InvokeInst *Invoke = dyn_cast<InvokeInst>(II)) {
221 } else if (CastInst *CI = dyn_cast<CastInst>(II)) {
223 } else if (PHINode *PN = dyn_cast<PHINode>(II)) {
293 IntrinsicInst *EHPtr = dyn_cast<IntrinsicInst>(*I);
489 else if (CallInst *call = dyn_cast<CallInst>(bi)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
CloneFunction.cpp 53 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
94 if (Argument* Anew = dyn_cast<Argument>(VMap[I]))
118 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
247 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
258 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
261 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
276 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
278 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
312 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
329 if (const CmpInst *CI = dyn_cast<CmpInst>(I)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint-passes/
TestPasses.cpp 61 if (CallInst *CI = dyn_cast<CallInst>(I)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CodeMetrics.cpp 33 const User *U = dyn_cast<User>(V);
156 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
167 if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
174 if (const InvokeInst *InvI = dyn_cast<InvokeInst>(&I))
PhiValues.cpp 50 if (PHINode *PhiPhiOp = dyn_cast<PHINode>(PhiOp)) {
77 if (PHINode *PhiOp = dyn_cast<PHINode>(Op)) {
120 if (const PHINode *PN = dyn_cast<PHINode>(V))
152 if (Instruction *I = dyn_cast<Instruction>(V))
VectorUtils.cpp 128 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr);
147 CastInst *CI = dyn_cast<CastInst>(U);
161 auto *PtrTy = dyn_cast<PointerType>(Ptr->getType());
178 while (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(V))
181 const SCEVAddRecExpr *S = dyn_cast<SCEVAddRecExpr>(V);
192 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(V)) {
211 if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(V)) {
217 const SCEVUnknown *U = dyn_cast<SCEVUnknown>(V);
243 if (Constant *C = dyn_cast<Constant>(V))
246 if (InsertElementInst *III = dyn_cast<InsertElementInst>(V))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPULowerKernelAttributes.cpp 105 auto *BCI = dyn_cast<BitCastInst>(*U->user_begin());
109 auto *Load = dyn_cast<LoadInst>(*BCI->user_begin());
177 auto *ZextGroupSize = dyn_cast<ZExtInst>(U);
182 auto *SI = dyn_cast<SelectInst>(ZextUser);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
BPFSelectionDAGInfo.cpp 26 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 48 AllocaInst *allocaInst = dyn_cast<AllocaInst>(BI++);
NVPTXLowerArgs.cpp 157 PointerType *PType = dyn_cast<PointerType>(Arg->getType());
183 if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
212 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
216 if (Argument *Arg = dyn_cast<Argument>(UO)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCTargetObjectFile.cpp 42 const auto *GVar = dyn_cast<GlobalVariable>(GO);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/MCTargetDesc/
X86MCExpr.h 63 if (auto *E = dyn_cast<X86MCExpr>(X))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
StripGCRelocates.cpp 50 if (auto *GCR = dyn_cast<GCRelocateInst>(&I))
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
AnalysisWrappers.cpp 41 Instruction *UI = dyn_cast<Instruction>(U);
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 89 while (const BinaryOperator *B2 = dyn_cast<BinaryOperator>(LHS)) {
116 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(Stmt1)) {
118 const IfStmt *InnerIf = dyn_cast<IfStmt>(*CS->body_begin());
162 if (const CompoundStmt *CompStmt = dyn_cast<CompoundStmt>(Stmt1)) {
166 if (const CompoundStmt *CompStmt = dyn_cast<CompoundStmt>(Stmt2)) {
226 const DeclRefExpr *DeclRef1 = dyn_cast<DeclRefExpr>(LHS);
227 const DeclRefExpr *DeclRef2 = dyn_cast<DeclRefExpr>(RHS);
228 const FloatingLiteral *FloatLit1 = dyn_cast<FloatingLiteral>(LHS);
229 const FloatingLiteral *FloatLit2 = dyn_cast<FloatingLiteral>(RHS);
316 const Expr *Expr1 = dyn_cast<Expr>(Stmt1)
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 74 if (BranchInst *BI = dyn_cast<BranchInst>(T)) {
79 if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
119 if (SwitchInst *SI = dyn_cast<SwitchInst>(T)) {
122 ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition());
246 if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(T)) {
249 dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) {
299 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
304 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
314 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
330 if (ConstantInt *Cond = dyn_cast<ConstantInt>(II->getArgOperand(0))
    [all...]
SSAUpdater.cpp 100 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
143 (SomePHI = dyn_cast<PHINode>(It)); ++It) {
182 if (PHINode *UserPN = dyn_cast<PHINode>(User))
199 if (PHINode *UserPN = dyn_cast<PHINode>(User))
249 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
281 return dyn_cast<PHINode>(I);
287 return dyn_cast<PHINode>(Val);
330 if (const LoadInst *LI = dyn_cast<LoadInst>(Insts[0]))
369 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
405 if (LoadInst *L = dyn_cast<LoadInst>(&I))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
TailRecursionElimination.cpp 136 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) {
185 if (ReturnInst *Ret = dyn_cast<ReturnInst>(BB->getTerminator())) {
219 if (CallInst *CI = dyn_cast<CallInst>(I)) {
238 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
275 if (Argument *Arg = dyn_cast<Argument>(V)) {
293 if (SwitchInst *SI = dyn_cast<SwitchInst>(UniquePred->getTerminator()))
310 ReturnInst *RI = dyn_cast<ReturnInst>(BBI->getTerminator());
373 CI = dyn_cast<CallInst>(BBI);
489 if (AllocaInst *AI = dyn_cast<AllocaInst>(OEBI++))
570 if (ReturnInst *RI = dyn_cast<ReturnInst>(BBI->getTerminator())
    [all...]

Completed in 1040 milliseconds

1 2 3 4 5 6 7 8 91011>>