Lines Matching defs:ByteAlignment
232 Align ByteAlignment) override;
238 /// @param ByteAlignment - The alignment of the common symbol in bytes.
240 Align ByteAlignment) override;
243 uint64_t Size = 0, Align ByteAlignment = Align(1),
247 Align ByteAlignment = Align(1)) override;
278 void emitAlignmentDirective(uint64_t ByteAlignment,
1090 Align ByteAlignment) {
1096 OS << ',' << ByteAlignment.value();
1098 OS << ',' << Log2(ByteAlignment);
1118 case LCOMM::ByteAlignment:
1130 uint64_t Size, Align ByteAlignment,
1149 OS << ',' << Log2(ByteAlignment);
1158 uint64_t Size, Align ByteAlignment) {
1173 if (ByteAlignment > 1)
1174 OS << ", " << Log2(ByteAlignment);
1528 void MCAsmStreamer::emitAlignmentDirective(uint64_t ByteAlignment,
1533 if (!isPowerOf2_64(ByteAlignment))
1537 OS << Log2_64(ByteAlignment);
1544 if (isPowerOf2_64(ByteAlignment)) {
1561 OS << Log2_64(ByteAlignment);
1588 OS << ' ' << ByteAlignment;