Home | History | Annotate | Download | only in MC

Lines Matching refs:ByteAlignment

171                                 unsigned ByteAlignment);
177 /// @param ByteAlignment - The alignment of the common symbol in bytes.
179 unsigned ByteAlignment);
182 uint64_t Size = 0, unsigned ByteAlignment = 0);
185 uint64_t Size, unsigned ByteAlignment = 0);
206 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
210 virtual void EmitCodeAlignment(unsigned ByteAlignment,
540 unsigned ByteAlignment) {
542 if (ByteAlignment != 0) {
544 OS << ',' << ByteAlignment;
546 OS << ',' << Log2_32(ByteAlignment);
562 case LCOMM::ByteAlignment:
575 uint64_t Size, unsigned ByteAlignment) {
585 if (ByteAlignment != 0)
586 OS << ',' << Log2_32(ByteAlignment);
595 uint64_t Size, unsigned ByteAlignment) {
603 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
759 void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
764 if (isPowerOf2_32(ByteAlignment)) {
775 OS << ByteAlignment;
777 OS << Log2_32(ByteAlignment);
800 OS << ' ' << ByteAlignment;
807 void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
810 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),