OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LineDelta
(Results
1 - 8
of
8
) 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/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
; }
/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/MC/
MCCodeView.cpp
563
int
LineDelta
= CurSourceLoc.Line - LastSourceLoc.Line;
564
unsigned EncodedLineDelta = encodeSignedNumber(
LineDelta
);
576
if (
LineDelta
!= 0) {
MCAssembler.cpp
1109
int64_t
LineDelta
;
1110
LineDelta
= DF.getLineDelta();
1117
MCDwarfLineAddr::Encode(Context, getDWARFLinetableParams(),
LineDelta
,
1124
MCDwarfLineAddr::fixedEncode(Context,
LineDelta
, AddrDelta, OSE);
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
...]
/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 20 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026