reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/MC/ELFObjectWriter.cpp
  644   align(SymtabSection->getAlignment());
  904                              ZlibStyle, Sec.getAlignment())) {
 1057                    sh_link, sh_info, Section.getAlignment(),
 1119     align(Section.getAlignment());
 1166     align(Group->getAlignment());
 1200       align(RelSection->getAlignment());
lib/MC/MCCodePadder.cpp
  218   uint64_t SectionAlignment = Fragment->getParent()->getAlignment();
lib/MC/MCELFStreamer.cpp
  141       Section->getAlignment() < Assembler.getBundleAlignSize())
  311     if (ByteAlignment > Section.getAlignment())
lib/MC/MCObjectStreamer.cpp
  541   if (ByteAlignment > CurSec->getAlignment())
lib/MC/MCWinCOFFStreamer.cpp
  194   if (SXData->getAlignment() < 4)
  211   if (Sec->getAlignment() < 4)
lib/MC/MachObjectWriter.cpp
  130   return offsetToAlignment(EndAddr, Align(NextSec.getAlignment()));
  245   assert(isPowerOf2_32(Section.getAlignment()) && "Invalid alignment!");
  246   W.write<uint32_t>(Log2_32(Section.getAlignment()));
  646     StartAddress = alignTo(StartAddress, Sec->getAlignment());
lib/MC/WasmObjectWriter.cpp
  590   DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlignment()));
 1232       DataSize = alignTo(DataSize, Section.getAlignment());
 1241       Segment.Alignment = Log2_32(Section.getAlignment());
lib/MC/WinCOFFObjectWriter.cpp
  259   switch (Sec.getAlignment()) {
lib/MC/XCOFFObjectWriter.cpp
  578         Csect.Address = alignTo(Address, MCSec->getAlignment());
  633   unsigned Align = Sec->getAlignment();
lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
  231   if (ReadOnlySection.getAlignment() < 64)
lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
  119     if (Align(ByteAlignment) > Section.getAlignment())
lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
  904   TextSection.setAlignment(Align(std::max(16u, TextSection.getAlignment())));
  905   DataSection.setAlignment(Align(std::max(16u, DataSection.getAlignment())));
  906   BSSSection.setAlignment(Align(std::max(16u, BSSSection.getAlignment())));
  917       unsigned Alignment = Section.getAlignment();
tools/dsymutil/MachOUtils.cpp
  296     unsigned Align = Sec->getAlignment();
  433       DwarfSegmentSize = alignTo(DwarfSegmentSize, Sec->getAlignment());
  556     OutFile.write_zeros(alignTo(Pos, Sec.getAlignment()) - Pos);