OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LineDelta
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
Line.cpp
16
uint32_t
LineDelta
= EndLine - StartLine;
17
LineData |= (
LineDelta
<< EndLineDeltaShift) & EndLineDeltaMask;
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
LineTable.cpp
35
int64_t
LineDelta
, uint64_t AddrDelta,
37
if (
LineDelta
< MinLineDelta)
39
if (
LineDelta
> MaxLineDelta)
42
int64_t AdjustedOp = ((
LineDelta
- MinLineDelta) + AddrDelta * LineRange);
108
int64_t
LineDelta
= MinDelta + (AdjustedOp % LineRange);
110
Row.Line +=
LineDelta
;
143
int64_t
LineDelta
= (int64_t)line_entry.Line - PrevLine;
145
auto Pos = std::lower_bound(DeltaInfos.begin(), End,
LineDelta
);
146
if (Pos != End && Pos->Delta ==
LineDelta
)
149
DeltaInfos.insert(Pos, DeltaInfo(
LineDelta
, 1))
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCDwarf.cpp
178
int64_t
LineDelta
= static_cast<int64_t>(LineEntry.getLine()) - LastLine;
221
MCOS->emitDwarfAdvanceLineAddr(
LineDelta
, LastLabel, Label,
640
int64_t
LineDelta
, uint64_t AddrDelta) {
644
MCDwarfLineAddr::Encode(Context, Params,
LineDelta
, AddrDelta, OS);
654
/// Utility function to encode a Dwarf pair of
LineDelta
and AddrDeltas.
656
int64_t
LineDelta
, uint64_t AddrDelta,
667
// A
LineDelta
of INT64_MAX is a signal that this is actually a
670
if (
LineDelta
== INT64_MAX) {
684
Temp =
LineDelta
- Params.DWARF2LineBase;
691
encodeSLEB128(
LineDelta
, OS)
[
all
...]
MCObjectStreamer.cpp
479
int64_t
LineDelta
, const MCSymbol *Label,
487
// emit the sequence for the
LineDelta
(from 1) and a zero address delta.
488
MCDwarfLineAddr::Emit(&OS, Params,
LineDelta
, 0);
491
void MCObjectStreamer::emitDwarfAdvanceLineAddr(int64_t
LineDelta
,
496
emitDwarfSetLineAddr(*this, Assembler->getDWARFLinetableParams(),
LineDelta
,
503
MCDwarfLineAddr::Emit(this, Assembler->getDWARFLinetableParams(),
LineDelta
,
507
insert(new MCDwarfLineAddrFragment(
LineDelta
, *AddrDelta));
MCAssembler.cpp
1109
int64_t
LineDelta
;
1110
LineDelta
= DF.getLineDelta();
1117
MCDwarfLineAddr::Encode(Context, getDWARFLinetableParams(),
LineDelta
,
1124
MCDwarfLineAddr::fixedEncode(Context,
LineDelta
, AddrDelta, OSE);
MCCodeView.cpp
563
int
LineDelta
= CurSourceLoc.Line - LastSourceLoc.Line;
564
unsigned EncodedLineDelta = encodeSignedNumber(
LineDelta
);
576
if (
LineDelta
!= 0) {
MCAsmStreamer.cpp
392
void emitDwarfAdvanceLineAddr(int64_t
LineDelta
, const MCSymbol *LastLabel,
2388
void MCAsmStreamer::emitDwarfAdvanceLineAddr(int64_t
LineDelta
,
2403
// Emit the sequence for the
LineDelta
(from 1) and a zero address delta.
2405
MCDwarfLineAddr::Emit(this, MCDwarfLineTableParams(),
LineDelta
, 0);
2411
if (
LineDelta
== INT64_MAX) {
2420
AddComment("Advance line " + Twine(
LineDelta
));
2422
emitSLEB128IntValue(
LineDelta
);
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCFragment.h
447
int64_t
LineDelta
;
454
MCDwarfLineAddrFragment(int64_t
LineDelta
, const MCExpr &AddrDelta,
457
LineDelta
(
LineDelta
), AddrDelta(&AddrDelta) {}
459
int64_t getLineDelta() const { return
LineDelta
; }
MCDwarf.h
386
/// Utility function to encode a Dwarf pair of
LineDelta
and AddrDeltas.
388
int64_t
LineDelta
, uint64_t AddrDelta, raw_ostream &OS);
390
/// Utility function to encode a Dwarf pair of
LineDelta
and AddrDeltas using
393
int64_t
LineDelta
,
399
int64_t
LineDelta
, uint64_t AddrDelta);
MCObjectStreamer.h
148
void emitDwarfAdvanceLineAddr(int64_t
LineDelta
, const MCSymbol *LastLabel,
MCStreamer.h
1103
virtual void emitDwarfAdvanceLineAddr(int64_t
LineDelta
,
/src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp
596
int64_t
LineDelta
= int64_t(Row.Line) - LastLine;
598
MCDwarfLineAddr::Encode(*MC, Params,
LineDelta
, AddressDelta, EncodingOS);
606
if (
LineDelta
) {
608
MS->emitSLEB128IntValue(
LineDelta
);
609
LineSectionSize += 1 + getSLEB128Size(
LineDelta
);
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp
1017
int64_t
LineDelta
= TableData.getSLEB128(Cursor);
1019
State.Row.Line +=
LineDelta
;
Completed in 38 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026