/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 97 StaticAllocaMap[AI] = in set() 107 !StaticAllocaMap.count(cast<AllocaInst>(I))) in set() 127 StaticAllocaMap.find(AI); in set() 128 if (SI != StaticAllocaMap.end()) { // Check for VLAs. in set() 195 StaticAllocaMap.clear(); in clear()
|
D | FastISel.cpp | 142 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) in getRegForValue() 946 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I))) in SelectOperator()
|
D | SelectionDAGBuilder.cpp | 1115 FuncInfo.StaticAllocaMap.find(AI); in getValueImpl() 1116 if (SI != FuncInfo.StaticAllocaMap.end()) in getValueImpl() 3118 if (FuncInfo.StaticAllocaMap.count(&I)) in visitAlloca() 4593 FuncInfo.StaticAllocaMap.find(AI); in visitIntrinsicCall() 4594 if (SI != FuncInfo.StaticAllocaMap.end()) { in visitIntrinsicCall() 4660 FuncInfo.StaticAllocaMap.find(AI); in visitIntrinsicCall() 4661 if (SI == FuncInfo.StaticAllocaMap.end()) in visitIntrinsicCall() 4758 int FI = FuncInfo.StaticAllocaMap[FnCtx]; in visitIntrinsicCall() 4987 int FI = FuncInfo.StaticAllocaMap[Slot]; in visitIntrinsicCall() 6800 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && in HandlePHINodesInSuccessorBlocks()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 159 StaticAllocaMap[AI] = FrameIndex; in set() 215 if (!isa<AllocaInst>(I) || !StaticAllocaMap.count(cast<AllocaInst>(I))) in set() 234 StaticAllocaMap.find(AI); in set() 235 if (SI != StaticAllocaMap.end()) { // Check for VLAs. in set() 352 StaticAllocaMap.clear(); in clear()
|
D | FastISel.cpp | 197 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) in getRegForValue() 587 auto SI = FuncInfo.StaticAllocaMap.find(AI); in addStackMapLiveVars() 588 if (SI != FuncInfo.StaticAllocaMap.end()) in addStackMapLiveVars() 1146 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(Address)))) in selectIntrinsicCall() 1628 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I))) in selectOperator()
|
D | SelectionDAGBuilder.cpp | 1223 FuncInfo.StaticAllocaMap.find(AI); in getValueImpl() 1224 if (SI != FuncInfo.StaticAllocaMap.end()) in getValueImpl() 3387 if (FuncInfo.StaticAllocaMap.count(&I)) in visitAlloca() 4899 FuncInfo.StaticAllocaMap.find(AI); in visitIntrinsicCall() 4900 if (SI != FuncInfo.StaticAllocaMap.end()) { in visitIntrinsicCall() 4966 FuncInfo.StaticAllocaMap.find(AI); in visitIntrinsicCall() 4967 if (SI == FuncInfo.StaticAllocaMap.end()) in visitIntrinsicCall() 5022 int FI = FuncInfo.StaticAllocaMap[FnCtx]; in visitIntrinsicCall() 5383 int FI = FuncInfo.StaticAllocaMap[Slot]; in visitIntrinsicCall() 5559 auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject); in visitIntrinsicCall() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 161 StaticAllocaMap[AI] = FrameIndex; in set() 218 if (!isa<AllocaInst>(I) || !StaticAllocaMap.count(cast<AllocaInst>(&I))) in set() 342 StaticAllocaMap.clear(); in clear()
|
D | FastISel.cpp | 388 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) in getRegForValue() 765 auto SI = FuncInfo.StaticAllocaMap.find(AI); in addStackMapLiveVars() 766 if (SI != FuncInfo.StaticAllocaMap.end()) in addStackMapLiveVars() 1367 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(Address)))) in selectIntrinsicCall() 1833 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I))) in selectOperator()
|
D | SelectionDAGBuilder.cpp | 1361 FuncInfo.StaticAllocaMap.find(AI); in getValueImpl() 1362 if (SI != FuncInfo.StaticAllocaMap.end()) in getValueImpl() 3568 if (FuncInfo.StaticAllocaMap.count(&I)) in visitAlloca() 5201 auto I = FuncInfo.StaticAllocaMap.find(AI); in visitIntrinsicCall() 5202 if (I != FuncInfo.StaticAllocaMap.end()) in visitIntrinsicCall() 5399 int FI = FuncInfo.StaticAllocaMap[FnCtx]; in visitIntrinsicCall() 5797 int FI = FuncInfo.StaticAllocaMap[Slot]; in visitIntrinsicCall() 5988 auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject); in visitIntrinsicCall() 5989 if (SI == FuncInfo.StaticAllocaMap.end()) in visitIntrinsicCall() 6048 assert(FuncInfo.StaticAllocaMap.count(Slot) && in visitIntrinsicCall() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | FunctionLoweringInfo.h | 82 DenseMap<const AllocaInst*, int> StaticAllocaMap; variable
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 186 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in computeAddress() 280 FuncInfo.StaticAllocaMap.find(AI); in computeAddress() 281 if (SI != FuncInfo.StaticAllocaMap.end()) { in computeAddress() 525 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 527 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca()
|
/external/llvm/include/llvm/CodeGen/ |
D | FunctionLoweringInfo.h | 148 DenseMap<const AllocaInst*, int> StaticAllocaMap; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 211 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in computeAddress() 314 FuncInfo.StaticAllocaMap.find(AI); in computeAddress() 315 if (SI != FuncInfo.StaticAllocaMap.end()) { in computeAddress() 590 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 592 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | FunctionLoweringInfo.h | 169 DenseMap<const AllocaInst*, int> StaticAllocaMap; variable
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMFastISel.cpp | 661 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; in TargetMaterializeAlloca() 667 FuncInfo.StaticAllocaMap.find(AI); in TargetMaterializeAlloca() 671 if (SI != FuncInfo.StaticAllocaMap.end()) { in TargetMaterializeAlloca() 716 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in ARMComputeAddress() 806 FuncInfo.StaticAllocaMap.find(AI); in ARMComputeAddress() 807 if (SI != FuncInfo.StaticAllocaMap.end()) { in ARMComputeAddress()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 324 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in PPCComputeAddress() 401 FuncInfo.StaticAllocaMap.find(AI); in PPCComputeAddress() 402 if (SI != FuncInfo.StaticAllocaMap.end()) { in PPCComputeAddress() 2157 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; in fastMaterializeAlloca() 2163 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 2165 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 327 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in PPCComputeAddress() 404 FuncInfo.StaticAllocaMap.find(AI); in PPCComputeAddress() 405 if (SI != FuncInfo.StaticAllocaMap.end()) { in PPCComputeAddress() 2263 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; in fastMaterializeAlloca() 2269 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 2271 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca()
|
/external/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 295 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 297 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca() 428 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in computeAddress() 491 FuncInfo.StaticAllocaMap.find(AI); in computeAddress() 492 if (SI != FuncInfo.StaticAllocaMap.end()) { in computeAddress()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 340 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 342 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca() 469 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in computeAddress() 531 FuncInfo.StaticAllocaMap.find(AI); in computeAddress() 532 if (SI != FuncInfo.StaticAllocaMap.end()) { in computeAddress()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 667 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; in fastMaterializeAlloca() 673 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 677 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca() 724 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in ARMComputeAddress() 807 FuncInfo.StaticAllocaMap.find(AI); in ARMComputeAddress() 808 if (SI != FuncInfo.StaticAllocaMap.end()) { in ARMComputeAddress()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 666 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0; in fastMaterializeAlloca() 672 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 676 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca() 723 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in ARMComputeAddress() 806 FuncInfo.StaticAllocaMap.find(AI); in ARMComputeAddress() 807 if (SI != FuncInfo.StaticAllocaMap.end()) { in ARMComputeAddress()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86FastISel.cpp | 332 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) || in X86SelectAddress() 370 FuncInfo.StaticAllocaMap.find(A); in X86SelectAddress() 371 if (SI != FuncInfo.StaticAllocaMap.end()) { in X86SelectAddress() 2077 if (!FuncInfo.StaticAllocaMap.count(C)) in TargetMaterializeAlloca()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 824 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) || in X86SelectAddress() 863 FuncInfo.StaticAllocaMap.find(A); in X86SelectAddress() 864 if (SI != FuncInfo.StaticAllocaMap.end()) { in X86SelectAddress() 2611 MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]); in fastLowerIntrinsicCall() 3675 if (!FuncInfo.StaticAllocaMap.count(C)) in fastMaterializeAlloca()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 851 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) || in X86SelectAddress() 890 FuncInfo.StaticAllocaMap.find(A); in X86SelectAddress() 891 if (SI != FuncInfo.StaticAllocaMap.end()) { in X86SelectAddress() 2789 MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]); in fastLowerIntrinsicCall() 3910 if (!FuncInfo.StaticAllocaMap.count(C)) in fastMaterializeAlloca()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64FastISel.cpp | 362 if (!FuncInfo.StaticAllocaMap.count(AI)) in fastMaterializeAlloca() 366 FuncInfo.StaticAllocaMap.find(AI); in fastMaterializeAlloca() 368 if (SI != FuncInfo.StaticAllocaMap.end()) { in fastMaterializeAlloca() 559 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || in computeAddress() 645 FuncInfo.StaticAllocaMap.find(AI); in computeAddress() 646 if (SI != FuncInfo.StaticAllocaMap.end()) { in computeAddress()
|