| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| DelayedDiagnostic.cpp | 25 ArrayRef<SourceLocation> Locs, 32 assert(!Locs.empty()); 36 DD.Loc = Locs.front(); 49 DD.AvailabilityData.SelectorLocs = new SourceLocation[Locs.size()]; 50 memcpy(DD.AvailabilityData.SelectorLocs, Locs.data(), 51 sizeof(SourceLocation) * Locs.size()); 52 DD.AvailabilityData.NumSelectorLocs = Locs.size();
|
| SemaAvailability.cpp | 314 ArrayRef<SourceLocation> Locs, 337 SourceLocation Loc = Locs.front(); 505 assert(SelectorSlotNames.size() == Locs.size()); 506 for (unsigned I = 0; I < Locs.size(); ++I) { 509 Locs[I], S.getLocForEndOfToken(Locs[I])); 514 FixItHint::CreateInsertion(Locs[I], SelectorSlotNames[I])); 558 ArrayRef<SourceLocation> Locs, 566 AR, Locs, ReferringDecl, OffendingDecl, UnknownObjCClass, 573 Message, Locs, UnknownObjCClass, ObjCProperty [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| DebugLocStream.h | 157 DebugLocStream &Locs; 165 ListBuilder(DebugLocStream &Locs, DwarfCompileUnit &CU, AsmPrinter &Asm, 167 : Locs(Locs), Asm(Asm), V(V), MI(MI), ListIndex(Locs.startList(&CU)), 180 DebugLocStream &getLocs() { return Locs; } 185 DebugLocStream &Locs; 189 : Locs(List.getLocs()) { 190 Locs.startEntry(Begin, End); 194 ~EntryBuilder() { Locs.finalizeEntry(); [all...] |
| DebugLocEntry.h | 117 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs) 118 : Expression(Expr), ValueLocEntries(Locs.begin(), Locs.end()), 123 is_contained(Locs, dwarf::DW_OP_stack_value)); 127 DbgValueLoc(const DIExpression *Expr, ArrayRef<DbgValueLocEntry> Locs, 129 : Expression(Expr), ValueLocEntries(Locs.begin(), Locs.end()), 133 !any_of(Locs, [](auto LE) { return LE.isLocation(); }));
|
| DebugLocStream.cpp | 41 if (!Locs.finalizeList(Asm))
|
| DIEHash.cpp | 233 const DebugLocStream &Locs = DD.getDebugLocs(); 234 const DebugLocStream::List &List = Locs.getList(LocList.getValue()); 235 for (const DebugLocStream::Entry &Entry : Locs.getEntries(List))
|
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| CTagsEmitter.cpp | 60 ArrayRef<SMLoc> Locs = R->getLoc(); 61 return !Locs.empty() ? Locs.front() : SMLoc();
|
| DAGISelMatcherEmitter.cpp | 225 auto Locs = R->getLoc(); 227 if (Locs.size() > 1) { 229 L = Locs[1]; 230 } else if (Locs.size() == 1) { 231 L = Locs[0];
|
| SearchableTableEmitter.cpp | 74 ArrayRef<SMLoc> Locs; // Source locations from the Record instance. 511 << primaryRepresentation(Table.Locs[0], Field, 609 PrintFatalError(Table.Locs, 689 Table->Locs = TableRec->getLoc(); 777 Table->Locs = Class->getLoc();
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kCallingConv.h | 32 MachineFunction &MF, SmallVectorImpl<CCValAssign> &Locs, 34 : CCState(CC, IsVarArg, MF, Locs, C), F(F) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCCCState.h | 34 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) 35 : CCState(CC, isVarArg, MF, locs, C) {} 47 SmallVectorImpl<CCValAssign> &Locs, LLVMContext &C) 48 : CCState(CC, IsVarArg, MF, Locs, C) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| CallingConvLower.cpp | 31 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) 33 TRI(*MF.getSubtarget().getRegisterInfo()), Locs(locs), Context(C) { 75 for (auto const &ValAssign : Locs) { 210 unsigned NumLocs = Locs.size(); 228 HaveRegParm = Locs.back().isRegLoc(); 232 assert(NumLocs < Locs.size() && "CC assignment failed to add location"); 233 for (unsigned I = NumLocs, E = Locs.size(); I != E; ++I) 234 if (Locs[I].isRegLoc()) 235 Regs.push_back(MCPhysReg(Locs[I].getLocReg())) [all...] |
| StackMaps.cpp | 189 MachineInstr::const_mop_iterator MOE, LocationVec &Locs, 204 Locs.emplace_back(StackMaps::Location::Direct, Size, 213 Locs.emplace_back(StackMaps::Location::Indirect, Size, 221 Locs.emplace_back(Location::Constant, sizeof(int64_t), 0, Imm); 239 Locs.emplace_back(Location::Constant, sizeof(int64_t), 0, 0xFEFEFEFE); 255 Locs.emplace_back(Location::Register, TRI->getSpillSize(*RC),
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| VarLocBasedImpl.cpp | 399 SmallVector<MachineLoc, 8> Locs; 400 /// Used to map the index of each location in Locs back to the index of its 416 auto It = find(Locs, ML); 417 if (It == Locs.end()) { 418 Locs.push_back(ML); 421 // ML duplicates an element in Locs; replace references to Op 423 unsigned OpIdx = Locs.size(); 424 unsigned DuplicatingIdx = std::distance(Locs.begin(), It); 460 assert(VL.Locs.size() == 1 && 461 VL.Locs[0].Kind == MachineLocKind::RegisterKind) [all...] |
| InstrRefBasedImpl.cpp | 535 void loadFromArray(ValueIDNum *Locs, unsigned NewCurBB) { 540 Location.Value = Locs[Location.Idx.asU64()]; 1060 // Produce a map of value numbers to the current machine locs they live 2436 // Now copy out-locs from mloc tracker into out-loc vector, checking 2447 // No need to examine successors again if out-locs didn't change. 2527 SmallVector<SmallVector<LocIdx, 4>, 8> Locs; 2538 Locs.resize(Locs.size() + 1); 2564 Locs.back().push_back(LocIdx(I)); 2569 if (Locs.empty() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| CallingConvLower.h | 198 SmallVectorImpl<CCValAssign> &Locs; 251 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C); 254 Locs.push_back(V); 326 /// but wasn't added to the location list (Locs). 530 /// After running, it will sort the locs list. 534 unsigned NumFirstPassLocs = Locs.size(); 550 TmpArgLocs.swap(Locs); 553 std::back_inserter(Locs),
|
| StackMaps.h | 363 MachineInstr::const_mop_iterator MOE, LocationVec &Locs,
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MCCodeView.cpp | 341 std::vector<MCCVLoc> Locs = getFunctionLineEntries(FuncId); 342 bool HaveColumns = any_of(Locs, [](const MCCVLoc &LineEntry) { 348 for (auto I = Locs.begin(), E = Locs.end(); I != E;) { 478 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd); 479 if (Locs.empty()) 484 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); 485 for (const MCCVLoc &Loc : Locs) { 498 MCCVLoc StartLoc = Locs.front(); 511 for (const MCCVLoc &Loc : Locs) { [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/sancov/ |
| sancov.cpp | 150 SmallVector<DILineInfo, 1> Locs; 303 for (const DILineInfo &Loc : Point.Locs) { 312 for (const DILineInfo &Loc : PointPtr->Locs) { 325 for (const auto &Loc : Point->Locs) { 434 CoveragePoint->Locs.push_back(LineInfo); 569 Point.Locs.push_back(*LineInfo); 584 Point.Locs.push_back(FrameInfo); 915 for (const auto &Loc : Point.Locs) { 930 for (const auto &Loc : Point.Locs) { 947 for (const auto &Loc : Point.Locs) { [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| SourcePrinter.cpp | 52 Expected<DWARFLocationExpressionsVector> Locs = 54 if (!Locs) { 58 consumeError(Locs.takeError()); 62 for (const DWARFLocationExpression &LocExpr : *Locs) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| Parser.h | 348 SmallVector<Loc, 8> Locs; 357 if (!Locs.empty() && Locs.back().isActive(P)) { 358 if (Locs.back().Priority <= Prio) { 359 Locs.back().TemplateName = TemplateName; 360 Locs.back().LessLoc = LessLoc; 361 Locs.back().Priority = Prio; 364 Locs.push_back({TemplateName, LessLoc, Prio, 373 while (!Locs.empty() && Locs.back().isActiveOrNested(P) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| OpenMPClause.cpp | 1082 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1113 Type, TypeIsImplicit, TypeLoc, Locs, Sizes); 1136 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1166 UDMQualifierLoc, MapperId, Locs, Sizes); 1186 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1217 UDMQualifierLoc, MapperId, Locs, Sizes); 1250 const ASTContext &C, const OMPVarListLocTy &Locs, ArrayRef<Expr *> Vars, 1277 OMPUseDevicePtrClause *Clause = new (Mem) OMPUseDevicePtrClause(Locs, Sizes); 1299 OMPUseDeviceAddrClause::Create(const ASTContext &C, const OMPVarListLocTy &Locs, 1326 auto *Clause = new (Mem) OMPUseDeviceAddrClause(Locs, Sizes) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| DelayedDiagnostic.h | 136 ArrayRef<SourceLocation> Locs,
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| BasicAliasAnalysis.cpp | 1543 AAQueryInfo::LocPair Locs({V1, V1Size}, {V2, V2Size}); 1546 std::swap(Locs.first, Locs.second); 1548 Locs, AAQueryInfo::CacheEntry{AliasResult::NoAlias, 0}); 1567 auto It = AAQI.AliasCache.find(Locs); 1595 AAQI.AssumptionBasedResults.push_back(Locs);
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| DebugInfoMetadata.cpp | 86 DILocation *DILocation::getMergedLocations(ArrayRef<const DILocation *> Locs) { 87 if (Locs.empty()) 89 if (Locs.size() == 1) 90 return Locs[0]; 91 auto *Merged = Locs[0]; 92 for (const DILocation *L : llvm::drop_begin(Locs)) {
|