@@ -80,7 +80,7 @@ class AddressesMap {
80
80
CompileUnit::DIEInfo &Info) = 0;
81
81
82
82
// / Apply the valid relocations to the buffer \p Data, taking into
83
- // / account that Data is at \p BaseOffset in the debug_info section.
83
+ // / account that Data is at \p BaseOffset in the . debug_info section.
84
84
// /
85
85
// / \returns true whether any reloc has been applied.
86
86
virtual bool applyValidRelocs (MutableArrayRef<char > Data, uint64_t BaseOffset,
@@ -109,7 +109,7 @@ class DwarfEmitter {
109
109
// / Emit section named SecName with data SecData.
110
110
virtual void emitSectionContents (StringRef SecData, StringRef SecName) = 0;
111
111
112
- // / Emit the abbreviation table \p Abbrevs to the debug_abbrev section.
112
+ // / Emit the abbreviation table \p Abbrevs to the . debug_abbrev section.
113
113
virtual void
114
114
emitAbbrevs (const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
115
115
unsigned DwarfVersion) = 0 ;
@@ -137,25 +137,25 @@ class DwarfEmitter {
137
137
virtual void
138
138
emitAppleTypes (AccelTable<AppleAccelTableStaticTypeData> &Table) = 0 ;
139
139
140
- // / Emit debug_ranges for \p FuncRange by translating the
140
+ // / Emit . debug_ranges for \p FuncRange by translating the
141
141
// / original \p Entries.
142
142
virtual void emitRangesEntries (
143
143
int64_t UnitPcOffset, uint64_t OrigLowPc,
144
144
const FunctionIntervals::const_iterator &FuncRange,
145
145
const std::vector<DWARFDebugRangeList::RangeListEntry> &Entries,
146
146
unsigned AddressSize) = 0;
147
147
148
- // / Emit debug_aranges entries for \p Unit and if \p DoRangesSection is true,
149
- // / also emit the debug_ranges entries for the DW_TAG_compile_unit's
148
+ // / Emit . debug_aranges entries for \p Unit and if \p DoRangesSection is true,
149
+ // / also emit the . debug_ranges entries for the DW_TAG_compile_unit's
150
150
// / DW_AT_ranges attribute.
151
151
virtual void emitUnitRangesEntries (CompileUnit &Unit,
152
152
bool DoRangesSection) = 0;
153
153
154
- // / Copy the debug_line over to the updated binary while unobfuscating the
154
+ // / Copy the . debug_line over to the updated binary while unobfuscating the
155
155
// / file names and directories.
156
156
virtual void translateLineTable (DataExtractor LineData, uint64_t Offset) = 0;
157
157
158
- // / Emit the line table described in \p Rows into the debug_line section.
158
+ // / Emit the line table described in \p Rows into the . debug_line section.
159
159
virtual void emitLineTableForUnit (MCDwarfLineTableParams Params,
160
160
StringRef PrologueBytes,
161
161
unsigned MinInstLength,
@@ -175,7 +175,7 @@ class DwarfEmitter {
175
175
virtual void emitFDE (uint32_t CIEOffset, uint32_t AddreSize, uint32_t Address,
176
176
StringRef Bytes) = 0;
177
177
178
- // / Emit the debug_loc contribution for \p Unit by copying the entries from
178
+ // / Emit the . debug_loc contribution for \p Unit by copying the entries from
179
179
// / \p Dwarf and offsetting them. Update the location attributes to point to
180
180
// / the new entries.
181
181
virtual void emitLocationsForUnit (
@@ -184,7 +184,7 @@ class DwarfEmitter {
184
184
ProcessExpr) = 0;
185
185
186
186
// / Emit the compilation unit header for \p Unit in the
187
- // / debug_info section.
187
+ // / . debug_info section.
188
188
// /
189
189
// / As a side effect, this also switches the current Dwarf version
190
190
// / of the MC layer to the one of U.getOrigUnit().
@@ -695,7 +695,7 @@ class DWARFLinker {
695
695
// / Assign an abbreviation number to \p Abbrev
696
696
void assignAbbrev (DIEAbbrev &Abbrev);
697
697
698
- // / Compute and emit debug_ranges section for \p Unit, and
698
+ // / Compute and emit . debug_ranges section for \p Unit, and
699
699
// / patch the attributes referencing it.
700
700
void patchRangesForUnit (const CompileUnit &Unit, DWARFContext &Dwarf,
701
701
const DWARFFile &File) const ;
@@ -706,7 +706,7 @@ class DWARFLinker {
706
706
707
707
// / Extract the line tables from the original dwarf, extract the relevant
708
708
// / parts according to the linked function ranges and emit the result in the
709
- // / debug_line section.
709
+ // / . debug_line section.
710
710
void patchLineTableForUnit (CompileUnit &Unit, DWARFContext &OrigDwarf,
711
711
const DWARFFile &File);
712
712
@@ -753,7 +753,7 @@ class DWARFLinker {
753
753
StringMap<uint32_t > EmittedCIEs;
754
754
755
755
// / Offset of the last CIE that has been emitted in the output
756
- // / debug_frame section.
756
+ // / . debug_frame section.
757
757
uint32_t LastCIEOffset = 0 ;
758
758
759
759
// / Apple accelerator tables.
0 commit comments