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

References

lib/Object/MachOUniversal.cpp
  159     if (A.getAlign() > MaxSectionAlignment) {
  160       Err = malformedError("align (2^" + Twine(A.getAlign()) +
  167     if(A.getOffset() % (1ull << A.getAlign()) != 0){
  171         ") not aligned on it's alignment (2^" + Twine(A.getAlign()) + ")");
tools/llvm-lipo/llvm-lipo.cpp
  638         Slices.emplace_back(ExtractedObjects.back().get(), O.getAlign());
tools/llvm-objdump/MachODump.cpp
 2203     if (OFA.getOffset() % (1ull << OFA.getAlign()) != 0)
 2204       outs() << " (not aligned on it's alignment (2^" << OFA.getAlign() << ")";
 2211     outs() << "    align 2^" << OFA.getAlign() << " (" << (1 << OFA.getAlign())
 2211     outs() << "    align 2^" << OFA.getAlign() << " (" << (1 << OFA.getAlign())
tools/obj2yaml/macho2yaml.cpp
  526     arch.align = Slice.getAlign();