eb4585a61a49334d0c4e164d18cf60645d44a1fd
[oota-llvm.git] / lib / MC / MCDwarf.cpp
1 //===- lib/MC/MCDwarf.cpp - MCDwarf implementation ------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "llvm/ADT/FoldingSet.h"
11 #include "llvm/MC/MCAsmInfo.h"
12 #include "llvm/MC/MCDwarf.h"
13 #include "llvm/MC/MCAssembler.h"
14 #include "llvm/MC/MCStreamer.h"
15 #include "llvm/MC/MCSymbol.h"
16 #include "llvm/MC/MCExpr.h"
17 #include "llvm/MC/MCContext.h"
18 #include "llvm/MC/MCObjectWriter.h"
19 #include "llvm/ADT/SmallString.h"
20 #include "llvm/ADT/Twine.h"
21 #include "llvm/Support/Debug.h"
22 #include "llvm/Support/ErrorHandling.h"
23 #include "llvm/Support/raw_ostream.h"
24 #include "llvm/Target/TargetAsmBackend.h"
25 #include "llvm/Target/TargetAsmInfo.h"
26 using namespace llvm;
27
28 // Given a special op, return the address skip amount (in units of
29 // DWARF2_LINE_MIN_INSN_LENGTH.
30 #define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
31
32 // The maximum address skip amount that can be encoded with a special op.
33 #define MAX_SPECIAL_ADDR_DELTA          SPECIAL_ADDR(255)
34
35 // First special line opcode - leave room for the standard opcodes.
36 // Note: If you want to change this, you'll have to update the
37 // "standard_opcode_lengths" table that is emitted in DwarfFileTable::Emit().  
38 #define DWARF2_LINE_OPCODE_BASE         13
39
40 // Minimum line offset in a special line info. opcode.  This value
41 // was chosen to give a reasonable range of values.
42 #define DWARF2_LINE_BASE                -5
43
44 // Range of line offsets in a special line info. opcode.
45 # define DWARF2_LINE_RANGE              14
46
47 // Define the architecture-dependent minimum instruction length (in bytes).
48 // This value should be rather too small than too big.
49 # define DWARF2_LINE_MIN_INSN_LENGTH    1
50
51 // Note: when DWARF2_LINE_MIN_INSN_LENGTH == 1 which is the current setting,
52 // this routine is a nop and will be optimized away.
53 static inline uint64_t ScaleAddrDelta(uint64_t AddrDelta) {
54   if (DWARF2_LINE_MIN_INSN_LENGTH == 1)
55     return AddrDelta;
56   if (AddrDelta % DWARF2_LINE_MIN_INSN_LENGTH != 0) {
57     // TODO: report this error, but really only once.
58     ;
59   }
60   return AddrDelta / DWARF2_LINE_MIN_INSN_LENGTH;
61 }
62
63 //
64 // This is called when an instruction is assembled into the specified section
65 // and if there is information from the last .loc directive that has yet to have
66 // a line entry made for it is made.
67 //
68 void MCLineEntry::Make(MCStreamer *MCOS, const MCSection *Section) {
69   if (!MCOS->getContext().getDwarfLocSeen())
70     return;
71
72   // Create a symbol at in the current section for use in the line entry.
73   MCSymbol *LineSym = MCOS->getContext().CreateTempSymbol();
74   // Set the value of the symbol to use for the MCLineEntry.
75   MCOS->EmitLabel(LineSym);
76
77   // Get the current .loc info saved in the context.
78   const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
79
80   // Create a (local) line entry with the symbol and the current .loc info.
81   MCLineEntry LineEntry(LineSym, DwarfLoc);
82
83   // clear DwarfLocSeen saying the current .loc info is now used.
84   MCOS->getContext().ClearDwarfLocSeen();
85
86   // Get the MCLineSection for this section, if one does not exist for this
87   // section create it.
88   const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
89     MCOS->getContext().getMCLineSections();
90   MCLineSection *LineSection = MCLineSections.lookup(Section);
91   if (!LineSection) {
92     // Create a new MCLineSection.  This will be deleted after the dwarf line
93     // table is created using it by iterating through the MCLineSections
94     // DenseMap.
95     LineSection = new MCLineSection;
96     // Save a pointer to the new LineSection into the MCLineSections DenseMap.
97     MCOS->getContext().addMCLineSection(Section, LineSection);
98   }
99
100   // Add the line entry to this section's entries.
101   LineSection->addLineEntry(LineEntry);
102 }
103
104 //
105 // This helper routine returns an expression of End - Start + IntVal .
106 // 
107 static inline const MCExpr *MakeStartMinusEndExpr(const MCStreamer &MCOS,
108                                                   const MCSymbol &Start,
109                                                   const MCSymbol &End,
110                                                   int IntVal) {
111   MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
112   const MCExpr *Res =
113     MCSymbolRefExpr::Create(&End, Variant, MCOS.getContext());
114   const MCExpr *RHS =
115     MCSymbolRefExpr::Create(&Start, Variant, MCOS.getContext());
116   const MCExpr *Res1 =
117     MCBinaryExpr::Create(MCBinaryExpr::Sub, Res, RHS, MCOS.getContext());
118   const MCExpr *Res2 =
119     MCConstantExpr::Create(IntVal, MCOS.getContext());
120   const MCExpr *Res3 =
121     MCBinaryExpr::Create(MCBinaryExpr::Sub, Res1, Res2, MCOS.getContext());
122   return Res3;
123 }
124
125 //
126 // This emits the Dwarf line table for the specified section from the entries
127 // in the LineSection.
128 //
129 static inline void EmitDwarfLineTable(MCStreamer *MCOS,
130                                       const MCSection *Section,
131                                       const MCLineSection *LineSection) {
132   unsigned FileNum = 1;
133   unsigned LastLine = 1;
134   unsigned Column = 0;
135   unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
136   unsigned Isa = 0;
137   MCSymbol *LastLabel = NULL;
138
139   // Loop through each MCLineEntry and encode the dwarf line number table.
140   for (MCLineSection::const_iterator
141          it = LineSection->getMCLineEntries()->begin(),
142          ie = LineSection->getMCLineEntries()->end(); it != ie; ++it) {
143
144     if (FileNum != it->getFileNum()) {
145       FileNum = it->getFileNum();
146       MCOS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
147       MCOS->EmitULEB128IntValue(FileNum);
148     }
149     if (Column != it->getColumn()) {
150       Column = it->getColumn();
151       MCOS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
152       MCOS->EmitULEB128IntValue(Column);
153     }
154     if (Isa != it->getIsa()) {
155       Isa = it->getIsa();
156       MCOS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
157       MCOS->EmitULEB128IntValue(Isa);
158     }
159     if ((it->getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
160       Flags = it->getFlags();
161       MCOS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
162     }
163     if (it->getFlags() & DWARF2_FLAG_BASIC_BLOCK)
164       MCOS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
165     if (it->getFlags() & DWARF2_FLAG_PROLOGUE_END)
166       MCOS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
167     if (it->getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
168       MCOS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
169
170     int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
171     MCSymbol *Label = it->getLabel();
172
173     // At this point we want to emit/create the sequence to encode the delta in
174     // line numbers and the increment of the address from the previous Label
175     // and the current Label.
176     MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label);
177
178     LastLine = it->getLine();
179     LastLabel = Label;
180   }
181
182   // Emit a DW_LNE_end_sequence for the end of the section.
183   // Using the pointer Section create a temporary label at the end of the
184   // section and use that and the LastLabel to compute the address delta
185   // and use INT64_MAX as the line delta which is the signal that this is
186   // actually a DW_LNE_end_sequence.
187
188   // Switch to the section to be able to create a symbol at its end.
189   MCOS->SwitchSection(Section);
190
191   MCContext &context = MCOS->getContext();
192   // Create a symbol at the end of the section.
193   MCSymbol *SectionEnd = context.CreateTempSymbol();
194   // Set the value of the symbol, as we are at the end of the section.
195   MCOS->EmitLabel(SectionEnd);
196
197   // Switch back the the dwarf line section.
198   MCOS->SwitchSection(context.getTargetAsmInfo().getDwarfLineSection());
199
200   MCOS->EmitDwarfAdvanceLineAddr(INT64_MAX, LastLabel, SectionEnd);
201 }
202
203 //
204 // This emits the Dwarf file and the line tables.
205 //
206 void MCDwarfFileTable::Emit(MCStreamer *MCOS) {
207   MCContext &context = MCOS->getContext();
208   // Switch to the section where the table will be emitted into.
209   MCOS->SwitchSection(context.getTargetAsmInfo().getDwarfLineSection());
210
211   // Create a symbol at the beginning of this section.
212   MCSymbol *LineStartSym = context.CreateTempSymbol();
213   // Set the value of the symbol, as we are at the start of the section.
214   MCOS->EmitLabel(LineStartSym);
215
216   // Create a symbol for the end of the section (to be set when we get there).
217   MCSymbol *LineEndSym = context.CreateTempSymbol();
218
219   // The first 4 bytes is the total length of the information for this
220   // compilation unit (not including these 4 bytes for the length).
221   MCOS->EmitAbsValue(MakeStartMinusEndExpr(*MCOS, *LineStartSym, *LineEndSym,4),
222                      4);
223
224   // Next 2 bytes is the Version, which is Dwarf 2.
225   MCOS->EmitIntValue(2, 2);
226
227   // Create a symbol for the end of the prologue (to be set when we get there).
228   MCSymbol *ProEndSym = context.CreateTempSymbol(); // Lprologue_end
229
230   // Length of the prologue, is the next 4 bytes.  Which is the start of the
231   // section to the end of the prologue.  Not including the 4 bytes for the
232   // total length, the 2 bytes for the version, and these 4 bytes for the
233   // length of the prologue.
234   MCOS->EmitAbsValue(MakeStartMinusEndExpr(*MCOS, *LineStartSym, *ProEndSym,
235                                         (4 + 2 + 4)),
236                   4, 0);
237
238   // Parameters of the state machine, are next.
239   MCOS->EmitIntValue(DWARF2_LINE_MIN_INSN_LENGTH, 1);
240   MCOS->EmitIntValue(DWARF2_LINE_DEFAULT_IS_STMT, 1);
241   MCOS->EmitIntValue(DWARF2_LINE_BASE, 1);
242   MCOS->EmitIntValue(DWARF2_LINE_RANGE, 1);
243   MCOS->EmitIntValue(DWARF2_LINE_OPCODE_BASE, 1);
244
245   // Standard opcode lengths
246   MCOS->EmitIntValue(0, 1); // length of DW_LNS_copy
247   MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_pc
248   MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_line
249   MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_file
250   MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_column
251   MCOS->EmitIntValue(0, 1); // length of DW_LNS_negate_stmt
252   MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_basic_block
253   MCOS->EmitIntValue(0, 1); // length of DW_LNS_const_add_pc
254   MCOS->EmitIntValue(1, 1); // length of DW_LNS_fixed_advance_pc
255   MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_prologue_end
256   MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_epilogue_begin
257   MCOS->EmitIntValue(1, 1); // DW_LNS_set_isa
258
259   // Put out the directory and file tables.
260
261   // First the directory table.
262   const std::vector<StringRef> &MCDwarfDirs =
263     context.getMCDwarfDirs();
264   for (unsigned i = 0; i < MCDwarfDirs.size(); i++) {
265     MCOS->EmitBytes(MCDwarfDirs[i], 0); // the DirectoryName
266     MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
267   }
268   MCOS->EmitIntValue(0, 1); // Terminate the directory list
269
270   // Second the file table.
271   const std::vector<MCDwarfFile *> &MCDwarfFiles =
272     MCOS->getContext().getMCDwarfFiles();
273   for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
274     MCOS->EmitBytes(MCDwarfFiles[i]->getName(), 0); // FileName
275     MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
276     // the Directory num
277     MCOS->EmitULEB128IntValue(MCDwarfFiles[i]->getDirIndex());
278     MCOS->EmitIntValue(0, 1); // last modification timestamp (always 0)
279     MCOS->EmitIntValue(0, 1); // filesize (always 0)
280   }
281   MCOS->EmitIntValue(0, 1); // Terminate the file list
282
283   // This is the end of the prologue, so set the value of the symbol at the
284   // end of the prologue (that was used in a previous expression).
285   MCOS->EmitLabel(ProEndSym);
286
287   // Put out the line tables.
288   const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
289     MCOS->getContext().getMCLineSections();
290   const std::vector<const MCSection *> &MCLineSectionOrder =
291     MCOS->getContext().getMCLineSectionOrder();
292   for (std::vector<const MCSection*>::const_iterator it =
293         MCLineSectionOrder.begin(), ie = MCLineSectionOrder.end(); it != ie;
294        ++it) {
295     const MCSection *Sec = *it;
296     const MCLineSection *Line = MCLineSections.lookup(Sec);
297     EmitDwarfLineTable(MCOS, Sec, Line);
298
299     // Now delete the MCLineSections that were created in MCLineEntry::Make()
300     // and used to emit the line table.
301     delete Line;
302   }
303
304   if (MCOS->getContext().getAsmInfo().getLinkerRequiresNonEmptyDwarfLines()
305       && MCLineSectionOrder.begin() == MCLineSectionOrder.end()) {
306     // The darwin9 linker has a bug (see PR8715). For for 32-bit architectures
307     // it requires:  
308     // total_length >= prologue_length + 10
309     // We are 4 bytes short, since we have total_length = 51 and
310     // prologue_length = 45
311
312     // The regular end_sequence should be sufficient.
313     MCDwarfLineAddr::Emit(MCOS, INT64_MAX, 0);
314   }
315
316   // This is the end of the section, so set the value of the symbol at the end
317   // of this section (that was used in a previous expression).
318   MCOS->EmitLabel(LineEndSym);
319 }
320
321 /// Utility function to write the encoding to an object writer.
322 void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
323                             uint64_t AddrDelta) {
324   SmallString<256> Tmp;
325   raw_svector_ostream OS(Tmp);
326   MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
327   OW->WriteBytes(OS.str());
328 }
329
330 /// Utility function to emit the encoding to a streamer.
331 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
332                            uint64_t AddrDelta) {
333   SmallString<256> Tmp;
334   raw_svector_ostream OS(Tmp);
335   MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
336   MCOS->EmitBytes(OS.str(), /*AddrSpace=*/0);
337 }
338
339 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
340 void MCDwarfLineAddr::Encode(int64_t LineDelta, uint64_t AddrDelta,
341                              raw_ostream &OS) {
342   uint64_t Temp, Opcode;
343   bool NeedCopy = false;
344
345   // Scale the address delta by the minimum instruction length.
346   AddrDelta = ScaleAddrDelta(AddrDelta);
347
348   // A LineDelta of INT64_MAX is a signal that this is actually a
349   // DW_LNE_end_sequence. We cannot use special opcodes here, since we want the 
350   // end_sequence to emit the matrix entry.
351   if (LineDelta == INT64_MAX) {
352     if (AddrDelta == MAX_SPECIAL_ADDR_DELTA)
353       OS << char(dwarf::DW_LNS_const_add_pc);
354     else {
355       OS << char(dwarf::DW_LNS_advance_pc);
356       MCObjectWriter::EncodeULEB128(AddrDelta, OS);
357     }
358     OS << char(dwarf::DW_LNS_extended_op);
359     OS << char(1);
360     OS << char(dwarf::DW_LNE_end_sequence);
361     return;
362   }
363
364   // Bias the line delta by the base.
365   Temp = LineDelta - DWARF2_LINE_BASE;
366
367   // If the line increment is out of range of a special opcode, we must encode
368   // it with DW_LNS_advance_line.
369   if (Temp >= DWARF2_LINE_RANGE) {
370     OS << char(dwarf::DW_LNS_advance_line);
371     SmallString<32> Tmp;
372     raw_svector_ostream OSE(Tmp);
373     MCObjectWriter::EncodeSLEB128(LineDelta, OSE);
374     OS << OSE.str();
375
376     LineDelta = 0;
377     Temp = 0 - DWARF2_LINE_BASE;
378     NeedCopy = true;
379   }
380
381   // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
382   if (LineDelta == 0 && AddrDelta == 0) {
383     OS << char(dwarf::DW_LNS_copy);
384     return;
385   }
386
387   // Bias the opcode by the special opcode base.
388   Temp += DWARF2_LINE_OPCODE_BASE;
389
390   // Avoid overflow when addr_delta is large.
391   if (AddrDelta < 256 + MAX_SPECIAL_ADDR_DELTA) {
392     // Try using a special opcode.
393     Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
394     if (Opcode <= 255) {
395       OS << char(Opcode);
396       return;
397     }
398
399     // Try using DW_LNS_const_add_pc followed by special op.
400     Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
401     if (Opcode <= 255) {
402       OS << char(dwarf::DW_LNS_const_add_pc);
403       OS << char(Opcode);
404       return;
405     }
406   }
407
408   // Otherwise use DW_LNS_advance_pc.
409   OS << char(dwarf::DW_LNS_advance_pc);
410   SmallString<32> Tmp;
411   raw_svector_ostream OSE(Tmp);
412   MCObjectWriter::EncodeULEB128(AddrDelta, OSE);
413   OS << OSE.str();
414
415   if (NeedCopy)
416     OS << char(dwarf::DW_LNS_copy);
417   else
418     OS << char(Temp);
419 }
420
421 void MCDwarfFile::print(raw_ostream &OS) const {
422   OS << '"' << getName() << '"';
423 }
424
425 void MCDwarfFile::dump() const {
426   print(dbgs());
427 }
428
429 static int getDataAlignmentFactor(MCStreamer &streamer) {
430   MCContext &context = streamer.getContext();
431   const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
432   int size = asmInfo.getPointerSize();
433   if (asmInfo.getStackGrowthDirection() == TargetFrameLowering::StackGrowsUp)
434     return size;
435  else
436    return -size;
437 }
438
439 static unsigned getSizeForEncoding(MCStreamer &streamer,
440                                    unsigned symbolEncoding) {
441   MCContext &context = streamer.getContext();
442   const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
443   unsigned format = symbolEncoding & 0x0f;
444   switch (format) {
445   default:
446     assert(0 && "Unknown Encoding");
447   case dwarf::DW_EH_PE_absptr:
448   case dwarf::DW_EH_PE_signed:
449     return asmInfo.getPointerSize();
450   case dwarf::DW_EH_PE_udata2:
451   case dwarf::DW_EH_PE_sdata2:
452     return 2;
453   case dwarf::DW_EH_PE_udata4:
454   case dwarf::DW_EH_PE_sdata4:
455     return 4;
456   case dwarf::DW_EH_PE_udata8:
457   case dwarf::DW_EH_PE_sdata8:
458     return 8;
459   }
460 }
461
462 static void EmitSymbol(MCStreamer &streamer, const MCSymbol &symbol,
463                        unsigned symbolEncoding) {
464   MCContext &context = streamer.getContext();
465   const MCAsmInfo &asmInfo = context.getAsmInfo();
466   const MCExpr *v = asmInfo.getExprForFDESymbol(&symbol,
467                                                 symbolEncoding,
468                                                 streamer);
469   unsigned size = getSizeForEncoding(streamer, symbolEncoding);
470   streamer.EmitAbsValue(v, size);
471 }
472
473 static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
474                             unsigned symbolEncoding) {
475   MCContext &context = streamer.getContext();
476   const MCAsmInfo &asmInfo = context.getAsmInfo();
477   const MCExpr *v = asmInfo.getExprForPersonalitySymbol(&symbol,
478                                                         symbolEncoding,
479                                                         streamer);
480   unsigned size = getSizeForEncoding(streamer, symbolEncoding);
481   streamer.EmitValue(v, size);
482 }
483
484 static const MachineLocation TranslateMachineLocation(
485                                                   const TargetAsmInfo &AsmInfo,
486                                                   const MachineLocation &Loc) {
487   unsigned Reg = Loc.getReg() == MachineLocation::VirtualFP ?
488     MachineLocation::VirtualFP :
489     unsigned(AsmInfo.getDwarfRegNum(Loc.getReg(), true));
490   const MachineLocation &NewLoc = Loc.isReg() ?
491     MachineLocation(Reg) : MachineLocation(Reg, Loc.getOffset());
492   return NewLoc;
493 }
494
495 namespace {
496   class FrameEmitterImpl {
497     int CFAOffset;
498     int CIENum;
499     bool UsingCFI;
500     bool IsEH;
501     const MCSymbol *SectionStart;
502
503   public:
504     FrameEmitterImpl(bool usingCFI, bool isEH, const MCSymbol *sectionStart) :
505       CFAOffset(0), CIENum(0), UsingCFI(usingCFI), IsEH(isEH),
506       SectionStart(sectionStart) {
507     }
508
509     /// EmitCompactUnwind - Emit the unwind information in a compact way. If
510     /// we're successful, return 'true'. Otherwise, return 'false' and it will
511     /// emit the normal CIE and FDE.
512     bool EmitCompactUnwind(MCStreamer &streamer,
513                            const MCDwarfFrameInfo &frame);
514
515     const MCSymbol &EmitCIE(MCStreamer &streamer,
516                             const MCSymbol *personality,
517                             unsigned personalityEncoding,
518                             const MCSymbol *lsda,
519                             unsigned lsdaEncoding);
520     MCSymbol *EmitFDE(MCStreamer &streamer,
521                       const MCSymbol &cieStart,
522                       const MCDwarfFrameInfo &frame);
523     void EmitCFIInstructions(MCStreamer &streamer,
524                              const std::vector<MCCFIInstruction> &Instrs,
525                              MCSymbol *BaseLabel);
526     void EmitCFIInstruction(MCStreamer &Streamer,
527                             const MCCFIInstruction &Instr);
528   };
529
530 } // end anonymous namespace
531
532 static void EmitEncodingByte(MCStreamer &Streamer, unsigned Encoding,
533                              StringRef Prefix) {
534   if (Streamer.isVerboseAsm()) {
535     const char *EncStr = 0;
536     switch (Encoding) {
537     default: EncStr = "<unknown encoding>";
538     case dwarf::DW_EH_PE_absptr: EncStr = "absptr";
539     case dwarf::DW_EH_PE_omit:   EncStr = "omit";
540     case dwarf::DW_EH_PE_pcrel:  EncStr = "pcrel";
541     case dwarf::DW_EH_PE_udata4: EncStr = "udata4";
542     case dwarf::DW_EH_PE_udata8: EncStr = "udata8";
543     case dwarf::DW_EH_PE_sdata4: EncStr = "sdata4";
544     case dwarf::DW_EH_PE_sdata8: EncStr = "sdata8";
545     case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata4: EncStr = "pcrel udata4";
546     case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata4: EncStr = "pcrel sdata4";
547     case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata8: EncStr = "pcrel udata8";
548     case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata8: EncStr = "pcrel sdata8";
549     case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_udata4:
550       EncStr = "indirect pcrel udata4";
551     case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_sdata4:
552       EncStr = "indirect pcrel sdata4";
553     case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_udata8:
554       EncStr = "indirect pcrel udata8";
555     case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_sdata8:
556       EncStr = "indirect pcrel sdata8";
557     }
558
559     Streamer.AddComment(Twine(Prefix) + " = " + EncStr);
560   }
561
562   Streamer.EmitIntValue(Encoding, 1);
563 }
564
565 void FrameEmitterImpl::EmitCFIInstruction(MCStreamer &Streamer,
566                                           const MCCFIInstruction &Instr) {
567   int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
568   bool VerboseAsm = Streamer.isVerboseAsm();
569
570   switch (Instr.getOperation()) {
571   case MCCFIInstruction::Move:
572   case MCCFIInstruction::RelMove: {
573     const MachineLocation &Dst = Instr.getDestination();
574     const MachineLocation &Src = Instr.getSource();
575     const bool IsRelative = Instr.getOperation() == MCCFIInstruction::RelMove;
576
577     // If advancing cfa.
578     if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
579       if (Src.getReg() == MachineLocation::VirtualFP) {
580         if (VerboseAsm) Streamer.AddComment("DW_CFA_def_cfa_offset");
581         Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
582       } else {
583         if (VerboseAsm) Streamer.AddComment("DW_CFA_def_cfa");
584         Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
585         if (VerboseAsm) Streamer.AddComment(Twine("Reg ") +
586                                             Twine(Src.getReg()));
587         Streamer.EmitULEB128IntValue(Src.getReg());
588       }
589
590       if (IsRelative)
591         CFAOffset += Src.getOffset();
592       else
593         CFAOffset = -Src.getOffset();
594
595       if (VerboseAsm) Streamer.AddComment(Twine("Offset " + Twine(CFAOffset)));
596       Streamer.EmitULEB128IntValue(CFAOffset);
597       return;
598     }
599
600     if (Src.isReg() && Src.getReg() == MachineLocation::VirtualFP) {
601       assert(Dst.isReg() && "Machine move not supported yet.");
602       if (VerboseAsm) Streamer.AddComment("DW_CFA_def_cfa_register");
603       Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
604       if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Dst.getReg()));
605       Streamer.EmitULEB128IntValue(Dst.getReg());
606       return;
607     }
608
609     unsigned Reg = Src.getReg();
610     int Offset = Dst.getOffset();
611     if (IsRelative)
612       Offset -= CFAOffset;
613     Offset = Offset / dataAlignmentFactor;
614
615     if (Offset < 0) {
616       if (VerboseAsm) Streamer.AddComment("DW_CFA_offset_extended_sf");
617       Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
618       if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Reg));
619       Streamer.EmitULEB128IntValue(Reg);
620       if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
621       Streamer.EmitSLEB128IntValue(Offset);
622     } else if (Reg < 64) {
623       if (VerboseAsm) Streamer.AddComment("DW_CFA_offset");
624       Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
625       if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
626       Streamer.EmitULEB128IntValue(Offset);
627     } else {
628       if (VerboseAsm) Streamer.AddComment("DW_CFA_offset_extended");
629       Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
630       if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Reg));
631       Streamer.EmitULEB128IntValue(Reg);
632       if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
633       Streamer.EmitULEB128IntValue(Offset);
634     }
635     return;
636   }
637   case MCCFIInstruction::Remember:
638     if (VerboseAsm) Streamer.AddComment("DW_CFA_remember_state");
639     Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
640     return;
641   case MCCFIInstruction::Restore:
642     if (VerboseAsm) Streamer.AddComment("DW_CFA_restore_state");
643     Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
644     return;
645   case MCCFIInstruction::SameValue: {
646     unsigned Reg = Instr.getDestination().getReg();
647     if (VerboseAsm) Streamer.AddComment("DW_CFA_same_value");
648     Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
649     if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Reg));
650     Streamer.EmitULEB128IntValue(Reg);
651     return;
652   }
653   }
654   llvm_unreachable("Unhandled case in switch");
655 }
656
657 /// EmitFrameMoves - Emit frame instructions to describe the layout of the
658 /// frame.
659 void FrameEmitterImpl::EmitCFIInstructions(MCStreamer &streamer,
660                                     const std::vector<MCCFIInstruction> &Instrs,
661                                            MCSymbol *BaseLabel) {
662   for (unsigned i = 0, N = Instrs.size(); i < N; ++i) {
663     const MCCFIInstruction &Instr = Instrs[i];
664     MCSymbol *Label = Instr.getLabel();
665     // Throw out move if the label is invalid.
666     if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
667
668     // Advance row if new location.
669     if (BaseLabel && Label) {
670       MCSymbol *ThisSym = Label;
671       if (ThisSym != BaseLabel) {
672         streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
673         BaseLabel = ThisSym;
674       }
675     }
676
677     EmitCFIInstruction(streamer, Instr);
678   }
679 }
680
681 /// EmitCompactUnwind - Emit the unwind information in a compact way. If we're
682 /// successful, return 'true'. Otherwise, return 'false' and it will emit the
683 /// normal CIE and FDE.
684 bool FrameEmitterImpl::EmitCompactUnwind(MCStreamer &Streamer,
685                                          const MCDwarfFrameInfo &Frame) {
686 #if 1
687   return false;
688 #else
689   MCContext &Context = Streamer.getContext();
690   const TargetAsmInfo &TAI = Context.getTargetAsmInfo();
691   bool VerboseAsm = Streamer.isVerboseAsm();
692
693   // range-start range-length  compact-unwind-enc personality-func   lsda
694   //  _foo       LfooEnd-_foo  0x00000023          0                 0
695   //  _bar       LbarEnd-_bar  0x00000025         __gxx_personality  except_tab1
696   //
697   //   .section __LD,__compact_unwind,regular,debug
698   //
699   //   # compact unwind for _foo
700   //   .quad _foo
701   //   .set L1,LfooEnd-_foo
702   //   .long L1
703   //   .long 0x01010001
704   //   .quad 0
705   //   .quad 0
706   //
707   //   # compact unwind for _bar
708   //   .quad _bar
709   //   .set L2,LbarEnd-_bar
710   //   .long L2
711   //   .long 0x01020011
712   //   .quad __gxx_personality
713   //   .quad except_tab1
714
715   Streamer.SwitchSection(TAI.getCompactUnwindSection());
716
717   // Range Start
718   unsigned FDEEncoding = TAI.getFDEEncoding(UsingCFI);
719   unsigned Size = getSizeForEncoding(Streamer, FDEEncoding);
720   if (VerboseAsm) Streamer.AddComment("Range Start");
721   Streamer.EmitSymbolValue(Frame.Function, Size);
722
723   // Range Length
724   const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin,
725                                               *Frame.End, 0);
726   if (VerboseAsm) Streamer.AddComment("Range Length");
727   Streamer.EmitAbsValue(Range, 4);
728
729   // FIXME:
730   // Compact Encoding
731   const std::vector<MachineMove> &Moves = TAI.getInitialFrameState();
732   uint32_t Encoding = 0;
733   Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_udata4);
734   if (VerboseAsm) Streamer.AddComment("Compact Unwind Encoding");
735   Streamer.EmitIntValue(Encoding, Size);
736
737   // Personality Function
738   Size = getSizeForEncoding(Streamer, Frame.PersonalityEncoding);
739   if (VerboseAsm) Streamer.AddComment("Personality Function");
740   if (Frame.Personality)
741     Streamer.EmitSymbolValue(Frame.Personality, Size);
742   else
743     Streamer.EmitIntValue(0, Size); // No personality fn
744
745   // LSDA
746   Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding);
747   if (VerboseAsm) Streamer.AddComment("LSDA");
748   if (Frame.Lsda)
749     Streamer.EmitSymbolValue(Frame.Lsda, Size);
750   else
751     Streamer.EmitIntValue(0, Size); // No LSDA
752
753   return true;
754 #endif
755 }
756
757 const MCSymbol &FrameEmitterImpl::EmitCIE(MCStreamer &streamer,
758                                           const MCSymbol *personality,
759                                           unsigned personalityEncoding,
760                                           const MCSymbol *lsda,
761                                           unsigned lsdaEncoding) {
762   MCContext &context = streamer.getContext();
763   const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
764   bool verboseAsm = streamer.isVerboseAsm();
765
766   MCSymbol *sectionStart;
767   if (asmInfo.isFunctionEHFrameSymbolPrivate() || !IsEH)
768     sectionStart = context.CreateTempSymbol();
769   else
770     sectionStart = context.GetOrCreateSymbol(Twine("EH_frame") + Twine(CIENum));
771
772   streamer.EmitLabel(sectionStart);
773   CIENum++;
774
775   MCSymbol *sectionEnd = streamer.getContext().CreateTempSymbol();
776
777   // Length
778   const MCExpr *Length = MakeStartMinusEndExpr(streamer, *sectionStart,
779                                                *sectionEnd, 4);
780   if (verboseAsm) streamer.AddComment("CIE Length");
781   streamer.EmitAbsValue(Length, 4);
782
783   // CIE ID
784   unsigned CIE_ID = IsEH ? 0 : -1;
785   if (verboseAsm) streamer.AddComment("CIE ID Tag");
786   streamer.EmitIntValue(CIE_ID, 4);
787
788   // Version
789   if (verboseAsm) streamer.AddComment("DW_CIE_VERSION");
790   streamer.EmitIntValue(dwarf::DW_CIE_VERSION, 1);
791
792   // Augmentation String
793   SmallString<8> Augmentation;
794   if (IsEH) {
795     if (verboseAsm) streamer.AddComment("CIE Augmentation");
796     Augmentation += "z";
797     if (personality)
798       Augmentation += "P";
799     if (lsda)
800       Augmentation += "L";
801     Augmentation += "R";
802     streamer.EmitBytes(Augmentation.str(), 0);
803   }
804   streamer.EmitIntValue(0, 1);
805
806   // Code Alignment Factor
807   if (verboseAsm) streamer.AddComment("CIE Code Alignment Factor");
808   streamer.EmitULEB128IntValue(1);
809
810   // Data Alignment Factor
811   if (verboseAsm) streamer.AddComment("CIE Data Alignment Factor");
812   streamer.EmitSLEB128IntValue(getDataAlignmentFactor(streamer));
813
814   // Return Address Register
815   if (verboseAsm) streamer.AddComment("CIE Return Address Column");
816   streamer.EmitULEB128IntValue(asmInfo.getDwarfRARegNum(true));
817
818   // Augmentation Data Length (optional)
819
820   unsigned augmentationLength = 0;
821   if (IsEH) {
822     if (personality) {
823       // Personality Encoding
824       augmentationLength += 1;
825       // Personality
826       augmentationLength += getSizeForEncoding(streamer, personalityEncoding);
827     }
828     if (lsda)
829       augmentationLength += 1;
830     // Encoding of the FDE pointers
831     augmentationLength += 1;
832
833     if (verboseAsm) streamer.AddComment("Augmentation Size");
834     streamer.EmitULEB128IntValue(augmentationLength);
835
836     // Augmentation Data (optional)
837     if (personality) {
838       // Personality Encoding
839       EmitEncodingByte(streamer, personalityEncoding,
840                        "Personality Encoding");
841       // Personality
842       if (verboseAsm) streamer.AddComment("Personality");
843       EmitPersonality(streamer, *personality, personalityEncoding);
844     }
845
846     if (lsda)
847       EmitEncodingByte(streamer, lsdaEncoding, "LSDA Encoding");
848
849     // Encoding of the FDE pointers
850     EmitEncodingByte(streamer, asmInfo.getFDEEncoding(UsingCFI),
851                      "FDE Encoding");
852   }
853
854   // Initial Instructions
855
856   const std::vector<MachineMove> &Moves = asmInfo.getInitialFrameState();
857   std::vector<MCCFIInstruction> Instructions;
858
859   for (int i = 0, n = Moves.size(); i != n; ++i) {
860     MCSymbol *Label = Moves[i].getLabel();
861     const MachineLocation &Dst =
862       TranslateMachineLocation(asmInfo, Moves[i].getDestination());
863     const MachineLocation &Src =
864       TranslateMachineLocation(asmInfo, Moves[i].getSource());
865     MCCFIInstruction Inst(Label, Dst, Src);
866     Instructions.push_back(Inst);
867   }
868
869   EmitCFIInstructions(streamer, Instructions, NULL);
870
871   // Padding
872   streamer.EmitValueToAlignment(IsEH ? 4 : asmInfo.getPointerSize());
873
874   streamer.EmitLabel(sectionEnd);
875   return *sectionStart;
876 }
877
878 MCSymbol *FrameEmitterImpl::EmitFDE(MCStreamer &streamer,
879                                     const MCSymbol &cieStart,
880                                     const MCDwarfFrameInfo &frame) {
881   MCContext &context = streamer.getContext();
882   MCSymbol *fdeStart = context.CreateTempSymbol();
883   MCSymbol *fdeEnd = context.CreateTempSymbol();
884   const TargetAsmInfo &TAsmInfo = context.getTargetAsmInfo();
885
886   if (!TAsmInfo.isFunctionEHFrameSymbolPrivate() && IsEH) {
887     MCSymbol *EHSym = context.GetOrCreateSymbol(
888       frame.Function->getName() + Twine(".eh"));
889     streamer.EmitEHSymAttributes(frame.Function, EHSym);
890     streamer.EmitLabel(EHSym);
891   }
892
893   // Length
894   const MCExpr *Length = MakeStartMinusEndExpr(streamer, *fdeStart, *fdeEnd, 0);
895   streamer.EmitAbsValue(Length, 4);
896
897   streamer.EmitLabel(fdeStart);
898
899   // CIE Pointer
900   const MCAsmInfo &asmInfo = context.getAsmInfo();
901   if (IsEH) {
902     const MCExpr *offset = MakeStartMinusEndExpr(streamer, cieStart, *fdeStart,
903                                                  0);
904     streamer.EmitAbsValue(offset, 4);
905   } else if (!asmInfo.doesDwarfRequireRelocationForSectionOffset()) {
906     const MCExpr *offset = MakeStartMinusEndExpr(streamer, *SectionStart,
907                                                  cieStart, 0);
908     streamer.EmitAbsValue(offset, 4);
909   } else {
910     streamer.EmitSymbolValue(&cieStart, 4);
911   }
912   unsigned fdeEncoding = TAsmInfo.getFDEEncoding(UsingCFI);
913   unsigned size = getSizeForEncoding(streamer, fdeEncoding);
914
915   // PC Begin
916   unsigned PCBeginEncoding = IsEH ? fdeEncoding :
917     (unsigned)dwarf::DW_EH_PE_absptr;
918   unsigned PCBeginSize = getSizeForEncoding(streamer, PCBeginEncoding);
919   EmitSymbol(streamer, *frame.Begin, PCBeginEncoding);
920
921   // PC Range
922   const MCExpr *Range = MakeStartMinusEndExpr(streamer, *frame.Begin,
923                                               *frame.End, 0);
924   streamer.EmitAbsValue(Range, size);
925
926   if (IsEH) {
927     // Augmentation Data Length
928     unsigned augmentationLength = 0;
929
930     if (frame.Lsda)
931       augmentationLength += getSizeForEncoding(streamer, frame.LsdaEncoding);
932
933     streamer.EmitULEB128IntValue(augmentationLength);
934
935     // Augmentation Data
936     if (frame.Lsda)
937       EmitSymbol(streamer, *frame.Lsda, frame.LsdaEncoding);
938   }
939
940   // Call Frame Instructions
941
942   EmitCFIInstructions(streamer, frame.Instructions, frame.Begin);
943
944   // Padding
945   streamer.EmitValueToAlignment(PCBeginSize);
946
947   return fdeEnd;
948 }
949
950 namespace {
951   struct CIEKey {
952     static const CIEKey getEmptyKey() { return CIEKey(0, 0, -1); }
953     static const CIEKey getTombstoneKey() { return CIEKey(0, -1, 0); }
954
955     CIEKey(const MCSymbol* Personality_, unsigned PersonalityEncoding_,
956            unsigned LsdaEncoding_) : Personality(Personality_),
957                                      PersonalityEncoding(PersonalityEncoding_),
958                                      LsdaEncoding(LsdaEncoding_) {
959     }
960     const MCSymbol* Personality;
961     unsigned PersonalityEncoding;
962     unsigned LsdaEncoding;
963   };
964 }
965
966 namespace llvm {
967   template <>
968   struct DenseMapInfo<CIEKey> {
969     static CIEKey getEmptyKey() {
970       return CIEKey::getEmptyKey();
971     }
972     static CIEKey getTombstoneKey() {
973       return CIEKey::getTombstoneKey();
974     }
975     static unsigned getHashValue(const CIEKey &Key) {
976       FoldingSetNodeID ID;
977       ID.AddPointer(Key.Personality);
978       ID.AddInteger(Key.PersonalityEncoding);
979       ID.AddInteger(Key.LsdaEncoding);
980       return ID.ComputeHash();
981     }
982     static bool isEqual(const CIEKey &LHS,
983                         const CIEKey &RHS) {
984       return LHS.Personality == RHS.Personality &&
985         LHS.PersonalityEncoding == RHS.PersonalityEncoding &&
986         LHS.LsdaEncoding == RHS.LsdaEncoding;
987     }
988   };
989 }
990
991 void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
992                                bool UsingCFI,
993                                bool IsEH) {
994   MCContext &Context = Streamer.getContext();
995   const TargetAsmInfo &AsmInfo = Context.getTargetAsmInfo();
996   const MCSection &Section = IsEH ? *AsmInfo.getEHFrameSection() :
997                                     *AsmInfo.getDwarfFrameSection();
998   Streamer.SwitchSection(&Section);
999   MCSymbol *SectionStart = Context.CreateTempSymbol();
1000   Streamer.EmitLabel(SectionStart);
1001
1002   MCSymbol *FDEEnd = NULL;
1003   DenseMap<CIEKey, const MCSymbol*> CIEStarts;
1004   FrameEmitterImpl Emitter(UsingCFI, IsEH, SectionStart);
1005
1006   const MCSymbol *DummyDebugKey = NULL;
1007   for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
1008     const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
1009     if (IsEH && AsmInfo.getCompactUnwindSection() &&
1010         Emitter.EmitCompactUnwind(Streamer, Frame))
1011       continue;
1012
1013     CIEKey Key(Frame.Personality, Frame.PersonalityEncoding,
1014                Frame.LsdaEncoding);
1015     const MCSymbol *&CIEStart = IsEH ? CIEStarts[Key] : DummyDebugKey;
1016     if (!CIEStart)
1017       CIEStart = &Emitter.EmitCIE(Streamer, Frame.Personality,
1018                                   Frame.PersonalityEncoding, Frame.Lsda,
1019                                   Frame.LsdaEncoding);
1020
1021     FDEEnd = Emitter.EmitFDE(Streamer, *CIEStart, Frame);
1022
1023     if (i != n - 1)
1024       Streamer.EmitLabel(FDEEnd);
1025   }
1026
1027   Streamer.EmitValueToAlignment(AsmInfo.getPointerSize());
1028   if (FDEEnd)
1029     Streamer.EmitLabel(FDEEnd);
1030 }
1031
1032 void MCDwarfFrameEmitter::EmitAdvanceLoc(MCStreamer &Streamer,
1033                                          uint64_t AddrDelta) {
1034   SmallString<256> Tmp;
1035   raw_svector_ostream OS(Tmp);
1036   MCDwarfFrameEmitter::EncodeAdvanceLoc(AddrDelta, OS);
1037   Streamer.EmitBytes(OS.str(), /*AddrSpace=*/0);
1038 }
1039
1040 void MCDwarfFrameEmitter::EncodeAdvanceLoc(uint64_t AddrDelta,
1041                                            raw_ostream &OS) {
1042   // FIXME: Assumes the code alignment factor is 1.
1043   if (AddrDelta == 0) {
1044   } else if (isUIntN(6, AddrDelta)) {
1045     uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
1046     OS << Opcode;
1047   } else if (isUInt<8>(AddrDelta)) {
1048     OS << uint8_t(dwarf::DW_CFA_advance_loc1);
1049     OS << uint8_t(AddrDelta);
1050   } else if (isUInt<16>(AddrDelta)) {
1051     // FIXME: check what is the correct behavior on a big endian machine.
1052     OS << uint8_t(dwarf::DW_CFA_advance_loc2);
1053     OS << uint8_t( AddrDelta       & 0xff);
1054     OS << uint8_t((AddrDelta >> 8) & 0xff);
1055   } else {
1056     // FIXME: check what is the correct behavior on a big endian machine.
1057     assert(isUInt<32>(AddrDelta));
1058     OS << uint8_t(dwarf::DW_CFA_advance_loc4);
1059     OS << uint8_t( AddrDelta        & 0xff);
1060     OS << uint8_t((AddrDelta >> 8)  & 0xff);
1061     OS << uint8_t((AddrDelta >> 16) & 0xff);
1062     OS << uint8_t((AddrDelta >> 24) & 0xff);
1063
1064   }
1065 }