Home | History | Annotate | Download | only in MC

Lines Matching refs:ByteAlignment

167                                 unsigned ByteAlignment);
173 /// @param ByteAlignment - The alignment of the common symbol in bytes.
175 unsigned ByteAlignment);
178 uint64_t Size = 0, unsigned ByteAlignment = 0);
181 uint64_t Size, unsigned ByteAlignment = 0);
199 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
203 virtual void EmitCodeAlignment(unsigned ByteAlignment,
532 unsigned ByteAlignment) {
534 if (ByteAlignment != 0) {
536 OS << ',' << ByteAlignment;
538 OS << ',' << Log2_32(ByteAlignment);
554 case LCOMM::ByteAlignment:
567 uint64_t Size, unsigned ByteAlignment) {
577 if (ByteAlignment != 0)
578 OS << ',' << Log2_32(ByteAlignment);
587 uint64_t Size, unsigned ByteAlignment) {
595 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
749 void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
754 if (isPowerOf2_32(ByteAlignment)) {
765 OS << ByteAlignment;
767 OS << Log2_32(ByteAlignment);
790 OS << ' ' << ByteAlignment;
797 void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
800 EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),