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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StackLifetime.cpp 112 auto AllocaNo = It->second;
115 InterestingAllocas.set(AllocaNo);
116 BBMarkerSet[BB][II] = {AllocaNo, IsStart};
145 << (M.IsStart ? "start " : "end ") << M.AllocaNo
152 BlockInfo.End.reset(M.AllocaNo);
153 BlockInfo.Begin.set(M.AllocaNo);
155 BlockInfo.Begin.reset(M.AllocaNo);
156 BlockInfo.End.set(M.AllocaNo);
247 for (unsigned AllocaNo = 0; AllocaNo < NumAllocas; ++AllocaNo)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 853 bool PromoteMem2Reg::QueuePhiNode(BasicBlock *BB, unsigned AllocaNo,
856 PHINode *&PN = NewPhiNodes[std::make_pair(BBNumbers[BB], AllocaNo)];
864 PN = PHINode::Create(Allocas[AllocaNo]->getAllocatedType(), getNumPreds(BB),
865 Allocas[AllocaNo]->getName() + "." + Twine(Version++),
868 PhiToAllocaMap[PN] = AllocaNo;
912 unsigned AllocaNo = PhiToAllocaMap[APN];
915 updateForIncomingValueLocation(APN, IncomingLocs[AllocaNo],
920 APN->addIncoming(IncomingVals[AllocaNo], Pred);
923 IncomingVals[AllocaNo] = APN;
924 for (DbgVariableIntrinsic *DII : AllocaDbgUsers[AllocaNo])
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
StackLifetime.h 117 unsigned AllocaNo;
121 /// List of {InstNo, {AllocaNo, IsStart}} for each BB, ordered by InstNo.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
Inliner.cpp 162 for (unsigned AllocaNo = 0, E = IFI.StaticAllocas.size(); AllocaNo != E;
163 ++AllocaNo) {
164 AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
217 IFI.StaticAllocas[AllocaNo] = nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp 241 unsigned AllocaNo);
926 static unsigned RetagMask(unsigned AllocaNo) {
941 return FastMasks[AllocaNo % (sizeof(FastMasks) / sizeof(FastMasks[0]))];
973 AllocaInst *AI, unsigned AllocaNo) {
977 ConstantInt::get(IntptrTy, RetagMask(AllocaNo)));

Completed in 20 milliseconds