HomeSort by: relevance | last modified time | path
    Searched refs:StaticAllocaMap (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 122 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
125 DenseMap<const AllocaInst*, int> StaticAllocaMap;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 181 StaticAllocaMap[AI] = FrameIndex;
234 if (!isa<AllocaInst>(I) || !StaticAllocaMap.count(cast<AllocaInst>(&I)))
360 StaticAllocaMap.clear();
FastISel.cpp 268 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V))))
638 auto SI = FuncInfo.StaticAllocaMap.find(AI);
639 if (SI != FuncInfo.StaticAllocaMap.end())
1253 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(Address))))
1749 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I)))
SelectionDAGBuilder.cpp 1336 auto SI = FuncInfo.StaticAllocaMap.find(AI);
1337 if (SI != FuncInfo.StaticAllocaMap.end()) {
1644 FuncInfo.StaticAllocaMap.find(AI);
1645 if (SI != FuncInfo.StaticAllocaMap.end())
3983 if (FuncInfo.StaticAllocaMap.count(&I))
6006 auto I = FuncInfo.StaticAllocaMap.find(AI);
6007 if (I != FuncInfo.StaticAllocaMap.end())
6138 int FI = FuncInfo.StaticAllocaMap[FnCtx];
6565 int FI = FuncInfo.StaticAllocaMap[Slot];
6778 auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject)
    [all...]
SelectionDAGISel.cpp 1343 auto SI = FuncInfo.StaticAllocaMap.find(AI);
1344 if (SI != FuncInfo.StaticAllocaMap.end())
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 214 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
320 FuncInfo.StaticAllocaMap.find(AI);
321 if (SI != FuncInfo.StaticAllocaMap.end()) {
598 FuncInfo.StaticAllocaMap.find(AI);
600 if (SI != FuncInfo.StaticAllocaMap.end()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 312 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
389 FuncInfo.StaticAllocaMap.find(AI);
390 if (SI != FuncInfo.StaticAllocaMap.end()) {
2276 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
2282 FuncInfo.StaticAllocaMap.find(AI);
2284 if (SI != FuncInfo.StaticAllocaMap.end()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFastISel.cpp 341 FuncInfo.StaticAllocaMap.find(AI);
343 if (SI != FuncInfo.StaticAllocaMap.end()) {
470 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
532 FuncInfo.StaticAllocaMap.find(AI);
533 if (SI != FuncInfo.StaticAllocaMap.end()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMFastISel.cpp 647 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
653 FuncInfo.StaticAllocaMap.find(AI);
657 if (SI != FuncInfo.StaticAllocaMap.end()) {
704 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
787 FuncInfo.StaticAllocaMap.find(AI);
788 if (SI != FuncInfo.StaticAllocaMap.end()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FastISel.cpp 839 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) ||
878 FuncInfo.StaticAllocaMap.find(A);
879 if (SI != FuncInfo.StaticAllocaMap.end()) {
2767 MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]);
3856 if (!FuncInfo.StaticAllocaMap.count(C))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 351 if (!FuncInfo.StaticAllocaMap.count(AI))
355 FuncInfo.StaticAllocaMap.find(AI);
357 if (SI != FuncInfo.StaticAllocaMap.end()) {
571 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
657 FuncInfo.StaticAllocaMap.find(AI);
658 if (SI != FuncInfo.StaticAllocaMap.end()) {

Completed in 39 milliseconds