| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| SanitizerStats.h | 48 std::vector<Constant *> Inits;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| SanitizerStats.cpp | 33 return ArrayType::get(StatTy, Inits.size()); 49 Inits.push_back(ConstantArray::get( 66 ConstantInt::get(IntPtrTy, Inits.size() - 1), 72 if (Inits.empty()) { 87 ConstantInt::get(Int32Ty, Inits.size()), 88 ConstantArray::get(makeModuleStatsArrayTy(), Inits)}));
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| ConstantMerge.cpp | 49 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer()); 51 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i) { 52 Value *Operand = Inits->getOperand(i)->stripPointerCasts();
|
| StripSymbols.cpp | 201 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer()); 203 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i) 205 dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| StmtOpenMP.cpp | 202 "Number of counter inits is not the same as the collapsed number"); 227 "Number of dependent inits is not the same as the collapsed number"); 273 Dir->setInits(Exprs.Inits); 316 Dir->setInits(Exprs.Inits); 383 Dir->setInits(Exprs.Inits); 513 Dir->setInits(Exprs.Inits); 558 Dir->setInits(Exprs.Inits); 851 Dir->setInits(Exprs.Inits); 955 Dir->setInits(Exprs.Inits); 1000 Dir->setInits(Exprs.Inits); [all...] |
| ASTContext.cpp | 1142 "GetExternalDecl for lazy module initializer added more inits"); 1165 auto *&Inits = ModuleInitializers[M]; 1166 if (!Inits) 1167 Inits = new (*this) PerModuleInitializers; 1168 Inits->Initializers.push_back(D); 1172 auto *&Inits = ModuleInitializers[M]; 1173 if (!Inits) 1174 Inits = new (*this) PerModuleInitializers; 1175 Inits->LazyInitializers.insert(Inits->LazyInitializers.end() [all...] |
| OpenMPClause.cpp | 440 "Number of inits is not the same as the preallocated buffer"); 542 "Number of inits is not the same as the preallocated buffer"); 571 // Allocate space for 5 lists (Vars, Inits, Updates, Finals), 2 expressions 597 // Allocate space for 5 lists (Vars, Inits, Updates, Finals), 2 expressions 1245 "Number of inits is not the same as the preallocated buffer"); 1251 ArrayRef<Expr *> PrivateVars, ArrayRef<Expr *> Inits, 1281 Clause->setInits(Inits); 1311 // list entry and an equal number of private copies and inits.
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| GlobalMerge.cpp | 457 std::vector<Constant*> Inits; 477 Inits.push_back(ConstantAggregateZero::get(Tys.back())); 481 Inits.push_back(Globals[j]->getInitializer()); 505 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SIFixSGPRCopies.cpp | 398 // List of inits by immediate value. 400 InitListMap Inits; 419 Inits[Imm->getImm()].push_front(&MI); 424 for (auto &Init : Inits) { 460 (llvm::any_of(Inits, [&](InitListMap::value_type &C) { 516 for (auto &Init : Inits) { 529 for (auto &Init : Inits) {
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| LLJIT.cpp | 481 std::vector<std::pair<Function *, unsigned>> Inits; 483 Inits.push_back(std::make_pair(E.Func, E.Priority)); 484 llvm::sort(Inits, [](const std::pair<Function *, unsigned> &LHS, 490 for (auto &KV : Inits) 563 // If ObjC is not enabled but there are JIT'd ObjC inits then return
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaExprCXX.cpp | 1920 Expr **Inits = &Initializer; 1924 Inits = List->getExprs(); 1961 AllocTypeInfo, Entity, Kind, MultiExprArg(Inits, NumInits)); 1967 if (auto p = dyn_cast_or_null<InitListExpr>(Inits[0])) { 1968 Inits = p->getInits(); 1978 Expr *FirstBad = Inits[1]; 1986 Expr *Deduce = Inits[0]; 2289 SourceRange InitRange(Inits[0]->getBeginLoc(), 2290 Inits[NumInits - 1]->getEndLoc()); 2299 llvm::makeArrayRef(Inits, NumInits))) [all...] |
| SemaDeclCXX.cpp | 1957 /// \param Inits All declarations, including anonymous struct/union members and 1968 llvm::SmallSet<Decl*, 16> &Inits, 1991 if (!Inits.count(Field)) { 2010 if (!RD->isUnion() || Inits.count(I)) 2011 if (!CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed, 2279 llvm::SmallSet<Decl*, 16> Inits; 2280 for (const auto *I: Constructor->inits()) { 2282 Inits.insert(FD); 2284 Inits.insert(ID->chain_begin(), ID->chain_end()); 2289 if (!CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed [all...] |
| SemaInit.cpp | 2101 // Designated inits always initialize fields, so if we see one, all 9964 const InitializationKind &Kind, MultiExprArg Inits) { 9986 if (Expr::hasAnyTypeDependentArguments(Inits)) { 10017 (Inits.size() == 1 && Kind.getKind() != InitializationKind::IK_Direct) 10018 ? dyn_cast<InitListExpr>(Inits[0]) 10095 Inits, Candidates, SuppressUserConversions, 10099 AddOverloadCandidate(GD, I.getPair(), Inits, Candidates, 10141 Inits = MultiExprArg(ListInit->getInits(), ListInit->getNumInits()); 10159 *this, OCD_AmbiguousCandidates, Inits); 10173 *this, OCD_AllCandidates, Inits); [all...] |
| SemaOpenMP.cpp | 9413 Built.Inits.resize(NestedLoopCount); 9510 Built.Inits[Cnt] = Init.get(); 9520 Built.Inits[NestedLoopCount - 1 - IS.LoopDependentIdx]; 15385 SmallVector<Expr *, 8> Inits; 15401 Inits.push_back(nullptr); 15650 Inits.push_back(VDInitRefExpr); 15657 Vars, PrivateCopies, Inits, 17189 SmallVector<Expr *, 8> Inits; 17204 Inits.push_back(nullptr); 17270 Inits.push_back(InitRef) [all...] |
| TreeTransform.h | 2724 MultiExprArg Inits, 2726 return SemaRef.BuildInitList(LBraceLoc, Inits, RBraceLoc); 11057 SmallVector<Expr*, 4> Inits; 11059 Inits, &InitChanged)) 11069 return getDerived().RebuildInitList(E->getLBraceLoc(), Inits, 11228 SmallVector<Expr*, 4> Inits; 11229 if (TransformExprs(E->getExprs(), E->getNumExprs(), true, Inits, 11234 Inits,
|
| SemaTemplate.cpp | 6830 Expr *Inits[1] = {DeductionArg}; 6832 DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind, Inits);
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGExprConstant.cpp | 2086 SmallVector<llvm::Constant *, 4> Inits(NumElts); 2091 Inits[I] = llvm::ConstantInt::get(CGM.getLLVMContext(), Elt.getInt()); 2093 Inits[I] = llvm::ConstantFP::get(CGM.getLLVMContext(), Elt.getFloat()); 2097 return llvm::ConstantVector::get(Inits);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
| ItaniumDemangle.h | 1908 NodeArray Inits; 1911 : Node(KInitListExpr), Ty(Ty_), Inits(Inits_) {} 1913 template<typename Fn> void match(Fn F) const { F(Ty, Inits); } 1919 Inits.printWithComma(S); 4179 NodeArray Inits = popTrailingNodeArray(InitsBegin); 4180 return make<NewExpr>(ExprList, Ty, Inits, Global, IsArray);
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| StmtOpenMP.h | 786 /// Expressions for loop counters inits for CodeGen. 787 SmallVector<Expr *, 4> Inits; 841 Inits.resize(Size); 850 Inits[I] = nullptr; 1037 /// Get the dependent inits storage. 1081 8 * CollapsedNum; // Counters, PrivateCounters, Inits, 1391 ArrayRef<Expr *> inits() { return getInits(); } function in class:clang::OMPLoopDirective 1393 ArrayRef<Expr *> inits() const { function in class:clang::OMPLoopDirective
|
| OpenMPClause.h | 2464 inits_range inits() { function in class:clang::final 2467 inits_const_range inits() const { function in class:clang::final 3695 /// { Vars[] /* in OMPVarListClause */; Privates[]; Inits[]; Updates[]; 3835 inits_range inits() { function in class:clang::final 3839 inits_const_range inits() const { function in class:clang::final 6915 /// \param Inits Expressions referring to private copy initializers. 6921 ArrayRef<Expr *> Inits, ArrayRef<ValueDecl *> Declarations, 6956 inits_range inits() { 6960 inits_const_range inits() const {
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTWriter.cpp | 2738 RecordData Inits; 2740 Inits.push_back(GetDeclRef(D)); 2741 if (!Inits.empty()) 2742 Stream.EmitRecord(SUBMODULE_INITIALIZERS, Inits); 6208 for (auto *VE : C->inits()) { 6321 for (auto *VE : C->inits()) { 6567 for (auto *VE : C->inits())
|
| ASTReader.cpp | 5719 SmallVector<uint32_t, 16> Inits; 5721 Inits.push_back(getGlobalDeclID(F, ID)); 5722 ContextObj->addLazyModuleInitializers(CurrentModule, Inits); 8835 assert(NumInitializers && "wrote ctor initializers but have no inits");
|