Remove "JumpTableDataSection" from TAI, instead, have AsmPrinter
[oota-llvm.git] / include / llvm / Target / TargetAsmInfo.h
1 //===-- llvm/Target/TargetAsmInfo.h - Asm info ------------------*- C++ -*-===//
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 // This file contains a class to be used as the basis for target specific
11 // asm writers.  This class primarily takes care of global printing constants,
12 // which are used in very similar ways across all targets.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_TARGET_ASM_INFO_H
17 #define LLVM_TARGET_ASM_INFO_H
18
19 #include "llvm/Support/DataTypes.h"
20 #include <cassert>
21 #include <string>
22
23 namespace llvm {
24   template <typename T> class SmallVectorImpl;
25   class TargetMachine;
26   
27   /// TargetAsmInfo - This class is intended to be used as a base class for asm
28   /// properties and features specific to the target.
29   class TargetAsmInfo {
30   protected:
31     /// TM - The current TargetMachine.
32     const TargetMachine &TM;
33
34     //===------------------------------------------------------------------===//
35     // Properties to be set by the target writer, used to configure asm printer.
36     //
37
38     /// ZeroFillDirective - Directive for emitting a global to the ZeroFill
39     /// section on this target.  Null if this target doesn't support zerofill.
40     const char *ZeroFillDirective;        // Default is null.
41
42     /// NonexecutableStackDirective - Directive for declaring to the
43     /// linker and beyond that the emitted code does not require stack
44     /// memory to be executable.
45     const char *NonexecutableStackDirective; // Default is null.
46
47     /// NeedsSet - True if target asm treats expressions in data directives
48     /// as linktime-relocatable.  For assembly-time computation, we need to
49     /// use a .set.  Thus:
50     /// .set w, x-y
51     /// .long w
52     /// is computed at assembly time, while
53     /// .long x-y
54     /// is relocated if the relative locations of x and y change at linktime.
55     /// We want both these things in different places.
56     bool NeedsSet;                        // Defaults to false.
57     
58     /// MaxInstLength - This is the maximum possible length of an instruction,
59     /// which is needed to compute the size of an inline asm.
60     unsigned MaxInstLength;               // Defaults to 4.
61     
62     /// PCSymbol - The symbol used to represent the current PC.  Used in PC
63     /// relative expressions.
64     const char *PCSymbol;                 // Defaults to "$".
65
66     /// SeparatorChar - This character, if specified, is used to separate
67     /// instructions from each other when on the same line.  This is used to
68     /// measure inline asm instructions.
69     char SeparatorChar;                   // Defaults to ';'
70
71     /// CommentColumn - This indicates the comment num (zero-based) at
72     /// which asm comments should be printed.
73     unsigned CommentColumn;               // Defaults to 60
74
75     /// CommentString - This indicates the comment character used by the
76     /// assembler.
77     const char *CommentString;            // Defaults to "#"
78
79     /// FirstOperandColumn - The output column where the first operand
80     /// should be printed
81     unsigned FirstOperandColumn;          // Defaults to 0 (ignored)
82
83     /// MaxOperandLength - The maximum length of any printed asm
84     /// operand
85     unsigned MaxOperandLength;            // Defaults to 0 (ignored)
86
87     /// GlobalPrefix - If this is set to a non-empty string, it is prepended
88     /// onto all global symbols.  This is often used for "_" or ".".
89     const char *GlobalPrefix;             // Defaults to ""
90
91     /// PrivateGlobalPrefix - This prefix is used for globals like constant
92     /// pool entries that are completely private to the .s file and should not
93     /// have names in the .o file.  This is often "." or "L".
94     const char *PrivateGlobalPrefix;      // Defaults to "."
95     
96     /// LinkerPrivateGlobalPrefix - This prefix is used for symbols that should
97     /// be passed through the assembler but be removed by the linker.  This
98     /// is "l" on Darwin, currently used for some ObjC metadata.
99     const char *LinkerPrivateGlobalPrefix;      // Defaults to ""
100     
101     /// JumpTableSpecialLabelPrefix - If not null, a extra (dead) label is
102     /// emitted before jump tables with the specified prefix.
103     const char *JumpTableSpecialLabelPrefix;  // Default to null.
104     
105     /// GlobalVarAddrPrefix/Suffix - If these are nonempty, these strings
106     /// will enclose any GlobalVariable (that isn't a function)
107     ///
108     const char *GlobalVarAddrPrefix;      // Defaults to ""
109     const char *GlobalVarAddrSuffix;      // Defaults to ""
110
111     /// FunctionAddrPrefix/Suffix - If these are nonempty, these strings
112     /// will enclose any GlobalVariable that points to a function.
113     ///
114     const char *FunctionAddrPrefix;       // Defaults to ""
115     const char *FunctionAddrSuffix;       // Defaults to ""
116
117     /// PersonalityPrefix/Suffix - If these are nonempty, these strings will
118     /// enclose any personality function in the common frame section.
119     /// 
120     const char *PersonalityPrefix;        // Defaults to ""
121     const char *PersonalitySuffix;        // Defaults to ""
122
123     /// NeedsIndirectEncoding - If set, we need to set the indirect encoding bit
124     /// for EH in Dwarf.
125     /// 
126     bool NeedsIndirectEncoding;           // Defaults to false
127
128     /// InlineAsmStart/End - If these are nonempty, they contain a directive to
129     /// emit before and after an inline assembly statement.
130     const char *InlineAsmStart;           // Defaults to "#APP\n"
131     const char *InlineAsmEnd;             // Defaults to "#NO_APP\n"
132
133     /// AssemblerDialect - Which dialect of an assembler variant to use.
134     unsigned AssemblerDialect;            // Defaults to 0
135
136     /// AllowQuotesInName - This is true if the assembler allows for complex
137     /// symbol names to be surrounded in quotes.  This defaults to false.
138     bool AllowQuotesInName;
139     
140     //===--- Data Emission Directives -------------------------------------===//
141
142     /// ZeroDirective - this should be set to the directive used to get some
143     /// number of zero bytes emitted to the current section.  Common cases are
144     /// "\t.zero\t" and "\t.space\t".  If this is set to null, the
145     /// Data*bitsDirective's will be used to emit zero bytes.
146     const char *ZeroDirective;            // Defaults to "\t.zero\t"
147     const char *ZeroDirectiveSuffix;      // Defaults to ""
148
149     /// AsciiDirective - This directive allows emission of an ascii string with
150     /// the standard C escape characters embedded into it.
151     const char *AsciiDirective;           // Defaults to "\t.ascii\t"
152     
153     /// AscizDirective - If not null, this allows for special handling of
154     /// zero terminated strings on this target.  This is commonly supported as
155     /// ".asciz".  If a target doesn't support this, it can be set to null.
156     const char *AscizDirective;           // Defaults to "\t.asciz\t"
157
158     /// DataDirectives - These directives are used to output some unit of
159     /// integer data to the current section.  If a data directive is set to
160     /// null, smaller data directives will be used to emit the large sizes.
161     const char *Data8bitsDirective;       // Defaults to "\t.byte\t"
162     const char *Data16bitsDirective;      // Defaults to "\t.short\t"
163     const char *Data32bitsDirective;      // Defaults to "\t.long\t"
164     const char *Data64bitsDirective;      // Defaults to "\t.quad\t"
165
166     /// getDataASDirective - Return the directive that should be used to emit
167     /// data of the specified size to the specified numeric address space.
168     virtual const char *getDataASDirective(unsigned Size, unsigned AS) const {
169       assert(AS != 0 && "Don't know the directives for default addr space");
170       return NULL;
171     }
172
173     //===--- Alignment Information ----------------------------------------===//
174
175     /// AlignDirective - The directive used to emit round up to an alignment
176     /// boundary.
177     ///
178     const char *AlignDirective;           // Defaults to "\t.align\t"
179
180     /// AlignmentIsInBytes - If this is true (the default) then the asmprinter
181     /// emits ".align N" directives, where N is the number of bytes to align to.
182     /// Otherwise, it emits ".align log2(N)", e.g. 3 to align to an 8 byte
183     /// boundary.
184     bool AlignmentIsInBytes;              // Defaults to true
185
186     /// TextAlignFillValue - If non-zero, this is used to fill the executable
187     /// space created as the result of a alignment directive.
188     unsigned TextAlignFillValue;
189
190     //===--- Section Switching Directives ---------------------------------===//
191     
192     /// SwitchToSectionDirective - This is the directive used when we want to
193     /// emit a global to an arbitrary section.  The section name is emited after
194     /// this.
195     const char *SwitchToSectionDirective; // Defaults to "\t.section\t"
196     
197     /// TextSectionStartSuffix - This is printed after each start of section
198     /// directive for text sections.
199     const char *TextSectionStartSuffix;   // Defaults to "".
200
201     /// DataSectionStartSuffix - This is printed after each start of section
202     /// directive for data sections.
203     const char *DataSectionStartSuffix;   // Defaults to "".
204     
205     /// SectionEndDirectiveSuffix - If non-null, the asm printer will close each
206     /// section with the section name and this suffix printed.
207     const char *SectionEndDirectiveSuffix;// Defaults to null.
208     
209     /// JumpTableDirective - if non-null, the directive to emit before a jump
210     /// table.
211     const char *JumpTableDirective;
212
213     /// StaticCtorsSection - This is the directive that is emitted to switch to
214     /// a section to emit the static constructor list.
215     /// Defaults to "\t.section .ctors,\"aw\",@progbits".
216     const char *StaticCtorsSection;
217
218     /// StaticDtorsSection - This is the directive that is emitted to switch to
219     /// a section to emit the static destructor list.
220     /// Defaults to "\t.section .dtors,\"aw\",@progbits".
221     const char *StaticDtorsSection;
222
223     //===--- Global Variable Emission Directives --------------------------===//
224     
225     /// GlobalDirective - This is the directive used to declare a global entity.
226     ///
227     const char *GlobalDirective;          // Defaults to NULL.
228
229     /// ExternDirective - This is the directive used to declare external 
230     /// globals.
231     ///
232     const char *ExternDirective;          // Defaults to NULL.
233     
234     /// SetDirective - This is the name of a directive that can be used to tell
235     /// the assembler to set the value of a variable to some expression.
236     const char *SetDirective;             // Defaults to null.
237     
238     /// LCOMMDirective - This is the name of a directive (if supported) that can
239     /// be used to efficiently declare a local (internal) block of zero
240     /// initialized data in the .bss/.data section.  The syntax expected is:
241     /// @verbatim <LCOMMDirective> SYMBOLNAME LENGTHINBYTES, ALIGNMENT
242     /// @endverbatim
243     const char *LCOMMDirective;           // Defaults to null.
244     
245     const char *COMMDirective;            // Defaults to "\t.comm\t".
246
247     /// COMMDirectiveTakesAlignment - True if COMMDirective take a third
248     /// argument that specifies the alignment of the declaration.
249     bool COMMDirectiveTakesAlignment;     // Defaults to true.
250     
251     /// HasDotTypeDotSizeDirective - True if the target has .type and .size
252     /// directives, this is true for most ELF targets.
253     bool HasDotTypeDotSizeDirective;      // Defaults to true.
254
255     /// HasSingleParameterDotFile - True if the target has a single parameter
256     /// .file directive, this is true for ELF targets.
257     bool HasSingleParameterDotFile;      // Defaults to true.
258
259     /// UsedDirective - This directive, if non-null, is used to declare a global
260     /// as being used somehow that the assembler can't see.  This prevents dead
261     /// code elimination on some targets.
262     const char *UsedDirective;            // Defaults to null.
263
264     /// WeakRefDirective - This directive, if non-null, is used to declare a
265     /// global as being a weak undefined symbol.
266     const char *WeakRefDirective;         // Defaults to null.
267     
268     /// WeakDefDirective - This directive, if non-null, is used to declare a
269     /// global as being a weak defined symbol.
270     const char *WeakDefDirective;         // Defaults to null.
271     
272     /// HiddenDirective - This directive, if non-null, is used to declare a
273     /// global or function as having hidden visibility.
274     const char *HiddenDirective;          // Defaults to "\t.hidden\t".
275
276     /// ProtectedDirective - This directive, if non-null, is used to declare a
277     /// global or function as having protected visibility.
278     const char *ProtectedDirective;       // Defaults to "\t.protected\t".
279
280     //===--- Dwarf Emission Directives -----------------------------------===//
281
282     /// AbsoluteDebugSectionOffsets - True if we should emit abolute section
283     /// offsets for debug information. Defaults to false.
284     bool AbsoluteDebugSectionOffsets;
285
286     /// AbsoluteEHSectionOffsets - True if we should emit abolute section
287     /// offsets for EH information. Defaults to false.
288     bool AbsoluteEHSectionOffsets;
289
290     /// HasLEB128 - True if target asm supports leb128 directives.
291     ///
292     bool HasLEB128; // Defaults to false.
293
294     /// hasDotLocAndDotFile - True if target asm supports .loc and .file
295     /// directives for emitting debugging information.
296     ///
297     bool HasDotLocAndDotFile; // Defaults to false.
298
299     /// SupportsDebugInformation - True if target supports emission of debugging
300     /// information.
301     bool SupportsDebugInformation;
302
303     /// SupportsExceptionHandling - True if target supports
304     /// exception handling.
305     ///
306     bool SupportsExceptionHandling; // Defaults to false.
307
308     /// RequiresFrameSection - true if the Dwarf2 output needs a frame section
309     ///
310     bool DwarfRequiresFrameSection; // Defaults to true.
311
312     /// DwarfUsesInlineInfoSection - True if DwarfDebugInlineSection is used to
313     /// encode inline subroutine information.
314     bool DwarfUsesInlineInfoSection; // Defaults to false.
315
316     /// Is_EHSymbolPrivate - If set, the "_foo.eh" is made private so that it
317     /// doesn't show up in the symbol table of the object file.
318     bool Is_EHSymbolPrivate;                // Defaults to true.
319
320     /// GlobalEHDirective - This is the directive used to make exception frame
321     /// tables globally visible.
322     ///
323     const char *GlobalEHDirective;          // Defaults to NULL.
324
325     /// SupportsWeakEmptyEHFrame - True if target assembler and linker will
326     /// handle a weak_definition of constant 0 for an omitted EH frame.
327     bool SupportsWeakOmittedEHFrame;  // Defaults to true.
328
329     /// DwarfSectionOffsetDirective - Special section offset directive.
330     const char* DwarfSectionOffsetDirective; // Defaults to NULL
331     
332     /// DwarfAbbrevSection - Section directive for Dwarf abbrev.
333     ///
334     const char *DwarfAbbrevSection; // Defaults to ".debug_abbrev".
335
336     /// DwarfInfoSection - Section directive for Dwarf info.
337     ///
338     const char *DwarfInfoSection; // Defaults to ".debug_info".
339
340     /// DwarfLineSection - Section directive for Dwarf info.
341     ///
342     const char *DwarfLineSection; // Defaults to ".debug_line".
343     
344     /// DwarfFrameSection - Section directive for Dwarf info.
345     ///
346     const char *DwarfFrameSection; // Defaults to ".debug_frame".
347     
348     /// DwarfPubNamesSection - Section directive for Dwarf info.
349     ///
350     const char *DwarfPubNamesSection; // Defaults to ".debug_pubnames".
351     
352     /// DwarfPubTypesSection - Section directive for Dwarf info.
353     ///
354     const char *DwarfPubTypesSection; // Defaults to ".debug_pubtypes".
355
356     /// DwarfDebugInlineSection - Section directive for inline info.
357     ///
358     const char *DwarfDebugInlineSection; // Defaults to ".debug_inlined"
359
360     /// DwarfStrSection - Section directive for Dwarf info.
361     ///
362     const char *DwarfStrSection; // Defaults to ".debug_str".
363
364     /// DwarfLocSection - Section directive for Dwarf info.
365     ///
366     const char *DwarfLocSection; // Defaults to ".debug_loc".
367
368     /// DwarfARangesSection - Section directive for Dwarf info.
369     ///
370     const char *DwarfARangesSection; // Defaults to ".debug_aranges".
371
372     /// DwarfRangesSection - Section directive for Dwarf info.
373     ///
374     const char *DwarfRangesSection; // Defaults to ".debug_ranges".
375
376     /// DwarfMacroInfoSection - Section directive for DWARF macro info.
377     ///
378     const char *DwarfMacroInfoSection; // Defaults to ".debug_macinfo".
379     
380     /// DwarfEHFrameSection - Section directive for Exception frames.
381     ///
382     const char *DwarfEHFrameSection; // Defaults to ".eh_frame".
383     
384     /// DwarfExceptionSection - Section directive for Exception table.
385     ///
386     const char *DwarfExceptionSection; // Defaults to ".gcc_except_table".
387
388     //===--- CBE Asm Translation Table -----------------------------------===//
389
390     const char *const *AsmTransCBE; // Defaults to empty
391
392   public:
393     explicit TargetAsmInfo(const TargetMachine &TM);
394     virtual ~TargetAsmInfo();
395
396     /// Measure the specified inline asm to determine an approximation of its
397     /// length.
398     virtual unsigned getInlineAsmLength(const char *Str) const;
399
400     /// PreferredEHDataFormat - This hook allows the target to select data
401     /// format used for encoding pointers in exception handling data.
402     virtual unsigned PreferredEHDataFormat() const;
403
404
405     /// getSLEB128Size - Compute the number of bytes required for a signed
406     /// leb128 value.
407     static unsigned getSLEB128Size(int Value);
408
409     /// getULEB128Size - Compute the number of bytes required for an unsigned
410     /// leb128 value.
411     static unsigned getULEB128Size(unsigned Value);
412
413     // Data directive accessors.
414     //
415     const char *getData8bitsDirective(unsigned AS = 0) const {
416       return AS == 0 ? Data8bitsDirective : getDataASDirective(8, AS);
417     }
418     const char *getData16bitsDirective(unsigned AS = 0) const {
419       return AS == 0 ? Data16bitsDirective : getDataASDirective(16, AS);
420     }
421     const char *getData32bitsDirective(unsigned AS = 0) const {
422       return AS == 0 ? Data32bitsDirective : getDataASDirective(32, AS);
423     }
424     const char *getData64bitsDirective(unsigned AS = 0) const {
425       return AS == 0 ? Data64bitsDirective : getDataASDirective(64, AS);
426     }
427
428
429     // Accessors.
430     //
431     const char *getZeroFillDirective() const {
432       return ZeroFillDirective;
433     }
434     const char *getNonexecutableStackDirective() const {
435       return NonexecutableStackDirective;
436     }
437     bool needsSet() const {
438       return NeedsSet;
439     }
440     const char *getPCSymbol() const {
441       return PCSymbol;
442     }
443     char getSeparatorChar() const {
444       return SeparatorChar;
445     }
446     unsigned getCommentColumn() const {
447       return CommentColumn;
448     }
449     const char *getCommentString() const {
450       return CommentString;
451     }
452     unsigned getOperandColumn(int operand) const {
453       return FirstOperandColumn + (MaxOperandLength+1)*(operand-1);
454     }
455     const char *getGlobalPrefix() const {
456       return GlobalPrefix;
457     }
458     const char *getPrivateGlobalPrefix() const {
459       return PrivateGlobalPrefix;
460     }
461     const char *getLinkerPrivateGlobalPrefix() const {
462       return LinkerPrivateGlobalPrefix;
463     }
464     const char *getJumpTableSpecialLabelPrefix() const {
465       return JumpTableSpecialLabelPrefix;
466     }
467     const char *getGlobalVarAddrPrefix() const {
468       return GlobalVarAddrPrefix;
469     }
470     const char *getGlobalVarAddrSuffix() const {
471       return GlobalVarAddrSuffix;
472     }
473     const char *getFunctionAddrPrefix() const {
474       return FunctionAddrPrefix;
475     }
476     const char *getFunctionAddrSuffix() const {
477       return FunctionAddrSuffix;
478     }
479     const char *getPersonalityPrefix() const {
480       return PersonalityPrefix;
481     }
482     const char *getPersonalitySuffix() const {
483       return PersonalitySuffix;
484     }
485     bool getNeedsIndirectEncoding() const {
486       return NeedsIndirectEncoding;
487     }
488     const char *getInlineAsmStart() const {
489       return InlineAsmStart;
490     }
491     const char *getInlineAsmEnd() const {
492       return InlineAsmEnd;
493     }
494     unsigned getAssemblerDialect() const {
495       return AssemblerDialect;
496     }
497     bool doesAllowQuotesInName() const {
498       return AllowQuotesInName;
499     }
500     const char *getZeroDirective() const {
501       return ZeroDirective;
502     }
503     const char *getZeroDirectiveSuffix() const {
504       return ZeroDirectiveSuffix;
505     }
506     const char *getAsciiDirective() const {
507       return AsciiDirective;
508     }
509     const char *getAscizDirective() const {
510       return AscizDirective;
511     }
512     const char *getJumpTableDirective() const {
513       return JumpTableDirective;
514     }
515     const char *getAlignDirective() const {
516       return AlignDirective;
517     }
518     bool getAlignmentIsInBytes() const {
519       return AlignmentIsInBytes;
520     }
521     unsigned getTextAlignFillValue() const {
522       return TextAlignFillValue;
523     }
524     const char *getSwitchToSectionDirective() const {
525       return SwitchToSectionDirective;
526     }
527     const char *getTextSectionStartSuffix() const {
528       return TextSectionStartSuffix;
529     }
530     const char *getDataSectionStartSuffix() const {
531       return DataSectionStartSuffix;
532     }
533     const char *getSectionEndDirectiveSuffix() const {
534       return SectionEndDirectiveSuffix;
535     }
536     const char *getStaticCtorsSection() const {
537       return StaticCtorsSection;
538     }
539     const char *getStaticDtorsSection() const {
540       return StaticDtorsSection;
541     }
542     const char *getGlobalDirective() const {
543       return GlobalDirective;
544     }
545     const char *getExternDirective() const {
546       return ExternDirective;
547     }
548     const char *getSetDirective() const {
549       return SetDirective;
550     }
551     const char *getLCOMMDirective() const {
552       return LCOMMDirective;
553     }
554     const char *getCOMMDirective() const {
555       return COMMDirective;
556     }
557     bool getCOMMDirectiveTakesAlignment() const {
558       return COMMDirectiveTakesAlignment;
559     }
560     bool hasDotTypeDotSizeDirective() const {
561       return HasDotTypeDotSizeDirective;
562     }
563     bool hasSingleParameterDotFile() const {
564       return HasSingleParameterDotFile;
565     }
566     const char *getUsedDirective() const {
567       return UsedDirective;
568     }
569     const char *getWeakRefDirective() const {
570       return WeakRefDirective;
571     }
572     const char *getWeakDefDirective() const {
573       return WeakDefDirective;
574     }
575     const char *getHiddenDirective() const {
576       return HiddenDirective;
577     }
578     const char *getProtectedDirective() const {
579       return ProtectedDirective;
580     }
581     bool isAbsoluteDebugSectionOffsets() const {
582       return AbsoluteDebugSectionOffsets;
583     }
584     bool isAbsoluteEHSectionOffsets() const {
585       return AbsoluteEHSectionOffsets;
586     }
587     bool hasLEB128() const {
588       return HasLEB128;
589     }
590     bool hasDotLocAndDotFile() const {
591       return HasDotLocAndDotFile;
592     }
593     bool doesSupportDebugInformation() const {
594       return SupportsDebugInformation;
595     }
596     bool doesSupportExceptionHandling() const {
597       return SupportsExceptionHandling;
598     }
599     bool doesDwarfRequireFrameSection() const {
600       return DwarfRequiresFrameSection;
601     }
602     bool doesDwarfUsesInlineInfoSection() const {
603       return DwarfUsesInlineInfoSection;
604     }
605     bool is_EHSymbolPrivate() const {
606       return Is_EHSymbolPrivate;
607     }
608     const char *getGlobalEHDirective() const {
609       return GlobalEHDirective;
610     }
611     bool getSupportsWeakOmittedEHFrame() const {
612       return SupportsWeakOmittedEHFrame;
613     }
614     const char *getDwarfSectionOffsetDirective() const {
615       return DwarfSectionOffsetDirective;
616     }
617     const char *getDwarfAbbrevSection() const {
618       return DwarfAbbrevSection;
619     }
620     const char *getDwarfInfoSection() const {
621       return DwarfInfoSection;
622     }
623     const char *getDwarfLineSection() const {
624       return DwarfLineSection;
625     }
626     const char *getDwarfFrameSection() const {
627       return DwarfFrameSection;
628     }
629     const char *getDwarfPubNamesSection() const {
630       return DwarfPubNamesSection;
631     }
632     const char *getDwarfPubTypesSection() const {
633       return DwarfPubTypesSection;
634     }
635     const char *getDwarfDebugInlineSection() const {
636       return DwarfDebugInlineSection;
637     }
638     const char *getDwarfStrSection() const {
639       return DwarfStrSection;
640     }
641     const char *getDwarfLocSection() const {
642       return DwarfLocSection;
643     }
644     const char *getDwarfARangesSection() const {
645       return DwarfARangesSection;
646     }
647     const char *getDwarfRangesSection() const {
648       return DwarfRangesSection;
649     }
650     const char *getDwarfMacroInfoSection() const {
651       return DwarfMacroInfoSection;
652     }
653     const char *getDwarfEHFrameSection() const {
654       return DwarfEHFrameSection;
655     }
656     const char *getDwarfExceptionSection() const {
657       return DwarfExceptionSection;
658     }
659     const char *const *getAsmCBE() const {
660       return AsmTransCBE;
661     }
662   };
663 }
664
665 #endif