Home
last modified time | relevance | path

Searched full:locations (Results 1 – 25 of 1055) sorted by relevance

12345678910>>...43

/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DSymbolOccurrences.cpp17 ArrayRef<SourceLocation> Locations) in SymbolOccurrence() argument
20 assert(Locations.size() == NamePieces.size() && in SymbolOccurrence()
21 "mismatching number of locations and lengths"); 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()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpointExtensions.i8 … '''A helper object that will lazily hand out locations for a breakpoint when supplied an index.'''
30 …'''An accessor function that returns a list() that contains all locations in a lldb.SBBreakpoint o…
31 locations = []
34 locations.append(accessor[idx])
35 return locations
38 '''Iterate over all breakpoint locations in a lldb.SBBreakpoint
43 '''Return the number of breakpoint locations in a lldb.SBBreakpoint
47locations = property(get_breakpoint_location_list, None, doc='''A read only property that returns …
48 …one, doc='''A read only property that returns an object that can access locations by index (not lo…
52 …mLocations, None, doc='''A read only property that returns the count of locations of this breakpoi…
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h38 /// locations that have been determined for the filter/resolver pair, and
44 /// target that owns it. It also filters out locations based on whatever
49 /// to the filter that will find breakpoint locations. How it does this is
56 /// This stores the breakpoint locations that have been determined to date.
59 /// the location already at that address. Locations can be looked up by ID,
69 /// on the individual locations. The options set on the breakpoint take
71 /// instance disabling the breakpoint will cause NONE of the locations to get
78 /// Breakpoint, you always stop at one of its locations. So the "should stop"
185 /// new locations that match the breakpoint's specifications.
189 /// locations that match the breakpoint's specifications.
[all …]
H A DBreakpointLocationList.h24 /// Breakpoint to manage a list of breakpoint locations, each breakpoint
28 // is not just some random collection of locations. Rather, the act of
30 // locations have the same breakpoint ID as well. If you need a generic
31 // container for breakpoint locations, use BreakpointLocationCollection.
72 /// Returns a breakpoint location list of the breakpoint locations in the
79 /// A breakpoint collection that gets any breakpoint locations
108 /// Removes all the locations in this list from their breakpoint site owners
112 /// Tells all the breakpoint locations in this list to attempt to resolve
116 /// Returns the number of breakpoint locations in this list with resolved
120 /// Number of qualifying breakpoint locations.
[all …]
H A DBreakpointResolver.h25 /// to resolve logical breakpoints to their of concrete breakpoint locations.
34 /// breakpoint locations.
70 /// This updates the offset for this breakpoint. All the locations
75 /// The offset to add to all locations.
81 /// breakpoint's target, and adds any new locations it finds.
88 /// list \a modules, and adds any new locations it finds.
203 /// breakpoint locations in this breakpoint for all the resultant addresses.
221 lldb::BreakpointWP m_breakpoint; // This is the breakpoint we add locations to.
H A DBreakpointList.h93 /// Removes all invalid breakpoint locations.
95 /// Removes all breakpoint locations in the list with architectures that
96 /// aren't compatible with \a arch. Also remove any breakpoint locations
97 /// with whose locations have address where the section has been deleted
131 /// If \a load is \b false, then delete breakpoint locations when
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DLookupResult.cpp22 if (Index < Locations.size()) { in getSourceFile()
23 if (!Locations[Index].Dir.empty()) { in getSourceFile()
24 if (Locations[Index].Base.empty()) { in getSourceFile()
25 Fullpath = std::string(Locations[Index].Dir); in getSourceFile()
28 llvm::sys::path::append(Storage, Locations[Index].Dir, in getSourceFile()
29 Locations[Index].Base); in getSourceFile()
32 } else if (!Locations[Index].Base.empty()) in getSourceFile()
33 Fullpath = std::string(Locations[Index].Base); in getSourceFile()
62 auto NumLocations = LR.Locations.size(); in operator <<()
69 OS << LR.Locations[I]; in operator <<()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSymbol.cpp68 if (!Locations) in addLocation()
69 Locations = std::make_unique<LVLocations>(); in addLocation()
78 Locations->push_back(CurrentLocation); in addLocation()
114 LVLocations::iterator Iter = Locations->insert(Pos, Gap); in addLocationGap()
126 // The symbol has locations records. Fill gaps in the location list. in fillLocationGaps()
139 // Traverse the symbol locations and for each location contained in in fillLocationGaps()
140 // the current parent range, insert locations for any existing gap. in fillLocationGaps()
144 for (LVLocations::iterator Iter = Locations->begin(); in fillLocationGaps()
145 Iter != Locations->end(); ++Iter) { in fillLocationGaps()
161 addLocationGap(Locations->end(), Marker, ParentHighPC); in fillLocationGaps()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLocation.h10 // to describe variable locations.
86 // Line numbers associated with locations ranges.
122 // Mark the locations that have only DW_OP_fbreg as stack offset based.
125 // Line numbers for locations.
131 // Addresses for locations.
145 // false: No locations or multiple locations.
147 static bool calculateCoverage(LVLocations *Locations, unsigned &Factor,
154 static void print(LVLocations *Locations, raw_ostream &OS, bool Full = true);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp123 // FIXME: Debug values referencing 64+ unique machine locations are rare and in DbgVariableValue()
127 // locations. We will also need to verify that this does not cause issues in DbgVariableValue()
137 "locations, dropping...\n"); in DbgVariableValue()
198 // Undef values don't exist in locations (and thus not in LocNoMap in remapLocNos()
251 // unlikely that any debug value will need 64+ locations).
263 /// Map of stack slot offsets for spilled locations.
264 /// Non-spilled locations are not added to the map.
296 /// Numbered locations referenced by locmap.
297 SmallVector<MachineOperand, 4> locations; member in __anon093131440411::UserValue
362 /// inserting anything in locations. Since locations is a vector and the
[all …]
H A DStackMaps.cpp230 assert(Size > 0 && "Need a valid size for indirect memory locations."); in parseOperand()
306 const LocationVec &CSLocs = CSI.Locations; in print()
310 OS << WSMP << " has " << CSLocs.size() << " locations\n"; in print()
426 LocationVec &Locations, in parseStatepointOpers()
430 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); // CC in parseStatepointOpers()
431 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); // Flags in parseStatepointOpers()
432 MOI = parseOperand(MOI, MOE, Locations, LiveOuts); // Num Deopts in parseStatepointOpers()
435 unsigned NumDeoptArgs = Locations.back().Offset; in parseStatepointOpers()
436 assert(Locations.back().Type == Location::Constant); in parseStatepointOpers()
440 MOI = parseOperand(MOI, MOE, Locations, LiveOut in parseStatepointOpers()
411 parseStatepointOpers(const MachineInstr & MI,MachineInstr::const_mop_iterator MOI,MachineInstr::const_mop_iterator MOE,LocationVec & Locations,LiveOutVec & LiveOuts) parseStatepointOpers() argument
484 LocationVec Locations; recordStackMapOpers() local
565 auto &Locations = CSInfos.back().Locations; recordPatchPoint() local
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLookupResult.h42 /// The source locations that match this address. This information will only
48 /// multiple locations and allows unwinding of inline call stacks. The
49 /// deepest inline function will appear at index zero in the source locations
51 SourceLocations Locations; member
62 return LHS.Locations == RHS.Locations;
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp279 // breakpoint vs. its locations.
458 // locations, then dispatch an event with the new locations. in ResolveBreakpointInModules()
491 // current location list and if there are any locations in ModulesChanged()
494 // breakpoint locations for that module. in ModulesChanged()
495 // However, we do add breakpoint sites to these locations if needed. in ModulesChanged()
501 // them after the locations pass. Have to do it this way because resolving in ModulesChanged()
502 // breakpoints will add new locations potentially. in ModulesChanged()
557 // Go through the currently set locations and if any have breakpoints in in ModulesChanged()
558 // the module list, then remove their breakpoint sites, and their locations in ModulesChanged()
642 // First find all the locations that are in the old module in ModuleReplaced()
[all …]
/freebsd/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_plcr.h127 1-> 2^N specific locations. */
129 2-> 2^(N-1) base locations. */
131 4-> 2^(N-2) base locations. */
133 8->2^(N-3) base locations. */
135 16-> 2^(N-4) base locations. */
137 32-> 2^(N-5) base locations. */
139 64-> 2^(N-6) base locations. */
141 128-> 2^(N-7) base locations. */
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.h29 /// For each statepoint it tracks locations of it's gc valuess (incoming and
51 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;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DLiveDebugValues.cpp25 /// The LiveDebugValues pass extends the range of variable locations
27 /// and any other code locations where the variable location is valid.
30 /// implementation tracks the values defined by instructions through locations.
34 /// locations.
47 "experimental-debug-variable-locations",
48 cl::desc("Use experimental new value-tracking variable locations"));
H A DVarLocBasedImpl.cpp12 /// algorithm. The set of expressions is the set of machine locations
22 /// placed to extend variable locations as far they're available. This file
24 /// locations, using the VarLoc class.
34 /// all other locations for that DebugVariable.
38 /// live-in. This propagates variable locations into every basic block where
40 /// where locations are specified due to an assignment or some optimization.
42 /// DBG_VALUEs too to track variable values bewteen locations. All this allows
43 /// DbgEntityHistoryCalculator to focus on only the locations within individual
61 /// Formally, all DebugVariable locations that are live-out of a block are
74 /// solution because all incorrect locations will have a "False" propagated into
[all …]
H A DInstrRefBasedImpl.cpp13 /// This pass propagates variable locations between basic blocks, resolving
44 /// DBG_VALUE instructions specifying those locations. Variable locations may
66 /// because we're determining which machine locations contain which values.
67 /// The "locations" are constant: what's unknown is what value they contain.
139 // Act more like the VarLoc implementation, by propagating some locations too
161 /// Tracker for converting machine value locations and variable values into
162 /// variable locations (the output of LiveDebugValues), recorded as DBG_VALUEs
163 /// specifying block live-in locations and transfers within blocks.
168 /// out variable locations for the live-in variable values (if there _is_ a
170 /// stepped through, transfers of values between machine locations are
[all …]
/freebsd/contrib/llvm-project/clang/include/clang-c/
H A DCXSourceLocation.h10 |* This header provides the interface to C Index source locations. *|
25 * \defgroup CINDEX_LOCATIONS Physical source locations
27 * Clang represents physical source locations in its abstract syntax tree in
53 * starting and end locations from a source range, respectively.
67 * Determine whether two source locations, which must refer into
71 * \returns non-zero if the source locations refer to the same location, zero
72 * if they refer to different locations.
95 * locations.
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h10 // are used to classify a collection of memory locations into a maximal number
53 /// Memory locations in this alias set.
69 /// We keep track of whether this alias set merely refers to the locations of
117 // Alias Set iteration - Allow access to all of the memory locations which are
125 /// Retrieve the pointer values for the memory locations in this alias set.
126 /// The order matches that of the memory locations, but duplicate pointer
167 // locations with that pointer value.
225 // The total number of memory locations contained in all alias sets.
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h174 /// A class that can track all registers with locations in a UnwindRow object.
176 /// Register locations use a map where the key is the register number and the
179 /// The register maps are put into a class so that all register locations can
183 std::map<uint32_t, UnwindLocation> Locations; variable
193 auto Pos = Locations.find(RegNum); in getRegisterLocation()
194 if (Pos == Locations.end()) in getRegisterLocation()
205 Locations.erase(RegNum); in setRegisterLocation()
206 Locations.insert(std::make_pair(RegNum, Location)); in setRegisterLocation()
212 void removeRegisterLocation(uint32_t RegNum) { Locations.erase(RegNum); } in removeRegisterLocation()
214 /// Dump all registers + locations that are currently defined in this object.
[all …]
/freebsd/usr.sbin/autofs/autofs/
H A Dinclude_nis_nullfs147 # Options are applied to all locations. We ca not have "nullfs"
148 # for only some locations and "nfs" for others for a given
150 # locations is for redundancy using replicated volumes on
155 # locations all with host parts matching "me". In that case,
156 # it would be safe to rewrite the locations and specify
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Davxneconvertintrin.h29 /// stored at memory locations starting at location \a __A to a
62 /// stored at memory locations starting at location \a __A to a
95 /// stored at memory locations starting at location \a __A to a
128 /// stored at memory locations starting at location \a __A to a
161 /// stored at memory locations starting at location \a __A to packed
194 /// stored at memory locations starting at location \a __A to packed
227 /// stored at memory locations starting at location \a __A to packed
260 /// stored at memory locations starting at location \a __A to packed
293 /// stored at memory locations starting at location \a __A to packed
326 /// stored at memory locations starting at location \a __A to packed
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLostDebugLocObserver.cpp31 << " instrs for " << LostDebugLocs.size() << " locations\n"); in analyzeDebugLocations()
54 dbgs() << ".. Lost locations:\n"; in analyzeDebugLocations()
60 dbgs() << ".. MIs with matched locations:\n"; in analyzeDebugLocations()
64 dbgs() << ".. Remaining MIs with unmatched/no locations:\n"; in analyzeDebugLocations()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DSelectorLocationsKind.cpp1 //===--- SelectorLocationsKind.cpp - Kind of selector locations -*- C++ -*-===//
9 // Describes whether the identifier locations for a selector are "standard"
73 // Are selector locations in standard position with no space between args ? in hasStandardSelLocs()
83 // Are selector locations in standard position with space between args ? in hasStandardSelLocs()

12345678910>>...43