Home
last modified time | relevance | path

Searched refs:Locations (Results 1 – 25 of 51) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
H A DSymbolOccurrences.cpp17 ArrayRef<SourceLocation> Locations) in SymbolOccurrence() argument
20 assert(Locations.size() == NamePieces.size() && in SymbolOccurrence()
22 assert(!Locations.empty() && "no locations"); in SymbolOccurrence()
23 if (Locations.size() == 1) { in SymbolOccurrence()
25 Locations[0], Locations[0].getLocWithOffset(NamePieces[0].size())); in SymbolOccurrence()
28 MultipleRanges = std::make_unique<SourceRange[]>(Locations.size()); in SymbolOccurrence()
29 NumRanges = Locations.size(); in SymbolOccurrence()
30 for (const auto &Loc : llvm::enumerate(Locations)) { in SymbolOccurrence()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DLookupResult.cpp21 if (Index < Locations.size()) { in getSourceFile()
22 if (!Locations[Index].Dir.empty()) { in getSourceFile()
23 if (Locations[Index].Base.empty()) { in getSourceFile()
24 Fullpath = std::string(Locations[Index].Dir); in getSourceFile()
27 llvm::sys::path::append(Storage, Locations[Index].Dir, in getSourceFile()
28 Locations[Index].Base); in getSourceFile()
31 } else if (!Locations[Index].Base.empty()) in getSourceFile()
32 Fullpath = std::string(Locations[Index].Base); in getSourceFile()
61 auto NumLocations = LR.Locations.size(); in operator <<()
68 OS << LR.Locations[I]; in operator <<()
H A DDwarfTransformer.cpp525 NumDwarfInlineInfos != LR->Locations.size()) { in verify()
528 << LR->Locations.size() << "\n"; in verify()
535 Log << " " << LR->Locations.size() << " GSYM frames:\n"; in verify()
536 for (size_t Idx = 0, count = LR->Locations.size(); in verify()
538 const auto &gii = LR->Locations[Idx]; in verify()
547 for (size_t Idx = 0, count = LR->Locations.size(); Idx < count; in verify()
549 const auto &gii = LR->Locations[Idx]; in verify()
H A DFunctionInfo.cpp227 LR.Locations.push_back(SrcLoc); in lookup()
243 LR.Locations.push_back(SrcLoc); in lookup()
250 LR.Locations); in lookup()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackMaps.cpp271 const LocationVec &CSLocs = CSI.Locations; in print()
391 LocationVec &Locations, in parseStatepointOpers() argument
395 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); // CC in parseStatepointOpers()
396 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); // Flags in parseStatepointOpers()
397 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); // Num Deopts in parseStatepointOpers()
400 unsigned NumDeoptArgs = Locations.back().Offset; in parseStatepointOpers()
401 assert(Locations.back().Type == Location::Constant); in parseStatepointOpers()
405 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); in parseStatepointOpers()
438 (void)parseOperand(MOB + BaseIdx, MOE, Locations, LiveOuts); in parseStatepointOpers()
439 (void)parseOperand(MOB + DerivedIdx, MOE, Locations, LiveOuts); in parseStatepointOpers()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.h51 auto I = Locations.find(Val); in getLocation()
52 if (I == Locations.end()) in getLocation()
58 assert(!Locations.count(Val) && in setLocation()
60 Locations[Val] = Location; in setLocation()
109 DenseMap<SDValue, SDValue> Locations;
H A DInstrEmitter.h114 ArrayRef<SDDbgOperand> Locations,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h165 std::map<uint32_t, UnwindLocation> Locations; variable
175 auto Pos = Locations.find(RegNum); in getRegisterLocation()
176 if (Pos == Locations.end()) in getRegisterLocation()
187 Locations.erase(RegNum); in setRegisterLocation()
188 Locations.insert(std::make_pair(RegNum, Location)); in setRegisterLocation()
194 void removeRegisterLocation(uint32_t RegNum) { Locations.erase(RegNum); } in removeRegisterLocation()
210 bool hasLocations() const { return !Locations.empty(); } in hasLocations()
212 size_t size() const { return Locations.size(); } in size()
215 return Locations == RHS.Locations;
H A DDWARFDebugLoc.h101 LocationLists Locations; variable
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DInitialization.h609 SourceLocation Locations[3]; variable
614 Locations[0] = Loc1; in InitializationKind()
615 Locations[1] = Loc2; in InitializationKind()
616 Locations[2] = Loc3; in InitializationKind()
735 SourceLocation getLocation() const { return Locations[0]; } in getLocation()
739 return SourceRange(Locations[0], Locations[2]); in getRange()
746 return Locations[1]; in getEqualLoc()
776 return SourceRange(Locations[1], Locations[2]); in getParenOrBraceRange()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DStackMaps.h315 LocationVec Locations; member
320 LocationVec &&Locations, LiveOutVec &&LiveOuts) in CallsiteInfo()
321 : CSOffsetExpr(CSOffsetExpr), ID(ID), Locations(std::move(Locations)), in CallsiteInfo()
371 LocationVec &Locations, LiveOutVec &LiveOuts);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DIntrinsicInst.cpp85 auto Locations = location_ops(); in replaceVariableLocationOp() local
86 auto OldIt = find(Locations, OldValue); in replaceVariableLocationOp()
87 assert(OldIt != Locations.end() && "OldValue must be a current location"); in replaceVariableLocationOp()
97 for (auto *VMD : Locations) in replaceVariableLocationOp()
/netbsd-src/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c2823 CursorSourceLocation *Locations = 0; in inspect_cursor_at() local
2834 Locations = (CursorSourceLocation *)malloc( in inspect_cursor_at()
2836 assert(Locations); in inspect_cursor_at()
2839 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename, in inspect_cursor_at()
2840 &Locations[Loc].line, in inspect_cursor_at()
2841 &Locations[Loc].column, 0, 0))) in inspect_cursor_at()
2885 CXFile file = clang_getFile(TU, Locations[Loc].filename); in inspect_cursor_at()
2890 clang_getLocation(TU, file, Locations[Loc].line, in inspect_cursor_at()
2891 Locations[Loc].column)); in inspect_cursor_at()
2898 free(Locations[Loc].filename); in inspect_cursor_at()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp164 : BB(B), Pred(P), Values(std::move(V)), Locations(std::move(L)) {} in RenamePassData()
169 LocationVector Locations; member
652 RenamePassData::LocationVector Locations(Allocas.size()); in run() local
658 std::move(Locations)); in run()
663 RenamePass(RPD.BB, RPD.Pred, RPD.Values, RPD.Locations, RenamePassWorkList); in run()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/Rename/
H A DSymbolOccurrences.h64 ArrayRef<SourceLocation> Locations);
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp260 json::Array Locations; in createThreadFlow() local
263 Locations.push_back(createThreadFlowLocation( in createThreadFlow()
271 return json::Object{{"locations", std::move(Locations)}}; in createThreadFlow()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
H A DLookupResult.h54 SourceLocations Locations; member
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/hw/rv-n-cris/
H A Dirq1.ms19 # Locations of IRQ notifiers above depend on when the simulator is
H A Dmem1.ms34 # Locations of IRQ notifiers above depend on when the simulator is
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
H A DVarLocBasedImpl.cpp752 SmallVector<LocIndex::u32_location_t, 4> Locations; in insert() local
759 VL.getDescribingRegs(Locations); in insert()
760 assert(all_of(Locations, in insert()
767 Locations.push_back(Loc); in insert()
771 Locations.push_back(Loc); in insert()
773 Locations.push_back(LocIndex::kUniversalLocation); in insert()
774 for (LocIndex::u32_location_t Location : Locations) { in insert()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp352 SmallVector<SourceLocation, 4> Locations; in DiagnoseUnexpandedParameterPacks() local
368 Locations.push_back(Unexpanded[I].second); in DiagnoseUnexpandedParameterPacks()
376 for (unsigned I = 0, N = Locations.size(); I != N; ++I) in DiagnoseUnexpandedParameterPacks()
377 DB << SourceRange(Locations[I]); in DiagnoseUnexpandedParameterPacks()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DStatepoints.rst439 Locations for each pointer value which may need read and/or updated by
450 Each statepoint generates the following Locations:
458 * Constant which describes number of following deopt *Locations* (not
460 * Variable number of Locations, one for each deopt parameter listed in the
467 exactly two Locations. Relocation records are described in detail
472 Locations. The second element in the record represents the pointer (or
484 * The Locations within each record may either be of pointer size or a
489 Both Locations in a pair can be assumed to be of the same size.
491 Note that the Locations used in each section may describe the same
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/docs/cp/topics/
H A Dlocations.rst20 Source Locations
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/cp/topics/
H A Dlocations.rst20 Source Locations
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/topics/
H A Dlocations.rst20 Source Locations

123