Lines Matching refs:Format
156 dwarf::FormParams Format, llvm::endianness Endianess)
157 : SectionDescriptorBase(SectionKind, Format, Endianess), OS(Contents),
237 if (getFormParams().Format != dwarf::DWARF64)
283 void setOutputFormat(dwarf::FormParams Format, llvm::endianness Endianess) {
284 this->Format = Format;
308 void setOutputFormat(dwarf::FormParams Format, llvm::endianness Endianness) {
309 this->Format = Format;
378 Format, Endianness);
428 uint16_t getVersion() const { return Format.Version; }
432 return Format.Version >= 5 ? 12 : 11;
437 assert(Format.Version >= 5);
438 return Format.Format == dwarf::DwarfFormat::DWARF32 ? 8 : 16;
443 assert(Format.Version >= 5);
444 return Format.Format == dwarf::DwarfFormat::DWARF32 ? 8 : 16;
448 const dwarf::FormParams &getFormParams() const { return Format; }
453 /// Format for sections.
454 dwarf::FormParams Format = {4, 4, dwarf::DWARF32};