Searched refs:AI (Results 101 - 125 of 164) sorted by relevance

1234567

/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp945 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
946 ++AI, ++Idx)
947 AI->setName(Args[Idx]);
955 Function::arg_iterator AI = F->arg_begin(); local
956 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
961 Builder.CreateStore(AI, Alloca);
H A Dtoy.cpp1232 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
1233 ++AI, ++Idx)
1234 AI->setName(Args[Idx]);
1242 Function::arg_iterator AI = F->arg_begin(); local
1243 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
1248 Builder.CreateStore(AI, Alloca);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp258 if (AllocaInst *AI = dyn_cast<AllocaInst>(L->getOperand(0))) {
260 for (User *U : AI->users()) {
264 if (SI->getOperand(1) == AI) continue;
270 if (!isAddressTaken && AI->isStaticAlloca())
280 if (AllocaInst *AI = dyn_cast<AllocaInst>(GEP->getOperand(0)))
281 if (AI->isStaticAlloca() && GEP->hasAllConstantIndices())
H A DInstCombine.h209 Instruction *visitAllocaInst(AllocaInst &AI);
387 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1752 for (auto AI = Arches.begin(), AE = Arches.end(); AI != AE; ++AI) {
1753 std::string Part = *AI;
1755 if (AI + 1 != AE)
1764 for (auto AI = OSes.begin(), AE = OSes.end(); AI != AE; ++AI) {
1765 std::string Part = *AI;
1768 if (AI
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp520 Function::arg_iterator AI = F->arg_begin(); ++AI; local
521 for (unsigned N = FT->getNumParams(); N != 0; ++AI, --N)
522 Args.push_back(&*AI);
532 Function::arg_iterator ValAI = F->arg_begin(), ShadowAI = AI; ++ValAI;
925 if (AllocaInst *AI = dyn_cast<AllocaInst>(Addr)) {
927 AllocaShadowMap.find(AI);
1050 if (AllocaInst *AI = dyn_cast<AllocaInst>(Addr)) {
1052 AllocaShadowMap.find(AI);
/external/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp526 for (BB2BBVecMap::iterator AI = AddedPhis.begin(), AE = AddedPhis.end();
527 AI != AE; ++AI) {
529 BasicBlock *To = AI->first;
530 BBVector &From = AI->second;
/external/clang/lib/CodeGen/
H A DCGDebugInfo.h250 void EmitDeclareOfAutoVariable(const VarDecl *Decl, llvm::Value *AI,
262 void EmitDeclareOfArgVariable(const VarDecl *Decl, llvm::Value *AI,
308 llvm::Value *AI, unsigned ArgNo, CGBuilderTy &Builder);
H A DCGExprCXX.cpp1087 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin(); local
1088 DeleteArgs.add(RValue::get(Ptr), *AI++); local
1092 DeleteArgs.add(RValue::get(AllocSize), *AI++); local
1096 DeleteArgs.add(getPlacementArgs()[I], *AI++);
1142 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin(); local
1143 DeleteArgs.add(Ptr.restore(CGF), *AI++);
1148 DeleteArgs.add(RV, *AI++);
1154 DeleteArgs.add(RV, *AI++);
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp299 RelocAddrMap::const_iterator AI = RMap->find(*offset_ptr); local
300 if (AI != RMap->end()) {
301 const std::pair<uint8_t, int64_t> &R = AI->second;
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp1334 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
1335 ++AI, ++Idx)
1336 AI->setName(Args[Idx]);
1344 Function::arg_iterator AI = F->arg_begin(); local
1345 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
1350 Builder.CreateStore(AI, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1515 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
1516 ++AI, ++Idx)
1517 AI->setName(Args[Idx]);
1525 Function::arg_iterator AI = F->arg_begin(); local
1526 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
1531 Builder.CreateStore(AI, Alloca);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp208 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
209 ret = AI;
/external/llvm/lib/CodeGen/
H A DGCStrategy.cpp182 if (AllocaInst *AI =
184 InitedRoots.insert(AI);
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp356 Function::arg_iterator AI = F->arg_begin(), AE = F->arg_end(); variable
358 PI != PE; ++PI, ++AI) {
359 if (AI == AE) {
365 Uses.push_back(AI);
480 Function::arg_iterator AI = F->arg_begin(), AE = F->arg_end(); local
482 for (CallSite::arg_iterator A = B; A != E; ++A, ++AI) {
484 if (AI == AE) {
490 if (SCCNodes.count(AI))
H A DDeadArgumentElimination.cpp596 for (Function::const_arg_iterator AI = F.arg_begin(),
597 E = F.arg_end(); AI != E; ++AI, ++i) {
609 Result = SurveyUses(AI, MaybeLiveArgUses);
/external/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp680 for (RecIter AI = SchedWrite.Aliases.begin(), AE = SchedWrite.Aliases.end();
681 AI != AE; ++AI) {
683 SchedModels.getSchedRW((*AI)->getValueAsDef("AliasRW"));
734 for (RecIter AI = SchedRead.Aliases.begin(), AE = SchedRead.Aliases.end();
735 AI != AE; ++AI) {
737 SchedModels.getSchedRW((*AI)->getValueAsDef("AliasRW"));
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp208 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
209 ret = AI;
/external/llvm/include/llvm/Transforms/Utils/
H A DLocal.h270 bool replaceDbgDeclareForAlloca(AllocaInst *AI, Value *NewAllocaAddress,
/external/llvm/lib/IR/
H A DAttributeImpl.h65 bool operator<(const AttributeImpl &AI) const;
H A DVerifier.cpp317 void visitAllocaInst(AllocaInst &AI);
1562 if (auto AI = dyn_cast<AllocaInst>(InAllocaArg->stripInBoundsOffsets()))
1563 Assert2(AI->isUsedWithInAlloca(),
1564 "inalloca argument for call has mismatched alloca", AI, I);
1991 void Verifier::visitAllocaInst(AllocaInst &AI) { argument
1993 PointerType *PTy = AI.getType();
1996 &AI);
1998 &AI);
1999 Assert1(AI.getArraySize()->getType()->isIntegerTy(),
2000 "Alloca array size must have integer type", &AI);
2488 AllocaInst *AI = local
[all...]
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1864 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1865 AI != AE; ++AI)
1866 WriteUseList(AI, VE, Stream);
1917 for (Module::const_alias_iterator AI = M->alias_begin(), AE = M->alias_end();
1918 AI != AE; ++AI) {
1919 WriteUseList(AI, VE, Stream);
1920 WriteUseList(AI->getAliasee(), VE, Stream);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3973 for (PtrAccessSet::iterator AI = Accesses.begin(), AE = Accesses.end();
3974 AI != AE; ++AI) {
3975 const MemAccessInfo &Access = *AI;
4059 for (PtrAccessSet::iterator AI = S.begin(), AE = S.end(); AI != AE; ++AI) {
4060 const MemAccessInfo &Access = *AI;
4514 EquivalenceClasses<MemAccessInfo>::member_iterator AI, AE;
4515 AI
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp2337 AI = RetainsToMove.Calls.begin(),
2338 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
2339 Instruction *OrigRetain = *AI;
2345 AI = ReleasesToMove.Calls.begin(),
2346 AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) {
2347 Instruction *OrigRelease = *AI;
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java59 AI(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum

Completed in 1227 milliseconds

1234567