OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Locs
(Results
1 - 19
of
19
) sorted by relevancy
/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/CodeGen/AsmPrinter/
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))
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
...]
/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/lib/Sema/
SemaExprCXX.cpp
1465
SourceRange
Locs
= ListInitialization
1469
TInfo,
Locs
.getBegin(), Exprs,
1470
Locs
.getEnd());
1529
SourceRange
Locs
= ListInitialization
1535
Locs
.getBegin(),
Locs
.getEnd());
/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
),
/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/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
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp
2120
SmallVector<llvm::Metadata *, 8>
Locs
;
2122
Locs
.push_back(llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
2137
Locs
.push_back(llvm::ConstantAsMetadata::get(
2142
return llvm::MDNode::get(CGF.getLLVMContext(),
Locs
);
/src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h
1491
SmallVector<SMLoc, 4>
Locs
;
1516
explicit Record(Init *N, ArrayRef<SMLoc>
locs
, RecordKeeper &records,
1518
: Name(N),
Locs
(
locs
.begin(),
locs
.end()), TrackedRecords(records),
1523
explicit Record(StringRef N, ArrayRef<SMLoc>
locs
, RecordKeeper &records,
1525
: Record(StringInit::get(N),
locs
, records, false, Class) {}
1531
: Name(O.Name),
Locs
(O.
Locs
), TemplateArgs(O.TemplateArgs),
1552
ArrayRef<SMLoc> getLoc() const { return
Locs
; }
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveDebugVariables.cpp
416
SmallVector<unsigned>
Locs
;
418
Locs
.push_back(getLocationNo(Op));
419
DbgVariableValue DbgValue(
Locs
, IsIndirect, IsList, Expr);
769
// DBG_VALUE_LIST variable, expr,
locs
...
/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/clang/lib/Serialization/
ASTWriterStmt.cpp
1430
SourceLocation *
Locs
= E->getStoredSelLocs();
1432
Record.AddSourceLocation(
Locs
[i]);
ASTReaderStmt.cpp
1556
SourceLocation *
Locs
= E->getStoredSelLocs();
1558
Locs
[I] = readSourceLocation();
/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/tools/libclang/
CIndex.cpp
4838
ArrayRef<SourceLocation>
Locs
= ImportD->getIdentifierLocs();
4839
if (!
Locs
.empty())
4841
Ctx, SourceRange(
Locs
.front(),
Locs
.back()));
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp
1146
SmallVector<SDDbgOperand, 2>
Locs
;
1149
Locs
.push_back(SDDbgOperand::fromConst(Undef));
1152
DI->getVariable(), DI->getExpression(),
Locs
, {},
Completed in 115 milliseconds
Indexes created Sun Jun 07 00:24:08 UTC 2026