| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| ASanStackFrameLayout.cpp | 34 // We also force minimal alignment for all vars to kMinAlignment so that vars 54 ComputeASanStackFrameLayout(SmallVectorImpl<ASanStackVariableDescription> &Vars, 60 const size_t NumVars = Vars.size(); 63 Vars[i].Alignment = std::max(Vars[i].Alignment, kMinAlignment); 65 llvm::stable_sort(Vars, CompareVars); 69 Layout.FrameAlignment = std::max(Granularity, Vars[0].Alignment); 71 Vars[0].Alignment); 75 size_t Alignment = std::max(Granularity, Vars[i].Alignment) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| ASanStackFrameLayout.h | 52 SmallVectorImpl<ASanStackVariableDescription> &Vars, 62 const SmallVectorImpl<ASanStackVariableDescription> &Vars); 67 GetShadowBytes(const SmallVectorImpl<ASanStackVariableDescription> &Vars, 75 const SmallVectorImpl<ASanStackVariableDescription> &Vars,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyExternalSymbolDumper.cpp | 23 if (auto Vars = Symbol.findAllChildren<PDBSymbolPublicSymbol>()) { 24 while (auto Var = Vars->getNext())
|
| llvm-pdbutil.cpp | 1250 if (auto Vars = GlobalScope->findAllChildren<PDBSymbolData>()) { 1253 while (auto Var = Vars->getNext()) 1257 while (auto Var = Vars->getNext())
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReader.cpp | 12125 SmallVector<Expr *, 16> Vars; 12126 Vars.reserve(NumVars); 12128 Vars.push_back(Record.readSubExpr()); 12129 C->setVarRefs(Vars); 12182 SmallVector<Expr *, 16> Vars; 12183 Vars.reserve(NumVars); 12185 Vars.push_back(Record.readSubExpr()); 12186 C->setVarRefs(Vars); 12187 Vars.clear(); 12189 Vars.push_back(Record.readSubExpr()) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| OpenMPClause.cpp | 571 // Allocate space for 5 lists (Vars, Inits, Updates, Finals), 2 expressions 597 // Allocate space for 5 lists (Vars, Inits, Updates, Finals), 2 expressions 1082 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1090 Sizes.NumVars = Vars.size(); 1115 Clause->setVarRefs(Vars); 1136 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1143 Sizes.NumVars = Vars.size(); 1168 Clause->setVarRefs(Vars); 1186 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1193 Sizes.NumVars = Vars.size() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BTFDebug.h | 183 std::vector<std::tuple<uint32_t, const MCSymbol *, uint32_t>> Vars; 188 return BTFTypeBase::getSize() + BTF::BTFDataSecVarSize * Vars.size(); 191 Vars.push_back(std::make_tuple(Id, Sym, Size));
|
| BTFDebug.cpp | 361 BTFType.Info |= Vars.size(); 367 for (const auto &V : Vars) {
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| TreeTransform.h | 9492 llvm::SmallVector<Expr *, 16> Vars; 9493 Vars.reserve(C->varlist_size()); 9498 Vars.push_back(EVar.get()); 9501 Vars, C->getBeginLoc(), C->getLParenLoc(), C->getEndLoc()); 9507 llvm::SmallVector<Expr *, 16> Vars; 9508 Vars.reserve(C->varlist_size()); 9513 Vars.push_back(EVar.get()); 9516 Vars, C->getBeginLoc(), C->getLParenLoc(), C->getEndLoc()); 9522 llvm::SmallVector<Expr *, 16> Vars; 9523 Vars.reserve(C->varlist_size()) [all...] |
| SemaOpenMP.cpp | 2959 SmallVector<Expr *, 8> Vars; 2972 Vars.push_back(DE); 3022 Vars.push_back(RefExpr); 3030 if (!Vars.empty()) { 3032 Vars); 3148 SmallVector<Expr *, 8> Vars; 3184 Vars.push_back(RefExpr); 3188 if (Vars.empty()) 3192 auto *D = OMPAllocateDecl::Create(Context, Owner, Loc, Vars, Clauses); 3885 std::make_pair(StringRef(), QualType()) // __context with shared vars [all...] |
| SemaTemplateInstantiate.cpp | 1659 SmallVector<VarDecl *, 8> Vars; 1660 Vars.reserve(E->getNumExpansions()); 1666 Vars.push_back(D); 1671 E->getParameterPackLocation(), Vars);
|
| SemaTemplateInstantiateDecl.cpp | 3233 SmallVector<Expr *, 5> Vars; 3237 Vars.push_back(Var); 3241 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars); 3250 SmallVector<Expr *, 5> Vars; 3254 Vars.push_back(Var); 3269 D->getLocation(), Vars, Clauses, Owner);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| VarLocBasedImpl.cpp | 775 auto &Vars = Loc2Vars[Location]; 777 {Location, static_cast<LocIndex::u32_index_t>(Vars.size())}); 778 Vars.push_back(VL); 833 /// two different maps (Vars/EntryValuesBackupVars), so erase/insert 837 /// we perform the operation on the Vars. 842 SmallDenseMap<DebugVariable, LocIndices, 8> Vars; 882 Vars.clear(); 888 assert(Vars.empty() == EntryValuesBackupVars.empty() && 889 Vars.empty() == VarLocs.empty() && 1038 /// location, erase the variable from the Vars set [all...] |
| InstrRefBasedImpl.cpp | 898 /// determine the blocks live-out variable value. The Vars container forms the 902 MapVector<DebugVariable, DbgValue> Vars; 918 auto Result = Vars.insert(std::make_pair(Var, Rec)); 933 auto Result = Vars.insert(std::make_pair(Var, Rec)); 3047 for (auto &Transfer : VTracker.Vars) { 3300 for (auto &idx : VTracker->Vars) {
|
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| ParseOpenMP.cpp | 743 SmallVectorImpl<Expr *> *Vars = &Uniforms; 745 Vars = &Aligneds; 748 Vars = &Linears; 753 getOpenMPClauseKind(ClauseName), *Vars, Data)) 3719 SmallVectorImpl<Expr *> &Vars, 3962 Vars.push_back(VarExpr.get()); 4006 return (Kind != OMPC_depend && Kind != OMPC_map && Vars.empty()) || 4071 SmallVector<Expr *, 4> Vars; 4074 if (ParseOpenMPVarList(DKind, Kind, Vars, Data)) 4081 Kind, Vars, Data.DepModOrTailExpr, Locs, Data.ColonLoc [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| DwarfCompileUnit.cpp | 1004 auto Vars = DU->getScopeVariables().lookup(Scope); 1005 for (auto &DV : Vars.Args) 1009 auto Locals = sortLocalVars(Vars.Locals);
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGOpenMPRuntimeGPU.cpp | 164 // /* globalized vars */[WarSize] align (max(decl_align, 166 // /* globalized vars */ for EscapedDeclsForTeams 311 ArrayRef<const Expr *> Vars; 313 Vars = PC->getVarRefs(); 315 Vars = PC->getVarRefs(); 318 for (const auto *E : Vars) { 1603 llvm::SmallVectorImpl<const ValueDecl *> &Vars) { 1621 Vars.push_back(getPrivateItem(E)); 1628 llvm::SmallVectorImpl<const ValueDecl *> &Vars) { 1633 Vars.push_back(getPrivateItem(E)) [all...] |
| CGOpenMPRuntime.h | 452 /// shared vars */ 1297 /// \param Vars List of variables to flush. 1298 virtual void emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *> Vars, 2178 /// \param Vars List of variables to flush. 2179 void emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *> Vars,
|
| CGOpenMPRuntime.cpp | 2085 CGF.Builder.getInt32(CapturedVars.size()), // Number of captured vars 3456 // /* private vars */ 3962 /// private/firstprivate/lastprivate vars and last_iter flag) 10867 CGF.Builder.getInt32(CapturedVars.size()), // Number of captured vars 12137 // Vars in target/task regions must be excluded completely. 12148 // Exclude vars in private clauses. 12273 "Expected list of disabled private vars."); 12279 "Expected list of lastprivate conditional vars."); 12742 ArrayRef<const Expr *> Vars,
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| MemorySSAUpdater.cpp | 462 void MemorySSAUpdater::fixupDefs(const SmallVectorImpl<WeakVH> &Vars) { 465 for (auto &Var : Vars) {
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| CFG.cpp | 256 return &Scope->Vars[VarIter - 1]; 262 return Scope->Vars[0]; 305 AutomaticVarsTy Vars; 314 : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {} 317 const_iterator begin() const { return const_iterator(*this, Vars.size()); } 320 Vars.push_back(VD, ctx);
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| OpenMPClause.h | 2950 /// Set list of helper temp vars for inscan copy array operations. 2961 /// Set list of helper temp elements vars for inscan copy array operations. 3695 /// { Vars[] /* in OMPVarListClause */; Privates[]; Inits[]; Updates[]; 5610 /// \param Vars The original expression used in the clause. 5625 ArrayRef<Expr *> Vars, ArrayRef<ValueDecl *> Declarations, 6530 /// Creates clause with a list of variables \a Vars. 6536 /// \param Vars The original expression used in the clause. 6547 ArrayRef<Expr *> Vars, 6732 /// Creates clause with a list of variables \a Vars. 6738 /// \param Vars The original expression used in the clause [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| CodeGenSchedule.cpp | 575 RecVec Vars = RWDef->getValueAsListOfDefs("Variants"); 576 for (Record *Variant : Vars) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| Parser.h | 3351 SmallVectorImpl<Expr *> &Vars,
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Sema.h | 11033 OpenMPClauseKind Kind, ArrayRef<Expr *> Vars, Expr *DepModOrTailExpr,
|