Lines Matching defs:ByteAlignment
227 Align ByteAlignment) override;
233 /// @param ByteAlignment - The alignment of the common symbol in bytes.
235 Align ByteAlignment) override;
238 uint64_t Size = 0, Align ByteAlignment = Align(1),
242 Align ByteAlignment = Align(1)) override;
273 void emitAlignmentDirective(uint64_t ByteAlignment,
1057 Align ByteAlignment) {
1063 OS << ',' << ByteAlignment.value();
1065 OS << ',' << Log2(ByteAlignment);
1085 case LCOMM::ByteAlignment:
1097 uint64_t Size, Align ByteAlignment,
1116 OS << ',' << Log2(ByteAlignment);
1125 uint64_t Size, Align ByteAlignment) {
1140 if (ByteAlignment > 1)
1141 OS << ", " << Log2(ByteAlignment);
1497 void MCAsmStreamer::emitAlignmentDirective(uint64_t ByteAlignment,
1502 if (!isPowerOf2_64(ByteAlignment))
1506 OS << Log2_64(ByteAlignment);
1513 if (isPowerOf2_64(ByteAlignment)) {
1530 OS << Log2_64(ByteAlignment);
1557 OS << ' ' << ByteAlignment;