Searched refs:AI (Results 151 - 175 of 178) sorted by relevance

12345678

/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp1609 for (Archive::child_iterator AI = A->child_begin(),
1611 AI != AE; ++AI) {
1612 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = AI->getAsBinary();
1651 for (Archive::child_iterator AI = A->child_begin(),
1653 AI != AE; ++AI) {
1654 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = AI->getAsBinary();
1688 for (Archive::child_iterator AI = A->child_begin(), AE = A->child_end();
1689 AI !
[all...]
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2106 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2107 AI != E; ++AI)
2108 if (!AI->hasName())
2109 NumberedVals.push_back(AI);
5271 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5272 AI->setUsedWithInAlloca(IsInAlloca);
5273 Inst = AI;
/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp426 const AllocaInst *AI = cast<AllocaInst>(Obj); local
428 FuncInfo.StaticAllocaMap.find(AI);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1194 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1196 FuncInfo.StaticAllocaMap.find(AI);
4679 const AllocaInst *AI = dyn_cast<AllocaInst>(Address);
4681 if (isParameter && !AI) {
4694 } else if (AI)
4698 // Can't do anything with other non-AI cases yet.
4712 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) {
4713 if (AI->getParent() != DI.getParent()) {
4715 FuncInfo.StaticAllocaMap.find(AI);
4778 const AllocaInst *AI
[all...]
H A DFastISel.cpp582 } else if (auto *AI = dyn_cast<AllocaInst>(Val)) {
586 auto SI = FuncInfo.StaticAllocaMap.find(AI);
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1282 CallExpr::const_arg_iterator AI = CE->arg_begin(), AE = CE->arg_end(); local
1283 for (; AI != AE && PI != PE; ++AI, ++PI) {
1284 if (const Expr *ArgE = *AI) {
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp2105 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
2106 AI != E; ++AI, ++i)
2107 SetValue(AI, ArgVals[i], StackFrame);
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp4158 for (BlockDecl::param_iterator AI = BD->param_begin(),
4159 E = BD->param_end(); AI != E; ++AI) {
4160 if (AI != BD->param_begin()) S += ", ";
4161 ParamStr = (*AI)->getNameAsString();
4162 QualType QT = (*AI)->getType();
H A DRewriteObjC.cpp3295 for (BlockDecl::param_iterator AI = BD->param_begin(),
3296 E = BD->param_end(); AI != E; ++AI) {
3297 if (AI != BD->param_begin()) S += ", ";
3298 ParamStr = (*AI)->getNameAsString();
3299 QualType QT = (*AI)->getType();
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp1167 AtomicInfo AI(*this, LV);
1170 bool AtomicIsInline = !AI.shouldUseLibcall();
H A DMicrosoftCXXABI.cpp3718 llvm::AllocaInst *AI = CGF.CreateMemTemp(ThrowType); local
3719 CGF.EmitAnyExprToMem(SubExpr, AI, ThrowType.getQualifiers(),
3727 llvm::Value *Args[] = {CGF.Builder.CreateBitCast(AI, CGM.Int8PtrTy), TI};
H A DCGDebugInfo.cpp3001 void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI, argument
3005 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
H A DCGObjC.cpp1384 const ABIArgInfo &AI = it->info; local
1386 return (AI.getKind() == ABIArgInfo::Indirect);
H A DCodeGenFunction.h2829 /// \param AI - The first function argument of the expansion.
2831 SmallVectorImpl<llvm::Argument *>::iterator &AI);
/external/llvm/include/llvm/IR/
H A DIRBuilder.h291 ConstantInt *getInt(const APInt &AI) { argument
292 return ConstantInt::get(Context, AI);
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2092 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2093 return AI->getParent() && AI->getParent()->getParent() &&
2094 AI->isStaticAlloca();
H A DValueTracking.cpp1314 AllocaInst *AI = cast<AllocaInst>(V); local
1315 unsigned Align = AI->getAlignment();
1317 Align = DL.getABITypeAlignment(AI->getType()->getElementType());
H A DScalarEvolution.cpp6245 if (const Instruction *AI = dyn_cast<Instruction>(AU->getValue()))
6247 if (AI->isIdenticalTo(BI) && !AI->mayReadFromMemory())
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1865 const AllocaInst &AI = cast<AllocaInst>(I); local
1866 unsigned AlignRecord = Log2_32(AI.getAlignment()) + 1;
1870 AlignRecord |= AI.isUsedWithInAlloca() << 5;
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3990 AllocaInst *AI = new AllocaInst(Ty->getElementType(), Size, Align);
3991 AI->setUsedWithInAlloca(InAlloca);
3992 I = AI;
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1796 isAllocSiteRemovable(Instruction *AI, SmallVectorImpl<WeakVH> &Users, argument
1799 Worklist.push_back(AI);
/external/clang/lib/Sema/
H A DSemaExpr.cpp11236 for (auto AI : CurBlock->TheDecl->params()) {
11237 AI->setOwningFunction(CurBlock->TheDecl);
11240 if (AI->getIdentifier()) {
11241 CheckShadow(CurBlock->TheScope, AI);
11243 PushOnScopeChains(AI, CurBlock->TheScope);
14079 for (const auto &AI : FT->param_types()) {
14081 S.BuildParmVarDeclForTypedef(FD, Loc, AI);
H A DSemaDeclAttr.cpp5010 for (const auto &AI : FT->param_types()) {
5011 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI);
H A DSemaDecl.cpp7439 for (const auto &AI : FT->param_types()) {
7441 BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp16699 X86TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
16701 const Type *MemType = AI->getType();
16710 AtomicRMWInst::BinOp Op = AI->getOperation();
16724 return !AI->use_empty() ? AtomicRMWExpansionKind::CmpXChg
16745 X86TargetLowering::lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const {
16747 const Type *MemType = AI->getType();
16754 auto Builder = IRBuilder<>(AI);
16756 auto SynchScope = AI->getSynchScope();
16759 auto Order = AtomicCmpXchgInst::getStrongestFailureOrdering(AI->getOrdering());
16760 auto Ptr = AI
[all...]

Completed in 1159 milliseconds

12345678